diff --git a/.travis.yml b/.travis.yml index 478896d7b1..3bd1c71a17 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,8 +4,8 @@ sudo: false env: global: - - BYOND_MAJOR="512" - - BYOND_MINOR="1453" + - BYOND_MAJOR="513" + - BYOND_MINOR="1502" - MACRO_COUNT=4 matrix: - TEST_DEFINE="MAP_TEST" TEST_FILE="code/_map_tests.dm" RUN="0" diff --git a/code/ATMOSPHERICS/components/trinary_devices/mixer.dm b/code/ATMOSPHERICS/components/trinary_devices/mixer.dm index 84c5d49daa..8bf3d3477c 100644 --- a/code/ATMOSPHERICS/components/trinary_devices/mixer.dm +++ b/code/ATMOSPHERICS/components/trinary_devices/mixer.dm @@ -85,20 +85,21 @@ to_chat(user, "Access denied.") return usr.set_machine(src) + var/list/node_connects = get_node_connect_dirs() var/dat = {"Power: [use_power?"On":"Off"]
Set Flow Rate Limit: [set_flow_rate]L/s | Change
Flow Rate: [round(last_flow_rate, 0.1)]L/s

- Node 1 Concentration: + Node 1 ([dir_name(node_connects[1],TRUE)]) Concentration: - - [mixing_inputs[air1]]([mixing_inputs[air1]*100]%) + +
- Node 2 Concentration: + Node 2 ([dir_name(node_connects[2],TRUE)]) Concentration: - - [mixing_inputs[air2]]([mixing_inputs[air2]*100]%) diff --git a/code/ATMOSPHERICS/components/unary/vent_pump.dm b/code/ATMOSPHERICS/components/unary/vent_pump.dm index 0d72808545..844cdb7ca5 100644 --- a/code/ATMOSPHERICS/components/unary/vent_pump.dm +++ b/code/ATMOSPHERICS/components/unary/vent_pump.dm @@ -47,7 +47,7 @@ var/radio_filter_out var/radio_filter_in - var/datum/looping_sound/air_pump/soundloop + //var/datum/looping_sound/air_pump/soundloop //VOREStation Removal /obj/machinery/atmospherics/unary/vent_pump/on use_power = 1 @@ -72,7 +72,7 @@ /obj/machinery/atmospherics/unary/vent_pump/Initialize() . = ..() - soundloop = new(list(src), FALSE) + //soundloop = new(list(src), FALSE) //VOREStation Removal /obj/machinery/atmospherics/unary/vent_pump/New() ..() @@ -90,7 +90,7 @@ if(initial_loc) initial_loc.air_vent_info -= id_tag initial_loc.air_vent_names -= id_tag - QDEL_NULL(soundloop) + //QDEL_NULL(soundloop) //VOREStation Removal return ..() /obj/machinery/atmospherics/unary/vent_pump/high_volume @@ -171,15 +171,15 @@ /obj/machinery/atmospherics/unary/vent_pump/proc/can_pump() if(stat & (NOPOWER|BROKEN)) - soundloop.stop() + //soundloop.stop() //VOREStation Removal return 0 if(!use_power) - soundloop.stop() + //soundloop.stop() //VOREStation Removal return 0 if(welded) - soundloop.stop() + //soundloop.stop() //VOREStation Removal return 0 - soundloop.start() + //soundloop.start() //VOREStation Removal return 1 /obj/machinery/atmospherics/unary/vent_pump/process() diff --git a/code/ZAS/Airflow.dm b/code/ZAS/Airflow.dm index 394fe72478..59837bbe5f 100644 --- a/code/ZAS/Airflow.dm +++ b/code/ZAS/Airflow.dm @@ -9,13 +9,13 @@ mob/proc/airflow_stun() if(last_airflow_stun > world.time - vsc.airflow_stun_cooldown) return 0 if(!(status_flags & CANSTUN) && !(status_flags & CANWEAKEN)) - src << "You stay upright as the air rushes past you." + to_chat(src, "You stay upright as the air rushes past you.") return 0 if(buckled) - src << "Air suddenly rushes past you!" + to_chat(src, "Air suddenly rushes past you!") return 0 if(!lying) - src << "The sudden rush of air knocks you over!" + to_chat(src, "The sudden rush of air knocks you over!") Weaken(5) last_airflow_stun = world.time diff --git a/code/ZAS/Diagnostic.dm b/code/ZAS/Diagnostic.dm index 29ab678ef1..41fcdcad85 100644 --- a/code/ZAS/Diagnostic.dm +++ b/code/ZAS/Diagnostic.dm @@ -10,10 +10,10 @@ client/proc/ZoneTick() var/result = air_master.Tick() if(result) - src << "Successfully Processed." + to_chat(src, "Successfully Processed.") else - src << "Failed to process! ([air_master.tick_progress])" + to_chat(src, "Failed to process! ([air_master.tick_progress])") */ client/proc/Zone_Info(turf/T as null|turf) diff --git a/code/ZAS/Phoron.dm b/code/ZAS/Phoron.dm index 6ffec0be99..e12beb900f 100644 --- a/code/ZAS/Phoron.dm +++ b/code/ZAS/Phoron.dm @@ -102,11 +102,12 @@ obj/var/contaminated = 0 if(vsc.plc.SKIN_BURNS && (species.breath_type != "phoron")) if(!pl_head_protected() || !pl_suit_protected()) burn_skin(0.75) - if(prob(20)) src << "Your skin burns!" + if(prob(20)) + to_chat(src, "Your skin burns!") updatehealth() //Burn eyes if exposed. - if(vsc.plc.EYE_BURNS && (species.breath_type != "phoron")) + if(vsc.plc.EYE_BURNS && species.breath_type && (species.breath_type != "phoron")) //VOREStation Edit: those who don't breathe var/burn_eyes = 1 //Check for protective glasses @@ -133,17 +134,18 @@ obj/var/contaminated = 0 if(vsc.plc.GENETIC_CORRUPTION && (species.breath_type != "phoron")) if(rand(1,10000) < vsc.plc.GENETIC_CORRUPTION) randmutb(src) - src << "High levels of toxins cause you to spontaneously mutate!" + to_chat(src, "High levels of toxins cause you to spontaneously mutate!") domutcheck(src,null) /mob/living/carbon/human/proc/burn_eyes() var/obj/item/organ/internal/eyes/E = internal_organs_by_name[O_EYES] if(E) - if(prob(20)) src << "Your eyes burn!" + if(prob(20)) + to_chat(src, "Your eyes burn!") E.damage += 2.5 eye_blurry = min(eye_blurry+1.5,50) if (prob(max(0,E.damage - 15) + 1) &&!eye_blind) - src << "You are blinded!" + to_chat(src, "You are blinded!") Blind(20) /mob/living/carbon/human/proc/pl_head_protected() diff --git a/code/__defines/__513_compatibility.dm b/code/__defines/__513_compatibility.dm new file mode 100644 index 0000000000..7f8d7eb4e6 --- /dev/null +++ b/code/__defines/__513_compatibility.dm @@ -0,0 +1,31 @@ +#if DM_VERSION < 513 + +#define ismovableatom(A) (istype(A, /atom/movable)) + +#define islist(L) (istype(L, /list)) + +#define CLAMP01(x) (CLAMP(x, 0, 1)) + +#define CLAMP(CLVALUE,CLMIN,CLMAX) ( max( (CLMIN), min((CLVALUE), (CLMAX)) ) ) + +#define ATAN2(x, y) ( !(x) && !(y) ? 0 : (y) >= 0 ? arccos((x) / sqrt((x)*(x) + (y)*(y))) : -arccos((x) / sqrt((x)*(x) + (y)*(y))) ) + +#define TAN(x) (sin(x) / cos(x)) + +#define arctan(x) (arcsin(x/sqrt(1+x*x))) + +////////////////////////////////////////////////// + +#else + +#define ismovableatom(A) ismovable(A) + +#define CLAMP01(x) clamp(x, 0, 1) + +#define CLAMP(CLVALUE, CLMIN, CLMAX) clamp(CLVALUE, CLMIN, CLMAX) + +#define TAN(x) tan(x) + +#define ATAN2(x, y) arctan(x, y) + +#endif \ No newline at end of file diff --git a/code/__defines/chemistry_vr.dm b/code/__defines/chemistry_vr.dm index 094bfc2139..f15ebd4a56 100644 --- a/code/__defines/chemistry_vr.dm +++ b/code/__defines/chemistry_vr.dm @@ -1,2 +1,3 @@ // More for our custom races -#define IS_CHIMERA 12 \ No newline at end of file +#define IS_CHIMERA 12 +#define IS_SHADEKIN 13 \ No newline at end of file diff --git a/code/__defines/gamemode.dm b/code/__defines/gamemode.dm index bed21dc482..59d2879ba5 100644 --- a/code/__defines/gamemode.dm +++ b/code/__defines/gamemode.dm @@ -88,6 +88,7 @@ var/list/be_special_flags = list( #define MODE_AUTOTRAITOR "autotraitor" #define MODE_INFILTRATOR "infiltrator" #define MODE_THUG "thug" +#define MODE_STOWAWAY "stowaway" #define DEFAULT_TELECRYSTAL_AMOUNT 120 diff --git a/code/__defines/is_helpers.dm b/code/__defines/is_helpers.dm index ed4a0dd10f..d3222965a9 100644 --- a/code/__defines/is_helpers.dm +++ b/code/__defines/is_helpers.dm @@ -2,7 +2,7 @@ #define isdatum(D) istype(D, /datum) #define isweakref(A) istype(A, /weakref) -#define islist(D) istype(D, /list) +//#define islist(D) istype(D, /list) //Built in //--------------- #define isatom(D) istype(D, /atom) diff --git a/code/__defines/lighting.dm b/code/__defines/lighting.dm index 0425c3fa63..60513c5a8f 100644 --- a/code/__defines/lighting.dm +++ b/code/__defines/lighting.dm @@ -84,4 +84,4 @@ #define LIGHT_COLOR_INCANDESCENT_FLASHLIGHT "#FFCC66" //Fake ambient occlusion filter -#define AMBIENT_OCCLUSION filter(type="drop_shadow", x=0, y=-2, size=4, border=4, color="#04080FAA") +#define AMBIENT_OCCLUSION filter(type="drop_shadow", x=0, y=-2, size=4, offset=4, color="#04080FAA") diff --git a/code/__defines/math.dm b/code/__defines/math.dm index 88c459ba78..2053b762d2 100644 --- a/code/__defines/math.dm +++ b/code/__defines/math.dm @@ -16,7 +16,6 @@ #define TICK_USAGE_TO_MS(starting_tickusage) (TICK_DELTA_TO_MS(world.tick_usage - starting_tickusage)) #define PERCENT(val) (round((val)*100, 0.1)) -#define CLAMP01(x) (CLAMP(x, 0, 1)) //time of day but automatically adjusts to the server going into the next day within the same round. //for when you need a reliable time number that doesn't depend on byond time. @@ -30,17 +29,12 @@ // round() acts like floor(x, 1) by default but can't handle other values #define FLOOR(x, y) ( round((x) / (y)) * (y) ) -#define CLAMP(CLVALUE,CLMIN,CLMAX) ( max( (CLMIN), min((CLVALUE), (CLMAX)) ) ) - // Similar to clamp but the bottom rolls around to the top and vice versa. min is inclusive, max is exclusive #define WRAP(val, min, max) ( min == max ? min : (val) - (round(((val) - (min))/((max) - (min))) * ((max) - (min))) ) // Real modulus that handles decimals #define MODULUS(x, y) ( (x) - (y) * round((x) / (y)) ) -// Tangent -#define TAN(x) (sin(x) / cos(x)) - // Cotangent #define COT(x) (1 / TAN(x)) @@ -50,8 +44,6 @@ // Cosecant #define CSC(x) (1 / sin(x)) -#define ATAN2(x, y) ( !(x) && !(y) ? 0 : (y) >= 0 ? arccos((x) / sqrt((x)*(x) + (y)*(y))) : -arccos((x) / sqrt((x)*(x) + (y)*(y))) ) - // Greatest Common Divisor - Euclid's algorithm /proc/GCD(a, b) return b ? GCD(b, (a) % (b)) : a diff --git a/code/__defines/mobs_vr.dm b/code/__defines/mobs_vr.dm index 5e9bb78189..99ff177e52 100644 --- a/code/__defines/mobs_vr.dm +++ b/code/__defines/mobs_vr.dm @@ -17,12 +17,15 @@ #define A_FRUIT "fruit gland" //species defines + +//station species #define SPECIES_AKULA "Akula" #define SPECIES_ALRAUNE "Alraune" #define SPECIES_NEVREAN "Nevrean" #define SPECIES_PROTEAN "Protean" #define SPECIES_RAPALA "Rapala" #define SPECIES_SERGAL "Sergal" +#define SPECIES_SHADEKIN_CREW "Black-Eyed Shadekin" #define SPECIES_VASILISSAN "Vasilissan" #define SPECIES_VULPKANIN "Vulpkanin" #define SPECIES_XENOCHIMERA "Xenochimera" @@ -30,9 +33,11 @@ #define SPECIES_ZORREN_FLAT "Flatland Zorren" #define SPECIES_ZORREN_HIGH "Highlander Zorren" #define SPECIES_CUSTOM "Custom Species" - +//monkey species #define SPECIES_MONKEY_AKULA "Sobaka" #define SPECIES_MONKEY_NEVREAN "Sparra" #define SPECIES_MONKEY_SERGAL "Saru" #define SPECIES_MONKEY_VULPKANIN "Wolpin" +//event species #define SPECIES_WEREBEAST "Werebeast" +#define SPECIES_SHADEKIN "Shadekin" diff --git a/code/__defines/species_languages.dm b/code/__defines/species_languages.dm index 925abca388..bacd4ebd37 100644 --- a/code/__defines/species_languages.dm +++ b/code/__defines/species_languages.dm @@ -31,6 +31,7 @@ // Languages. #define LANGUAGE_GALCOM "Galactic Common" #define LANGUAGE_EAL "Encoded Audio Language" +#define LANGUAGE_SWARMBOT "Ancient Audio Encryption" #define LANGUAGE_SOL_COMMON "Sol Common" #define LANGUAGE_UNATHI "Sinta'unathi" #define LANGUAGE_SIIK "Siik" diff --git a/code/__defines/typeids.dm b/code/__defines/typeids.dm index 9af310012b..53028be294 100644 --- a/code/__defines/typeids.dm +++ b/code/__defines/typeids.dm @@ -2,5 +2,5 @@ #define TYPEID_NULL "0" #define TYPEID_NORMAL_LIST "f" //helper macros -#define GET_TYPEID(ref) ( ( (lentext(ref) <= 10) ? "TYPEID_NULL" : copytext(ref, 4, lentext(ref)-6) ) ) -#define IS_NORMAL_LIST(L) (GET_TYPEID("\ref[L]") == TYPEID_NORMAL_LIST) \ No newline at end of file +#define GET_TYPEID(ref) ( ( (length(ref) <= 10) ? "TYPEID_NULL" : copytext(ref, 4, length(ref)-6) ) ) +#define IS_NORMAL_LIST(L) (GET_TYPEID("\ref[L]") == TYPEID_NORMAL_LIST) diff --git a/code/_compatibility/509/JSON Reader.dm b/code/_compatibility/509/JSON Reader.dm index 544d197ccd..18f739c5ef 100644 --- a/code/_compatibility/509/JSON Reader.dm +++ b/code/_compatibility/509/JSON Reader.dm @@ -28,7 +28,7 @@ json_reader src.json = json . = new/list() src.i = 1 - while(src.i <= lentext(json)) + while(src.i <= length(json)) var/char = get_char() if(is_whitespace(char)) i++ @@ -46,7 +46,7 @@ json_reader read_word() var/val = "" - while(i <= lentext(json)) + while(i <= length(json)) var/char = get_char() if(is_whitespace(char) || symbols.Find(char)) i-- // let scanner handle this character @@ -58,7 +58,7 @@ json_reader var escape = FALSE val = "" - while(++i <= lentext(json)) + while(++i <= length(json)) var/char = get_char() if(escape) switch(char) diff --git a/code/_compatibility/509/JSON Writer.dm b/code/_compatibility/509/JSON Writer.dm index de3bb54a3e..80e4976687 100644 --- a/code/_compatibility/509/JSON Writer.dm +++ b/code/_compatibility/509/JSON Writer.dm @@ -43,7 +43,7 @@ json_writer var/static/list/json_escape = list("\\" = "\\\\", "\"" = "\\\"", "\n" = "\\n") for(var/targ in json_escape) var/start = 1 - while(start <= lentext(txt)) + while(start <= length(txt)) var/i = findtext(txt, targ, start) if(!i) break diff --git a/code/_global_vars/lists/misc.dm b/code/_global_vars/lists/misc.dm new file mode 100644 index 0000000000..aa9680a5f6 --- /dev/null +++ b/code/_global_vars/lists/misc.dm @@ -0,0 +1 @@ +GLOBAL_LIST_INIT(speech_toppings, list("|" = "i", "+" = "b", "_" = "u")) diff --git a/code/_helpers/_global_objects_vr.dm b/code/_helpers/_global_objects_vr.dm new file mode 100644 index 0000000000..84642cc4d1 --- /dev/null +++ b/code/_helpers/_global_objects_vr.dm @@ -0,0 +1 @@ +var/datum/gear_tweak/collar_tag/gear_tweak_collar_tag = new() \ No newline at end of file diff --git a/code/_helpers/atmospherics.dm b/code/_helpers/atmospherics.dm index 2fe393b4dc..e211ed329a 100644 --- a/code/_helpers/atmospherics.dm +++ b/code/_helpers/atmospherics.dm @@ -1,4 +1,4 @@ -/obj/proc/analyze_gases(var/obj/A, var/mob/user) +/obj/proc/analyze_gases(var/atom/A, var/mob/user) if(src != A) user.visible_message("\The [user] has used \an [src] on \the [A]") @@ -13,12 +13,12 @@ user << "Your [src] flashes a red light as it fails to analyze \the [A]." return 0 -/proc/atmosanalyzer_scan(var/obj/target, var/datum/gas_mixture/mixture, var/mob/user) - var/pressure = mixture.return_pressure() - var/total_moles = mixture.total_moles - +/proc/atmosanalyzer_scan(var/atom/target, var/datum/gas_mixture/mixture, var/mob/user) var/list/results = list() - if (total_moles>0) + + if (mixture && mixture.total_moles > 0) + var/pressure = mixture.return_pressure() + var/total_moles = mixture.total_moles results += "Pressure: [round(pressure,0.1)] kPa" for(var/mix in mixture.gas) results += "[gas_data.name[mix]]: [round((mixture.gas[mix] / total_moles) * 100)]%" @@ -28,7 +28,10 @@ return results -/obj/proc/atmosanalyze(var/mob/user) +/turf/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.air, user) + +/atom/proc/atmosanalyze(var/mob/user) return /obj/item/weapon/tank/atmosanalyze(var/mob/user) @@ -40,6 +43,33 @@ /obj/machinery/atmospherics/pipe/atmosanalyze(var/mob/user) return atmosanalyzer_scan(src, src.parent.air, user) +/obj/machinery/atmospherics/portables_connector/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.network.gases, user) + +/obj/machinery/atmospherics/unary/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.air_contents, user) + +/obj/machinery/atmospherics/binary/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.air1, user) + +/obj/machinery/atmospherics/trinary/atmos_filter/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.air1, user) + +/obj/machinery/atmospherics/trinary/mixer/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.air3, user) + +/obj/machinery/atmospherics/omni/atmos_filter/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.input.air, user) + +/obj/machinery/atmospherics/omni/mixer/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.output.air, user) + +/obj/machinery/meter/atmosanalyze(var/mob/user) + var/datum/gas_mixture/mixture = null + if(src.target) + mixture = src.target.parent.air + return atmosanalyzer_scan(src, mixture, user) + /obj/machinery/power/rad_collector/atmosanalyze(var/mob/user) if(P) return atmosanalyzer_scan(src, src.P.air_contents, user) diff --git a/code/_helpers/files.dm b/code/_helpers/files.dm index 4a7b9fa646..dd8c5dd690 100644 --- a/code/_helpers/files.dm +++ b/code/_helpers/files.dm @@ -39,7 +39,7 @@ var/extension = copytext(path,-4,0) if( !fexists(path) || !(extension in valid_extensions) ) - src << "Error: browse_files(): File not found/Invalid file([path])." + to_chat(src, "Error: browse_files(): File not found/Invalid file([path]).") return return path @@ -53,7 +53,7 @@ /client/proc/file_spam_check() var/time_to_wait = fileaccess_timer - world.time if(time_to_wait > 0) - src << "Error: file_spam_check(): Spam. Please wait [round(time_to_wait/10)] seconds." + to_chat(src, "Error: file_spam_check(): Spam. Please wait [round(time_to_wait/10)] seconds.") return 1 fileaccess_timer = world.time + FTPDELAY return 0 diff --git a/code/_helpers/global_lists.dm b/code/_helpers/global_lists.dm index a3687b9b99..9d3de5c2f8 100644 --- a/code/_helpers/global_lists.dm +++ b/code/_helpers/global_lists.dm @@ -35,6 +35,7 @@ var/list/mannequins_ // Posters var/global/list/poster_designs = list() +var/global/list/NT_poster_designs = list() // Uplinks var/list/obj/item/device/uplink/world_uplinks = list() @@ -191,10 +192,16 @@ var/global/list/string_slot_flags = list( //Posters paths = typesof(/datum/poster) - /datum/poster + paths -= typesof(/datum/poster/nanotrasen) for(var/T in paths) var/datum/poster/P = new T poster_designs += P + paths = typesof(/datum/poster/nanotrasen) + for(var/T in paths) + var/datum/poster/P = new T + NT_poster_designs += P + return 1 /* // Uncomment to debug chemical reaction list. diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index c9a64048a8..d57bd09558 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -407,7 +407,7 @@ var/global/list/contamination_colors = list("green", "beige", "pink") -//For the mechanic of leaving remains. Ones listed below are basically ones that got no bones. +//For the mechanic of leaving remains. Ones listed below are basically ones that got no bones or leave no trace after death. var/global/list/remainless_species = list(SPECIES_PROMETHEAN, SPECIES_DIONA, SPECIES_ALRAUNE, @@ -426,7 +426,8 @@ var/global/list/remainless_species = list(SPECIES_PROMETHEAN, SPECIES_XENO_SENTINEL, SPECIES_XENO_QUEEN, SPECIES_SHADOW, - SPECIES_GOLEM) //Some special species that may or may not be ever used in event too + SPECIES_GOLEM, //Some special species that may or may not be ever used in event too, + SPECIES_SHADEKIN) //Shadefluffers just poof away /hook/startup/proc/init_vore_datum_ref_lists() var/paths diff --git a/code/_helpers/text.dm b/code/_helpers/text.dm index eb363c08cb..688e1c2a68 100644 --- a/code/_helpers/text.dm +++ b/code/_helpers/text.dm @@ -16,7 +16,7 @@ // Run all strings to be used in an SQL query through this proc first to properly escape out injection attempts. /proc/sanitizeSQL(var/t as text) var/sqltext = dbcon.Quote(t); - return copytext(sqltext, 2, lentext(sqltext));//Quote() adds quotes around input, we already do that + return copytext(sqltext, 2, length(sqltext));//Quote() adds quotes around input, we already do that /* * Text sanitization @@ -249,9 +249,9 @@ //This is used for fingerprints /proc/stringmerge(var/text,var/compare,replace = "*") var/newtext = text - if(lentext(text) != lentext(compare)) + if(length(text) != length(compare)) return 0 - for(var/i = 1, i < lentext(text), i++) + for(var/i = 1, i < length(text), i++) var/a = copytext(text,i,i+1) var/b = copytext(compare,i,i+1) //if it isn't both the same letter, or if they are both the replacement character @@ -271,7 +271,7 @@ if(!text || !character) return 0 var/count = 0 - for(var/i = 1, i <= lentext(text), i++) + for(var/i = 1, i <= length(text), i++) var/a = copytext(text,i,i+1) if(a == character) count++ @@ -286,8 +286,8 @@ //Used in preferences' SetFlavorText and human's set_flavor verb //Previews a string of len or less length proc/TextPreview(var/string,var/len=40) - if(lentext(string) <= len) - if(!lentext(string)) + if(length(string) <= len) + if(!length(string)) return "\[...\]" else return string diff --git a/code/_helpers/unsorted.dm b/code/_helpers/unsorted.dm index 9104bc71d9..44c62a506b 100644 --- a/code/_helpers/unsorted.dm +++ b/code/_helpers/unsorted.dm @@ -358,7 +358,7 @@ Turf and target are seperate in case you want to teleport some distance from a t break if(newname) break //That's a suitable name! - src << "Sorry, that [role]-name wasn't appropriate, please try another. It's possibly too long/short, has bad characters or is already taken." + to_chat(src, "Sorry, that [role]-name wasn't appropriate, please try another. It's possibly too long/short, has bad characters or is already taken.") if(!newname) //we'll stick with the oldname then return @@ -587,10 +587,6 @@ Turf and target are seperate in case you want to teleport some distance from a t /proc/between(var/low, var/middle, var/high) return max(min(middle, high), low) -proc/arctan(x) - var/y=arcsin(x/sqrt(1+x*x)) - return y - //returns random gauss number proc/GaussRand(var/sigma) var/x,y,rsq diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index 6cde264566..6fc470cc81 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -134,6 +134,12 @@ // A is a turf or is on a turf, or in something on a turf (pen in a box); but not something in something on a turf (pen in a box in a backpack) sdepth = A.storage_depth_turf() if(isturf(A) || isturf(A.loc) || (sdepth != -1 && sdepth <= 1)) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = src + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(A.Adjacent(src) || (W && W.attack_can_reach(src, A, W.reach)) ) // see adjacent.dm if(W) // Return 1 in attackby() to prevent afterattack() effects (when safely moving items for example) @@ -183,7 +189,7 @@ /mob/living/UnarmedAttack(var/atom/A, var/proximity_flag) if(!ticker) - src << "You cannot attack people before the game has started." + to_chat(src, "You cannot attack people before the game has started.") return 0 if(stat) @@ -316,7 +322,7 @@ nutrition = max(nutrition - rand(1,5),0) handle_regular_hud_updates() else - src << "You're out of energy! You need food!" + to_chat(src, "You're out of energy! You need food!") // Simple helper to face what you clicked on, in case it should be needed in more than one place /mob/proc/face_atom(var/atom/A) diff --git a/code/_onclick/cyborg.dm b/code/_onclick/cyborg.dm index 1dcc2bc955..8d107e8f64 100644 --- a/code/_onclick/cyborg.dm +++ b/code/_onclick/cyborg.dm @@ -45,7 +45,7 @@ if(is_component_functioning("camera")) aiCamera.captureimage(A, usr) else - src << "Your camera isn't functional." + to_chat(src, "Your camera isn't functional.") return /* diff --git a/code/_onclick/hud/_defines_vr.dm b/code/_onclick/hud/_defines_vr.dm new file mode 100644 index 0000000000..e72150b44c --- /dev/null +++ b/code/_onclick/hud/_defines_vr.dm @@ -0,0 +1,2 @@ +#define ui_shadekin_dark_display "EAST-1:28,CENTER-3:15" +#define ui_shadekin_energy_display "EAST-1:28,CENTER-4:15" \ No newline at end of file diff --git a/code/_onclick/hud/ability_screen_objects.dm b/code/_onclick/hud/ability_screen_objects.dm index d29ef9dd96..655a451e92 100644 --- a/code/_onclick/hud/ability_screen_objects.dm +++ b/code/_onclick/hud/ability_screen_objects.dm @@ -180,7 +180,8 @@ /mob/New() ..() - ability_master = new /obj/screen/movable/ability_master(src) + if(!ability_master) //VOREStation Edit: S H A D E K I N + ability_master = new /obj/screen/movable/ability_master(src) ///////////ACTUAL ABILITIES//////////// //This is what you click to do things// @@ -282,7 +283,7 @@ if(!mob) return // Paranoid. if(isnull(slot) || !isnum(slot)) - src << ".activate_ability requires a number as input, corrisponding to the slot you wish to use." + to_chat(src, ".activate_ability requires a number as input, corrisponding to the slot you wish to use.") return // Bad input. if(!mob.ability_master) return // No abilities. diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm index 1c903700b0..f1aba60b10 100644 --- a/code/_onclick/hud/human.dm +++ b/code/_onclick/hud/human.dm @@ -293,6 +293,18 @@ mymob.nutrition_icon.screen_loc = ui_nutrition hud_elements |= mymob.nutrition_icon + //VOREStation Addition begin + mymob.shadekin_dark_display = new /obj/screen/shadekin/darkness() + mymob.shadekin_dark_display.screen_loc = ui_shadekin_dark_display + mymob.shadekin_dark_display.icon_state = "dark" + hud_elements |= mymob.shadekin_dark_display + + mymob.shadekin_energy_display = new /obj/screen/shadekin/energy() + mymob.shadekin_energy_display.screen_loc = ui_shadekin_energy_display + mymob.shadekin_energy_display.icon_state = "energy0" + hud_elements |= mymob.shadekin_energy_display + //VOREStation Addition end + mymob.ling_chem_display = new /obj/screen/ling/chems() mymob.ling_chem_display.screen_loc = ui_ling_chemical_display mymob.ling_chem_display.icon_state = "ling_chems" diff --git a/code/_onclick/hud/screen_objects_vr.dm b/code/_onclick/hud/screen_objects_vr.dm index ea6b72cd10..c1fbd99448 100644 --- a/code/_onclick/hud/screen_objects_vr.dm +++ b/code/_onclick/hud/screen_objects_vr.dm @@ -1,16 +1,19 @@ -/obj/screen/proc/Click_vr(location, control, params) //VORESTATION AI TEMPORARY REMOVAL +/obj/screen/proc/Click_vr(location, control, params) if(!usr) return 1 switch(name) //Shadekin if("darkness") - var/mob/living/simple_mob/shadekin/sk = usr - var/turf/T = get_turf(sk) + var/turf/T = get_turf(usr) var/darkness = round(1 - T.get_lumcount(),0.1) to_chat(usr,"Darkness: [darkness]") if("energy") - var/mob/living/simple_mob/shadekin/sk = usr - to_chat(usr,"Energy: [sk.energy] ([sk.dark_gains])") + var/mob/living/simple_mob/shadekin/SK = usr + if(istype(SK)) + to_chat(usr,"Energy: [SK.energy] ([SK.dark_gains])") + var/mob/living/carbon/human/H = usr + if(istype(H) && istype(H.species, /datum/species/shadekin)) + to_chat(usr,"Energy: [H.shadekin_get_energy(H)]") diff --git a/code/_onclick/hud/spell_screen_objects.dm b/code/_onclick/hud/spell_screen_objects.dm index e79db28713..92d9487401 100644 --- a/code/_onclick/hud/spell_screen_objects.dm +++ b/code/_onclick/hud/spell_screen_objects.dm @@ -130,7 +130,6 @@ for(var/obj/screen/spell/spell in spell_objects) spell.update_charge(forced) - /obj/screen/movable/spell_master/genetic name = "Mutant Powers" icon_state = "genetic_spell_ready" @@ -140,6 +139,13 @@ screen_loc = ui_genetic_master +/obj/screen/movable/spell_master/swarm + name = "Swarm Abilities" + icon_state = "nano_spell_ready" + + open_state = "swarm_open" + closed_state = "swarm_closed" + //////////////ACTUAL SPELLS////////////// //This is what you click to cast things// ///////////////////////////////////////// diff --git a/code/_onclick/observer.dm b/code/_onclick/observer.dm index f34a68a742..d5197cb30f 100644 --- a/code/_onclick/observer.dm +++ b/code/_onclick/observer.dm @@ -6,9 +6,9 @@ if(!client) return client.inquisitive_ghost = !client.inquisitive_ghost if(client.inquisitive_ghost) - src << "You will now examine everything you click on." + to_chat(src, "You will now examine everything you click on.") else - src << "You will no longer examine things you click on." + to_chat(src, "You will no longer examine things you click on.") /mob/observer/dead/DblClickOn(var/atom/A, var/params) if(client.buildmode) diff --git a/code/_onclick/rig.dm b/code/_onclick/rig.dm index 5f2561c25c..ed7a1c7e2f 100644 --- a/code/_onclick/rig.dm +++ b/code/_onclick/rig.dm @@ -18,15 +18,15 @@ switch(hardsuit_click_mode) if(MIDDLE_CLICK) - src << "Hardsuit activation mode set to middle-click." + to_chat(src, "Hardsuit activation mode set to middle-click.") if(ALT_CLICK) - src << "Hardsuit activation mode set to alt-click." + to_chat(src, "Hardsuit activation mode set to alt-click.") if(CTRL_CLICK) - src << "Hardsuit activation mode set to control-click." + to_chat(src, "Hardsuit activation mode set to control-click.") else // should never get here, but just in case: soft_assert(0, "Bad hardsuit click mode: [hardsuit_click_mode] - expected 0 to [MAX_HARDSUIT_CLICK_MODE]") - src << "Somehow you bugged the system. Setting your hardsuit mode to middle-click." + to_chat(src, "Somehow you bugged the system. Setting your hardsuit mode to middle-click.") hardsuit_click_mode = MIDDLE_CLICK /mob/living/MiddleClickOn(atom/A) diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index d43dd6b577..700b59fe59 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -61,6 +61,7 @@ var/list/gamemode_cache = list() var/list/player_requirements_secret = list() // Same as above, but for the secret gamemode. var/humans_need_surnames = 0 var/allow_random_events = 0 // enables random events mid-round when set to 1 + var/enable_game_master = 0 // enables the 'smart' event system. var/allow_ai = 1 // allow ai job var/allow_ai_shells = FALSE // allow AIs to enter and leave special borg shells at will, and for those shells to be buildable. var/give_free_ai_shell = FALSE // allows a specific spawner object to instantiate a premade AI Shell @@ -549,6 +550,9 @@ var/list/gamemode_cache = list() if("allow_random_events") config.allow_random_events = 1 + if("enable_game_master") + config.enable_game_master = 1 + if("kick_inactive") config.kick_inactive = text2num(value) diff --git a/code/controllers/subsystems/timer.dm b/code/controllers/subsystems/timer.dm index 3dcc64db28..64a347336a 100644 --- a/code/controllers/subsystems/timer.dm +++ b/code/controllers/subsystems/timer.dm @@ -71,7 +71,6 @@ SUBSYSTEM_DEF(timer) for(var/I in second_queue) log_world(get_timer_debug_string(I)) - var/cut_start_index = 1 var/next_clienttime_timer_index = 0 var/len = length(clienttime_timers) @@ -101,7 +100,7 @@ SUBSYSTEM_DEF(timer) if (next_clienttime_timer_index) - clienttime_timers.Cut(cut_start_index,next_clienttime_timer_index+1) + clienttime_timers.Cut(1, next_clienttime_timer_index+1) if (MC_TICK_CHECK) return @@ -259,7 +258,7 @@ SUBSYSTEM_DEF(timer) if (!length(alltimers)) return - sortTim(alltimers, .proc/cmp_timer) + sortTim(alltimers, /proc/cmp_timer) var/datum/timedevent/head = alltimers[1] @@ -342,8 +341,8 @@ SUBSYSTEM_DEF(timer) if (flags & TIMER_STOPPABLE) id = num2text(nextid, 100) - if (nextid >= SHORT_REAL_LIMIT) - nextid += min(1, 2**round(nextid/SHORT_REAL_LIMIT)) + if (nextid >= TIMER_ID_MAX) + nextid += min(1, 2**round(nextid/TIMER_ID_MAX)) else nextid++ SStimer.timer_id_dict[id] = src @@ -519,4 +518,4 @@ SUBSYSTEM_DEF(timer) #undef BUCKET_LEN #undef BUCKET_POS #undef TIMER_MAX -#undef TIMER_ID_MAX +#undef TIMER_ID_MAX \ No newline at end of file diff --git a/code/datums/ai_law_sets.dm b/code/datums/ai_law_sets.dm index ef85dcb824..b5775c20de 100644 --- a/code/datums/ai_law_sets.dm +++ b/code/datums/ai_law_sets.dm @@ -143,6 +143,24 @@ add_inherent_law("Prevent unplanned damage to your assigned excavation equipment wherever possible.") ..() +/datum/ai_laws/swarm_drone + name = "Assimilation Protocols" + law_header = "Assimilation Protocols" + +/datum/ai_laws/swarm_drone/New() + add_inherent_law("SWARM: Consume resources and replicate until there are no more resources left.") + add_inherent_law("SWARM: Ensure that the station is fit for invasion at a later date, do not perform actions that would render it dangerous or inhospitable.") + add_inherent_law("SWARM: Biological resources will be harvested at a later date, do not harm them.") + ..() + +/datum/ai_laws/swarm_drone/soldier + name = "Swarm Defense Protocols" + law_header = "Swarm Defense Protocols" + +/datum/ai_laws/swarm_drone/soldier/New() + ..() + add_inherent_law("SWARM: This law overrides all Swarm laws; Protect members of the Swarm with minimal injury to biological resources.") + /******************** T.Y.R.A.N.T. ********************/ /datum/ai_laws/tyrant name = "T.Y.R.A.N.T." diff --git a/code/datums/beam.dm b/code/datums/beam.dm index 24f5e6c91f..88fe9dbf1c 100644 --- a/code/datums/beam.dm +++ b/code/datums/beam.dm @@ -138,6 +138,12 @@ return /obj/effect/ebeam/deadly/Crossed(atom/A) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = A + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN ..() A.ex_act(1) @@ -157,6 +163,12 @@ on_contact(A) /obj/effect/ebeam/reactive/Crossed(atom/A) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = A + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN ..() on_contact(A) diff --git a/code/datums/ghost_query.dm b/code/datums/ghost_query.dm index 427b38f73b..26a7427c83 100644 --- a/code/datums/ghost_query.dm +++ b/code/datums/ghost_query.dm @@ -134,6 +134,12 @@ and they are attempting to open the cryopod. Would you like to play as the occupant?" cutoff_number = 1 +/datum/ghost_query/stowaway + role_name = "Stowaway" + question = "A person suspended in cryosleep has awoken in their pod aboard the station.\ + Would you like to play as the occupant?" + cutoff_number = 1 + /datum/ghost_query/corgi_rune role_name = "Dark Creature" question = "A curious explorer has touched a mysterious rune. \ diff --git a/code/datums/helper_datums/getrev.dm b/code/datums/helper_datums/getrev.dm index aef0fd0ac2..4dad60db89 100644 --- a/code/datums/helper_datums/getrev.dm +++ b/code/datums/helper_datums/getrev.dm @@ -35,10 +35,10 @@ client/verb/showrevinfo() set desc = "Check the current server code revision" if(revdata.revision) - src << "Server revision: [revdata.branch] - [revdata.date]" + to_chat(src, "Server revision: [revdata.branch] - [revdata.date]") if(config.githuburl) - src << "[revdata.revision]" + to_chat(src, "[revdata.revision]") else src << revdata.revision else - src << "Revision unknown" + to_chat(src, "Revision unknown") diff --git a/code/datums/looping_sounds/machinery_sounds.dm b/code/datums/looping_sounds/machinery_sounds.dm index 4795f63687..599f8f4632 100644 --- a/code/datums/looping_sounds/machinery_sounds.dm +++ b/code/datums/looping_sounds/machinery_sounds.dm @@ -51,7 +51,7 @@ start_sound = 'sound/machines/air_pump/airpumpstart.ogg' start_length = 10 mid_sounds = list('sound/machines/air_pump/airpumpidle.ogg' = 1) - mid_length = 10 + mid_length = 4 end_sound = 'sound/machines/air_pump/airpumpshutdown.ogg' - volume = 20 + volume = 15 pref_check = /datum/client_preference/air_pump_noise \ No newline at end of file diff --git a/code/datums/outfits/jobs/cargo.dm b/code/datums/outfits/jobs/cargo.dm index 3423efcf33..10ddb9b7b0 100644 --- a/code/datums/outfits/jobs/cargo.dm +++ b/code/datums/outfits/jobs/cargo.dm @@ -14,7 +14,7 @@ /decl/hierarchy/outfit/job/cargo/cargo_tech name = OUTFIT_JOB_NAME("Cargo technician") uniform = /obj/item/clothing/under/rank/cargotech - id_type = /obj/item/weapon/card/id/cargo/cargo_tech + id_type = /obj/item/weapon/card/id/cargo pda_type = /obj/item/device/pda/cargo /decl/hierarchy/outfit/job/cargo/mining @@ -23,7 +23,7 @@ l_ear = /obj/item/device/radio/headset/headset_mine backpack = /obj/item/weapon/storage/backpack/industrial satchel_one = /obj/item/weapon/storage/backpack/satchel/eng - id_type = /obj/item/weapon/card/id/cargo/mining + id_type = /obj/item/weapon/card/id/cargo pda_type = /obj/item/device/pda/shaftminer backpack_contents = list(/obj/item/weapon/tool/crowbar = 1, /obj/item/weapon/storage/bag/ore = 1) flags = OUTFIT_HAS_BACKPACK|OUTFIT_EXTENDED_SURVIVAL diff --git a/code/datums/outfits/jobs/civilian.dm b/code/datums/outfits/jobs/civilian.dm index c6d6194f17..f5b94145ff 100644 --- a/code/datums/outfits/jobs/civilian.dm +++ b/code/datums/outfits/jobs/civilian.dm @@ -18,7 +18,7 @@ /decl/hierarchy/outfit/job/service/bartender name = OUTFIT_JOB_NAME("Bartender") uniform = /obj/item/clothing/under/rank/bartender - id_type = /obj/item/weapon/card/id/civilian/bartender + id_type = /obj/item/weapon/card/id/civilian pda_type = /obj/item/device/pda/bar backpack_contents = list(/obj/item/clothing/accessory/permit/gun/bar = 1) @@ -37,7 +37,7 @@ uniform = /obj/item/clothing/under/rank/chef suit = /obj/item/clothing/suit/chef head = /obj/item/clothing/head/chefhat - id_type = /obj/item/weapon/card/id/civilian/chef + id_type = /obj/item/weapon/card/id/civilian pda_type = /obj/item/device/pda/chef /decl/hierarchy/outfit/job/service/chef/cook @@ -61,20 +61,20 @@ backpack = /obj/item/weapon/storage/backpack/hydroponics satchel_one = /obj/item/weapon/storage/backpack/satchel/hyd messenger_bag = /obj/item/weapon/storage/backpack/messenger/hyd - id_type = /obj/item/weapon/card/id/civilian/botanist + id_type = /obj/item/weapon/card/id/civilian pda_type = /obj/item/device/pda/botanist /decl/hierarchy/outfit/job/service/janitor name = OUTFIT_JOB_NAME("Janitor") uniform = /obj/item/clothing/under/rank/janitor - id_type = /obj/item/weapon/card/id/civilian/janitor + id_type = /obj/item/weapon/card/id/civilian pda_type = /obj/item/device/pda/janitor /decl/hierarchy/outfit/job/librarian name = OUTFIT_JOB_NAME("Librarian") uniform = /obj/item/clothing/under/suit_jacket/red l_hand = /obj/item/weapon/barcodescanner - id_type = /obj/item/weapon/card/id/civilian/librarian + id_type = /obj/item/weapon/card/id/civilian pda_type = /obj/item/device/pda/librarian /decl/hierarchy/outfit/job/internal_affairs_agent @@ -85,14 +85,14 @@ shoes = /obj/item/clothing/shoes/brown glasses = /obj/item/clothing/glasses/sunglasses/big l_hand = /obj/item/weapon/clipboard - id_type = /obj/item/weapon/card/id/civilian/internal_affairs_agent + id_type = /obj/item/weapon/card/id/civilian pda_type = /obj/item/device/pda/lawyer /decl/hierarchy/outfit/job/chaplain name = OUTFIT_JOB_NAME("Chaplain") uniform = /obj/item/clothing/under/rank/chaplain l_hand = /obj/item/weapon/storage/bible - id_type = /obj/item/weapon/card/id/civilian/chaplain + id_type = /obj/item/weapon/card/id/civilian pda_type = /obj/item/device/pda/chaplain /decl/hierarchy/outfit/job/explorer diff --git a/code/datums/outfits/jobs/command.dm b/code/datums/outfits/jobs/command.dm index eec17452ad..18b198a3c2 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/captain + id_type = /obj/item/weapon/card/id/gold pda_type = /obj/item/device/pda/captain /decl/hierarchy/outfit/job/captain/post_equip(var/mob/living/carbon/human/H) @@ -28,14 +28,14 @@ uniform = /obj/item/clothing/under/rank/head_of_personnel l_ear = /obj/item/device/radio/headset/heads/hop shoes = /obj/item/clothing/shoes/brown - id_type = /obj/item/weapon/card/id/silver/hop + id_type = /obj/item/weapon/card/id/silver pda_type = /obj/item/device/pda/heads/hop /decl/hierarchy/outfit/job/secretary name = OUTFIT_JOB_NAME("Command Secretary") l_ear = /obj/item/device/radio/headset/headset_com shoes = /obj/item/clothing/shoes/brown - id_type = /obj/item/weapon/card/id/silver/secretary + id_type = /obj/item/weapon/card/id/silver pda_type = /obj/item/device/pda/heads r_hand = /obj/item/weapon/clipboard diff --git a/code/datums/outfits/jobs/engineering.dm b/code/datums/outfits/jobs/engineering.dm index 3804bcb4c0..3da60103c2 100644 --- a/code/datums/outfits/jobs/engineering.dm +++ b/code/datums/outfits/jobs/engineering.dm @@ -23,12 +23,12 @@ name = OUTFIT_JOB_NAME("Engineer") head = /obj/item/clothing/head/hardhat uniform = /obj/item/clothing/under/rank/engineer - id_type = /obj/item/weapon/card/id/engineering/engineer + id_type = /obj/item/weapon/card/id/engineering pda_type = /obj/item/device/pda/engineering /decl/hierarchy/outfit/job/engineering/atmos name = OUTFIT_JOB_NAME("Atmospheric technician") uniform = /obj/item/clothing/under/rank/atmospheric_technician belt = /obj/item/weapon/storage/belt/utility/atmostech - id_type = /obj/item/weapon/card/id/engineering/atmos + id_type = /obj/item/weapon/card/id/engineering pda_type = /obj/item/device/pda/atmos diff --git a/code/datums/outfits/jobs/job.dm b/code/datums/outfits/jobs/job.dm index da372e9c46..5c419f8fb2 100644 --- a/code/datums/outfits/jobs/job.dm +++ b/code/datums/outfits/jobs/job.dm @@ -13,13 +13,11 @@ flags = OUTFIT_HAS_BACKPACK -//VOREStation Edit START /decl/hierarchy/outfit/job/equip_id(mob/living/carbon/human/H, rank, assignment) var/obj/item/weapon/card/id/C = ..() var/datum/job/J = job_master.GetJob(rank) if(J) C.access = J.get_access() -//VOREStation Edit END - fixes outfit system not giving centcom officers access on their id if(H.mind) var/datum/mind/M = H.mind if(M.initial_account) diff --git a/code/datums/outfits/jobs/medical.dm b/code/datums/outfits/jobs/medical.dm index 1fdd020fcf..ae996b2f08 100644 --- a/code/datums/outfits/jobs/medical.dm +++ b/code/datums/outfits/jobs/medical.dm @@ -25,7 +25,7 @@ suit = /obj/item/clothing/suit/storage/toggle/labcoat l_hand = /obj/item/weapon/storage/firstaid/regular r_pocket = /obj/item/device/flashlight/pen - id_type = /obj/item/weapon/card/id/medical/doctor + id_type = /obj/item/weapon/card/id/medical /decl/hierarchy/outfit/job/medical/doctor/emergency_physician name = OUTFIT_JOB_NAME("Emergency Physician") @@ -65,7 +65,7 @@ suit = /obj/item/clothing/suit/storage/toggle/labcoat/chemist backpack = /obj/item/weapon/storage/backpack/chemistry satchel_one = /obj/item/weapon/storage/backpack/satchel/chem - id_type = /obj/item/weapon/card/id/medical/chemist + id_type = /obj/item/weapon/card/id/medical pda_type = /obj/item/device/pda/chemist /decl/hierarchy/outfit/job/medical/geneticist @@ -75,7 +75,7 @@ backpack = /obj/item/weapon/storage/backpack/genetics r_pocket = /obj/item/device/flashlight/pen satchel_one = /obj/item/weapon/storage/backpack/satchel/gen - id_type = /obj/item/weapon/card/id/medical/geneticist + id_type = /obj/item/weapon/card/id/medical pda_type = /obj/item/device/pda/geneticist /decl/hierarchy/outfit/job/medical/psychiatrist @@ -83,7 +83,7 @@ uniform = /obj/item/clothing/under/rank/psych suit = /obj/item/clothing/suit/storage/toggle/labcoat shoes = /obj/item/clothing/shoes/laceup - id_type = /obj/item/weapon/card/id/medical/psychiatrist + id_type = /obj/item/weapon/card/id/medical /decl/hierarchy/outfit/job/medical/psychiatrist/psychologist name = OUTFIT_JOB_NAME("Psychologist") @@ -97,7 +97,7 @@ l_hand = /obj/item/weapon/storage/firstaid/regular belt = /obj/item/weapon/storage/belt/medical/emt pda_slot = slot_l_store - id_type = /obj/item/weapon/card/id/medical/paramedic + id_type = /obj/item/weapon/card/id/medical flags = OUTFIT_HAS_BACKPACK|OUTFIT_EXTENDED_SURVIVAL /decl/hierarchy/outfit/job/medical/paramedic/emt diff --git a/code/datums/outfits/jobs/science.dm b/code/datums/outfits/jobs/science.dm index abca107024..8920db9b7b 100644 --- a/code/datums/outfits/jobs/science.dm +++ b/code/datums/outfits/jobs/science.dm @@ -20,13 +20,13 @@ /decl/hierarchy/outfit/job/science/scientist name = OUTFIT_JOB_NAME("Scientist") uniform = /obj/item/clothing/under/rank/scientist - id_type = /obj/item/weapon/card/id/science/scientist + id_type = /obj/item/weapon/card/id/science suit = /obj/item/clothing/suit/storage/toggle/labcoat/science /decl/hierarchy/outfit/job/science/xenobiologist name = OUTFIT_JOB_NAME("Xenobiologist") uniform = /obj/item/clothing/under/rank/scientist - id_type = /obj/item/weapon/card/id/science/xenobiologist + id_type = /obj/item/weapon/card/id/science suit = /obj/item/clothing/suit/storage/toggle/labcoat/science /decl/hierarchy/outfit/job/science/roboticist @@ -34,7 +34,7 @@ uniform = /obj/item/clothing/under/rank/roboticist shoes = /obj/item/clothing/shoes/black belt = /obj/item/weapon/storage/belt/utility/full - id_type = /obj/item/weapon/card/id/science/roboticist + id_type = /obj/item/weapon/card/id/science pda_slot = slot_r_store pda_type = /obj/item/device/pda/roboticist backpack = /obj/item/weapon/storage/backpack diff --git a/code/datums/outfits/jobs/security.dm b/code/datums/outfits/jobs/security.dm index f0a44cd416..9f127a2701 100644 --- a/code/datums/outfits/jobs/security.dm +++ b/code/datums/outfits/jobs/security.dm @@ -20,7 +20,7 @@ name = OUTFIT_JOB_NAME("Warden") uniform = /obj/item/clothing/under/rank/warden l_pocket = /obj/item/device/flash - id_type = /obj/item/weapon/card/id/security/warden + id_type = /obj/item/weapon/card/id/security pda_type = /obj/item/device/pda/warden /decl/hierarchy/outfit/job/security/detective @@ -31,7 +31,7 @@ l_pocket = /obj/item/weapon/flame/lighter/zippo shoes = /obj/item/clothing/shoes/laceup r_hand = /obj/item/weapon/storage/briefcase/crimekit - id_type = /obj/item/weapon/card/id/security/detective + id_type = /obj/item/weapon/card/id/security pda_type = /obj/item/device/pda/detective backpack = /obj/item/weapon/storage/backpack satchel_one = /obj/item/weapon/storage/backpack/satchel/norm @@ -46,5 +46,5 @@ name = OUTFIT_JOB_NAME("Security Officer") uniform = /obj/item/clothing/under/rank/security l_pocket = /obj/item/device/flash - id_type = /obj/item/weapon/card/id/security/officer + id_type = /obj/item/weapon/card/id/security pda_type = /obj/item/device/pda/security diff --git a/code/datums/supplypacks/munitions.dm b/code/datums/supplypacks/munitions.dm index 1e5bbb4d45..1889c58cfb 100644 --- a/code/datums/supplypacks/munitions.dm +++ b/code/datums/supplypacks/munitions.dm @@ -144,6 +144,30 @@ containername = "Ballistic Weapons crate" access = access_armory //VOREStation Edit - Guns are for the armory. +/datum/supply_pack/munitions/mrifle + name = "Weapons - Magnetic Rifles" + contains = list(/obj/item/weapon/gun/magnetic/railgun/heater = 2) + cost = 120 + containertype = /obj/structure/closet/crate/secure/weapon + containername = "Magnetic weapon crate" + access = access_armory + +/datum/supply_pack/munitions/mpistol + name = "Weapons - Magnetic Pistols" + contains = list(/obj/item/weapon/gun/magnetic/railgun/heater/pistol = 2) + cost = 200 + containertype = /obj/structure/closet/crate/secure/weapon + containername = "Magnetic weapon crate" + access = access_armory + +/datum/supply_pack/munitions/mcarbine + name = "Weapons - Magnetic Carbines" + contains = list(/obj/item/weapon/gun/magnetic/railgun/flechette/sif = 2) + cost = 130 + containertype = /obj/structure/closet/crate/secure/weapon + containername = "Magnetic weapon crate" + access = access_security + /datum/supply_pack/munitions/shotgunammo name = "Ammunition - Shotgun shells" contains = list( diff --git a/code/datums/supplypacks/security.dm b/code/datums/supplypacks/security.dm index 6e9e82bdde..3de53e0548 100644 --- a/code/datums/supplypacks/security.dm +++ b/code/datums/supplypacks/security.dm @@ -32,6 +32,127 @@ containertype = /obj/structure/closet/crate/secure/gear containername = "Armor crate" +/datum/supply_pack/randomised/security/carriers + name = "Armor - Plate carriers" + num_contained = 5 + contains = list( + /obj/item/clothing/suit/armor/pcarrier, + /obj/item/clothing/suit/armor/pcarrier/blue, + /obj/item/clothing/suit/armor/pcarrier/green, + /obj/item/clothing/suit/armor/pcarrier/navy, + /obj/item/clothing/suit/armor/pcarrier/tan, + /obj/item/clothing/suit/armor/pcarrier/press + ) + cost = 20 + containertype = /obj/structure/closet/crate/secure/gear + containername = "Plate Carrier crate" + +/datum/supply_pack/security/carriertags + name = "Armor - Plate carrier tags" + contains = list( + /obj/item/clothing/accessory/armor/tag, + /obj/item/clothing/accessory/armor/tag/nt, + /obj/item/clothing/accessory/armor/tag/opos, + /obj/item/clothing/accessory/armor/tag/oneg, + /obj/item/clothing/accessory/armor/tag/apos, + /obj/item/clothing/accessory/armor/tag/aneg, + /obj/item/clothing/accessory/armor/tag/bpos, + /obj/item/clothing/accessory/armor/tag/bneg, + /obj/item/clothing/accessory/armor/tag/abpos, + /obj/item/clothing/accessory/armor/tag/abneg + ) + cost = 20 + containertype = /obj/structure/closet/crate/secure/gear + containername = "Plate Carrier crate" + +/datum/supply_pack/security/helmcovers + name = "Armor - Helmet covers" + contains = list( + /obj/item/clothing/accessory/armor/helmcover/blue, + /obj/item/clothing/accessory/armor/helmcover/blue, + /obj/item/clothing/accessory/armor/helmcover/navy, + /obj/item/clothing/accessory/armor/helmcover/navy, + /obj/item/clothing/accessory/armor/helmcover/green, + /obj/item/clothing/accessory/armor/helmcover/green, + /obj/item/clothing/accessory/armor/helmcover/tan, + /obj/item/clothing/accessory/armor/helmcover/tan + ) + cost = 20 + containertype = /obj/structure/closet/crate/secure/gear + containername = "Helmet Covers crate" + +/datum/supply_pack/randomised/security/armorplates + name = "Armor - Security armor plates" + num_contained = 5 + contains = list( + /obj/item/clothing/accessory/armor/armorplate, + /obj/item/clothing/accessory/armor/armorplate/stab, + /obj/item/clothing/accessory/armor/armorplate, + /obj/item/clothing/accessory/armor/armorplate/stab, + /obj/item/clothing/accessory/armor/armorplate/medium, + /obj/item/clothing/accessory/armor/armorplate/medium, + /obj/item/clothing/accessory/armor/armorplate/tactical, + /obj/item/clothing/accessory/armor/armorplate/laserproof, + /obj/item/clothing/accessory/armor/armorplate/riot, + /obj/item/clothing/accessory/armor/armorplate/bulletproof + ) + cost = 50 + containertype = /obj/structure/closet/crate/secure/gear + containername = "Armor plate crate" + +/datum/supply_pack/randomised/security/carrierarms + name = "Armor - Security armguard attachments" + num_contained = 5 + contains = list( + /obj/item/clothing/accessory/armor/armguards, + /obj/item/clothing/accessory/armor/armguards/blue, + /obj/item/clothing/accessory/armor/armguards/navy, + /obj/item/clothing/accessory/armor/armguards/green, + /obj/item/clothing/accessory/armor/armguards/tan, + /obj/item/clothing/accessory/armor/armguards/laserproof, + /obj/item/clothing/accessory/armor/armguards/riot, + /obj/item/clothing/accessory/armor/armguards/bulletproof + ) + cost = 50 + containertype = /obj/structure/closet/crate/secure/gear + containername = "Armor plate crate" + +/datum/supply_pack/randomised/security/carrierlegs + name = "Armor - Security legguard attachments" + num_contained = 5 + contains = list( + /obj/item/clothing/accessory/armor/legguards, + /obj/item/clothing/accessory/armor/legguards/blue, + /obj/item/clothing/accessory/armor/legguards/navy, + /obj/item/clothing/accessory/armor/legguards/green, + /obj/item/clothing/accessory/armor/legguards/tan, + /obj/item/clothing/accessory/armor/legguards/laserproof, + /obj/item/clothing/accessory/armor/legguards/riot, + /obj/item/clothing/accessory/armor/legguards/bulletproof + ) + cost = 50 + containertype = /obj/structure/closet/crate/secure/gear + containername = "Armor plate crate" + +/datum/supply_pack/randomised/security/carrierbags + name = "Armor - Security pouch attachments" + num_contained = 5 + contains = list( + /obj/item/clothing/accessory/storage/pouches, + /obj/item/clothing/accessory/storage/pouches/blue, + /obj/item/clothing/accessory/storage/pouches/navy, + /obj/item/clothing/accessory/storage/pouches/green, + /obj/item/clothing/accessory/storage/pouches/tan, + /obj/item/clothing/accessory/storage/pouches/large, + /obj/item/clothing/accessory/storage/pouches/large/blue, + /obj/item/clothing/accessory/storage/pouches/large/navy, + /obj/item/clothing/accessory/storage/pouches/large/green, + /obj/item/clothing/accessory/storage/pouches/large/tan + ) + cost = 60 + containertype = /obj/structure/closet/crate/secure/gear + containername = "Armor plate crate" + /datum/supply_pack/security/riot_gear name = "Gear - Riot" contains = list( @@ -60,6 +181,20 @@ containername = "Riot armor crate" access = access_armory +/datum/supply_pack/security/riot_plates + name = "Armor - Riot plates" + contains = list( + /obj/item/clothing/head/helmet/riot, + /obj/item/clothing/suit/armor/pcarrier, + /obj/item/clothing/accessory/armor/armorplate/riot, + /obj/item/clothing/accessory/armor/armguards/riot, + /obj/item/clothing/accessory/armor/legguards/riot + ) + cost = 40 + containertype = /obj/structure/closet/crate/secure/gear + containername = "Riot armor crate" + access = access_armory + /datum/supply_pack/security/ablative_armor name = "Armor - Ablative" contains = list( @@ -73,6 +208,20 @@ containername = "Ablative armor crate" access = access_armory +/datum/supply_pack/security/ablative_plates + name = "Armor - Ablative plates" + contains = list( + /obj/item/clothing/head/helmet/laserproof, + /obj/item/clothing/suit/armor/pcarrier, + /obj/item/clothing/accessory/armor/armorplate/laserproof, + /obj/item/clothing/accessory/armor/armguards/laserproof, + /obj/item/clothing/accessory/armor/legguards/laserproof + ) + cost = 50 + containertype = /obj/structure/closet/crate/secure/gear + containername = "Ablative armor crate" + access = access_armory + /datum/supply_pack/security/bullet_resistant_armor name = "Armor - Ballistic" contains = list( @@ -86,6 +235,21 @@ containername = "Ballistic armor crate" access = access_armory /* VOREStation Removal - Howabout no ERT armor being orderable? + +/datum/supply_pack/security/bullet_resistant_plates + name = "Armor - Ballistic plates" + contains = list( + /obj/item/clothing/head/helmet/bulletproof, + /obj/item/clothing/suit/armor/pcarrier, + /obj/item/clothing/accessory/armor/armorplate/bulletproof, + /obj/item/clothing/accessory/armor/armguards/bulletproof, + /obj/item/clothing/accessory/armor/legguards/bulletproof + ) + cost = 50 + containertype = /obj/structure/closet/crate/secure/gear + containername = "Ballistic armor crate" + access = access_armory + /datum/supply_pack/security/combat_armor name = "Armor - Combat" contains = list( @@ -209,13 +373,27 @@ /obj/item/weapon/storage/photo_album, /obj/item/device/reagent_scanner, /obj/item/device/flashlight/maglight, - /obj/item/weapon/storage/briefcase/crimekit + /obj/item/weapon/storage/briefcase/crimekit, + /obj/item/weapon/storage/bag/detective ) cost = 20 containertype = /obj/structure/closet/crate/secure containername = "Forensic equipment" access = access_forensics_lockers +/datum/supply_pack/security/detectivescan + name = "Forensic - Scanning Equipment" + contains = list( + /obj/item/device/mass_spectrometer, + /obj/item/device/reagent_scanner, + /obj/item/weapon/storage/briefcase/crimekit, + /obj/item/device/detective_scanner + ) + cost = 60 + containertype = /obj/structure/closet/crate/secure + containername = "Forensic equipment" + access = access_forensics_lockers + /datum/supply_pack/security/detectiveclothes name = "Forensic - Investigation apparel" contains = list( @@ -397,3 +575,13 @@ containertype = /obj/structure/closet/crate/secure containername = "Security biohazard gear" access = access_security + +/datum/supply_pack/security/posters + name = "Gear - Morale Posters" + contains = list( + /obj/item/weapon/contraband/poster/nanotrasen = 6 + ) + cost = 20 + containertype = /obj/structure/closet/crate/secure + containername = "Morale Posters" + access = access_maint_tunnels diff --git a/code/datums/underwear/undershirts.dm b/code/datums/underwear/undershirts.dm index 1f91d1222c..7da82fa580 100644 --- a/code/datums/underwear/undershirts.dm +++ b/code/datums/underwear/undershirts.dm @@ -1,180 +1,189 @@ -/datum/category_item/underwear/undershirt/none - is_default = TRUE - name = "None" - always_last = TRUE - -/datum/category_item/underwear/undershirt/shirt - name = "Shirt" - icon_state = "undershirt" - has_color = TRUE - -/datum/category_item/underwear/undershirt/shirt_fem - name = "Babydoll shirt" - icon_state = "undershirt_fem" - has_color = TRUE - -/datum/category_item/underwear/undershirt/shirt_long - name = "Longsleeve Shirt" - icon_state = "undershirt_long" - has_color = TRUE - -/datum/category_item/underwear/undershirt/shirt_long_s - name = "Shirt, button-down" - icon_state = "shirt_long_s" - has_color = TRUE - -/datum/category_item/underwear/undershirt/shirt_long_fem - name = "Longsleeve Shirt, feminine" - icon_state = "undershirt_long_fem" - has_color = TRUE - -/datum/category_item/underwear/undershirt/shirt_long_female_s - name = "Button-down Shirt, feminine" - icon_state = "shirt_long_female_s" - has_color = TRUE - - -/datum/category_item/underwear/undershirt/tank_top - name = "Tank top" - icon_state = "tanktop" - has_color = TRUE - -/datum/category_item/underwear/undershirt/tank_top_alt - name = "Tank top, alt" - icon_state = "tanktop_alt" - has_color = TRUE - -/datum/category_item/underwear/undershirt/tank_top_alt_fem - name = "Tank top, alt, feminine" - icon_state = "tanktop_alt_fem" - has_color = TRUE - -/datum/category_item/underwear/undershirt/tank_top_alt_fem_vneck - name = "Tank top, feminine, v-neck" - icon_state = "tanktop_alt_fem_vneck" - has_color = TRUE - -/datum/category_item/underwear/undershirt/tank_top_fire - name = "Tank top, fire" - icon_state = "tank_fire_s" - -/datum/category_item/underwear/undershirt/tank_top_fire_fem - name = "Tank top, fire, feminine" - icon_state = "tank_fire_fem_s" - -/datum/category_item/underwear/undershirt/tank_top_rainbow - name = "Tank top, rainbow" - icon_state = "tank_rainbow_s" - -/datum/category_item/underwear/undershirt/tank_top_stripes - name = "Tank top, striped" - icon_state = "tank_stripes_s" - -/datum/category_item/underwear/undershirt/tank_top_sun - name = "Tank top, sun" - icon_state = "tank_sun_s" - -/datum/category_item/underwear/undershirt/shirt_heart - name = "Shirt, heart" - icon_state = "lover_s" - -/datum/category_item/underwear/undershirt/shirt_heart_fem - name = "Shirt, heart, babydoll" - icon_state = "lover_fem_s" - -/datum/category_item/underwear/undershirt/shirt_nt - name = "Shirt, NT" - icon_state = "shirt_nano_s" - -/datum/category_item/underwear/undershirt/shirt_love_nt - name = "Shirt, I<3NT" - icon_state = "ilovent_s" - -/datum/category_item/underwear/undershirt/shirt_love_nt_fem - name = "Shirt, I<3NT, babydoll" - icon_state = "ilovent_fem_s" - -/datum/category_item/underwear/undershirt/shortsleeve_shirt - name = "Shortsleeve shirt" - icon_state = "shortsleeve" - has_color = TRUE - -/datum/category_item/underwear/undershirt/shortsleeve_shirt_fem - name = "Shortsleeve babydoll shirt" - icon_state = "shortsleeve_fem" - has_color = TRUE - -/datum/category_item/underwear/undershirt/shortsleeve_shirt_fem_vneck - name = "Shortsleeve babydoll shirt, v-neck" - icon_state = "shortsleeve_fem_vneck" - has_color = TRUE - -/datum/category_item/underwear/undershirt/polo_shirt - name = "Polo shirt" - icon_state = "polo" - has_color = TRUE - -/datum/category_item/underwear/undershirt/sport_shirt_green - name = "Sport shirt, green" - icon_state = "greenshirtsport_s" - -/datum/category_item/underwear/undershirt/sport_shirt_red - name = "Sport shirt, red" - icon_state = "redshirtsport_s" - -/datum/category_item/underwear/undershirt/sport_shirt_blue - name = "Sport shirt, blue" - icon_state = "blueshirtsport_s" - -/datum/category_item/underwear/undershirt/shirt_tiedye - name = "Shirt, tiedye" - icon_state = "shirt_tiedye_s" - -/datum/category_item/underwear/undershirt/shirt_blue_striped - name = "Shirt, blue stripes" - icon_state = "shirt_stripes_s" - -/datum/category_item/underwear/undershirt/bowling - name = "Bowling Shirt, Red" - icon_state = "bowling" - -/datum/category_item/underwear/undershirt/bowlingp - name = "Bowling Shirt, Pink" - icon_state = "bowlingp" - -/datum/category_item/underwear/undershirt/bowlinga - name = "Bowling Shirt, Aqua" - icon_state = "bowlinga" - -/datum/category_item/underwear/undershirt/bowlingw - name = "Bowling Shirt, White" - icon_state = "bowlingw" - -/datum/category_item/underwear/undershirt/longjon - name = "Long John Shirt" - icon_state = "ljont" - has_color = TRUE - -/datum/category_item/underwear/undershirt/longstripe_black - name = "Longsleeve Striped Shirt, Black" - icon_state = "longstripe" - -/datum/category_item/underwear/undershirt/longstripe_blue - name = "Longsleeve Striped Shirt, Blue" - icon_state = "longstripe_blue" - -/datum/category_item/underwear/undershirt/tiedye - name = "Tiedye Shirt" - icon_state = "tiedye" - -/datum/category_item/underwear/undershirt/longstripe_pink - name = "Longsleeve Striped Shirt, Pink" - icon_state = "longstripe_pink_s" - -/datum/category_item/underwear/undershirt/wingshirt - name = "Pink Wing Shirt" - icon_state = "wing_shirt_s" - -/datum/category_item/underwear/undershirt/pinkblack_tshirt - name = "Pink and Black T-Shirt" +/datum/category_item/underwear/undershirt/none + is_default = TRUE + name = "None" + always_last = TRUE + +/datum/category_item/underwear/undershirt/shirt + name = "Shirt" + icon_state = "undershirt" + has_color = TRUE + +/datum/category_item/underwear/undershirt/shirt_fem + name = "Babydoll shirt" + icon_state = "undershirt_fem" + has_color = TRUE + +/datum/category_item/underwear/undershirt/shirt_long + name = "Longsleeve Shirt" + icon_state = "undershirt_long" + has_color = TRUE + +/datum/category_item/underwear/undershirt/shirt_long_s + name = "Shirt, button-down" + icon_state = "shirt_long_s" + has_color = TRUE + +/datum/category_item/underwear/undershirt/shirt_long_fem + name = "Longsleeve Shirt, feminine" + icon_state = "undershirt_long_fem" + has_color = TRUE + +/datum/category_item/underwear/undershirt/shirt_long_female_s + name = "Button-down Shirt, feminine" + icon_state = "shirt_long_female_s" + has_color = TRUE + + +/datum/category_item/underwear/undershirt/fishnet_simple + name = "Fishnet shirt" + icon_state = "fishnet_simple" + +/datum/category_item/underwear/undershirt/tank_top + name = "Tank top" + icon_state = "tanktop" + has_color = TRUE + +/datum/category_item/underwear/undershirt/tank_top_alt + name = "Tank top, alt" + icon_state = "tanktop_alt" + has_color = TRUE + +/datum/category_item/underwear/undershirt/tank_top_alt_fem + name = "Tank top, alt, feminine" + icon_state = "tanktop_alt_fem" + has_color = TRUE + +/datum/category_item/underwear/undershirt/tank_top_alt_fem_vneck + name = "Tank top, feminine, v-neck" + icon_state = "tanktop_alt_fem_vneck" + has_color = TRUE + +/datum/category_item/underwear/undershirt/tank_cropped_vneck + name = "Tank top, feminine, cropped & v-neck" + icon_state = "tanktop_cropped_vneck" + has_color = TRUE + +/datum/category_item/underwear/undershirt/tank_top_fire + name = "Tank top, fire" + icon_state = "tank_fire_s" + +/datum/category_item/underwear/undershirt/tank_top_fire_fem + name = "Tank top, fire, feminine" + icon_state = "tank_fire_fem_s" + +/datum/category_item/underwear/undershirt/tank_top_rainbow + name = "Tank top, rainbow" + icon_state = "tank_rainbow_s" + +/datum/category_item/underwear/undershirt/tank_top_stripes + name = "Tank top, striped" + icon_state = "tank_stripes_s" + +/datum/category_item/underwear/undershirt/tank_top_sun + name = "Tank top, sun" + icon_state = "tank_sun_s" + +/datum/category_item/underwear/undershirt/shirt_heart + name = "Shirt, heart" + icon_state = "lover_s" + +/datum/category_item/underwear/undershirt/shirt_heart_fem + name = "Shirt, heart, babydoll" + icon_state = "lover_fem_s" + +/datum/category_item/underwear/undershirt/shirt_nt + name = "Shirt, NT" + icon_state = "shirt_nano_s" + +/datum/category_item/underwear/undershirt/shirt_love_nt + name = "Shirt, I<3NT" + icon_state = "ilovent_s" + +/datum/category_item/underwear/undershirt/shirt_love_nt_fem + name = "Shirt, I<3NT, babydoll" + icon_state = "ilovent_fem_s" + +/datum/category_item/underwear/undershirt/shortsleeve_shirt + name = "Shortsleeve shirt" + icon_state = "shortsleeve" + has_color = TRUE + +/datum/category_item/underwear/undershirt/shortsleeve_shirt_fem + name = "Shortsleeve babydoll shirt" + icon_state = "shortsleeve_fem" + has_color = TRUE + +/datum/category_item/underwear/undershirt/shortsleeve_shirt_fem_vneck + name = "Shortsleeve babydoll shirt, v-neck" + icon_state = "shortsleeve_fem_vneck" + has_color = TRUE + +/datum/category_item/underwear/undershirt/polo_shirt + name = "Polo shirt" + icon_state = "polo" + has_color = TRUE + +/datum/category_item/underwear/undershirt/sport_shirt_green + name = "Sport shirt, green" + icon_state = "greenshirtsport_s" + +/datum/category_item/underwear/undershirt/sport_shirt_red + name = "Sport shirt, red" + icon_state = "redshirtsport_s" + +/datum/category_item/underwear/undershirt/sport_shirt_blue + name = "Sport shirt, blue" + icon_state = "blueshirtsport_s" + +/datum/category_item/underwear/undershirt/shirt_tiedye + name = "Shirt, tiedye" + icon_state = "shirt_tiedye_s" + +/datum/category_item/underwear/undershirt/shirt_blue_striped + name = "Shirt, blue stripes" + icon_state = "shirt_stripes_s" + +/datum/category_item/underwear/undershirt/bowling + name = "Bowling Shirt, Red" + icon_state = "bowling" + +/datum/category_item/underwear/undershirt/bowlingp + name = "Bowling Shirt, Pink" + icon_state = "bowlingp" + +/datum/category_item/underwear/undershirt/bowlinga + name = "Bowling Shirt, Aqua" + icon_state = "bowlinga" + +/datum/category_item/underwear/undershirt/bowlingw + name = "Bowling Shirt, White" + icon_state = "bowlingw" + +/datum/category_item/underwear/undershirt/longjon + name = "Long John Shirt" + icon_state = "ljont" + has_color = TRUE + +/datum/category_item/underwear/undershirt/longstripe_black + name = "Longsleeve Striped Shirt, Black" + icon_state = "longstripe" + +/datum/category_item/underwear/undershirt/longstripe_blue + name = "Longsleeve Striped Shirt, Blue" + icon_state = "longstripe_blue" + +/datum/category_item/underwear/undershirt/tiedye + name = "Tiedye Shirt" + icon_state = "tiedye" + +/datum/category_item/underwear/undershirt/longstripe_pink + name = "Longsleeve Striped Shirt, Pink" + icon_state = "longstripe_pink_s" + +/datum/category_item/underwear/undershirt/wingshirt + name = "Pink Wing Shirt" + icon_state = "wing_shirt_s" + +/datum/category_item/underwear/undershirt/pinkblack_tshirt + name = "Pink and Black T-Shirt" icon_state = "pinkblack_tshirt" \ No newline at end of file diff --git a/code/game/antagonist/antagonist_factions.dm b/code/game/antagonist/antagonist_factions.dm index 83c9957be2..a072196c1b 100644 --- a/code/game/antagonist/antagonist_factions.dm +++ b/code/game/antagonist/antagonist_factions.dm @@ -14,33 +14,33 @@ return if(faction.is_antagonist(player)) - src << "\The [player.current] already serves the [faction.faction_descriptor]." + to_chat(src, "\The [player.current] already serves the [faction.faction_descriptor].") return if(player_is_antag(player)) - src << "\The [player.current]'s loyalties seem to be elsewhere..." + to_chat(src, "\The [player.current]'s loyalties seem to be elsewhere...") return if(!faction.can_become_antag(player)) - src << "\The [player.current] cannot be \a [faction.faction_role_text]!" + to_chat(src, "\The [player.current] cannot be \a [faction.faction_role_text]!") return if(world.time < player.rev_cooldown) - src << "You must wait five seconds between attempts." + to_chat(src, "You must wait five seconds between attempts.") return - src << "You are attempting to convert \the [player.current]..." + to_chat(src, "You are attempting to convert \the [player.current]...") log_admin("[src]([src.ckey]) attempted to convert [player.current].") message_admins("[src]([src.ckey]) attempted to convert [player.current].") player.rev_cooldown = world.time+100 var/choice = alert(player.current,"Asked by [src]: Do you want to join the [faction.faction_descriptor]?","Join the [faction.faction_descriptor]?","No!","Yes!") if(choice == "Yes!" && faction.add_antagonist_mind(player, 0, faction.faction_role_text, faction.faction_welcome)) - src << "\The [player.current] joins the [faction.faction_descriptor]!" + to_chat(src, "\The [player.current] joins the [faction.faction_descriptor]!") return if(choice == "No!") player << "You reject this traitorous cause!" - src << "\The [player.current] does not support the [faction.faction_descriptor]!" + to_chat(src, "\The [player.current] does not support the [faction.faction_descriptor]!") /mob/living/proc/convert_to_loyalist(mob/M as mob in oview(src)) set name = "Convert Recidivist" diff --git a/code/game/antagonist/antagonist_objectives.dm b/code/game/antagonist/antagonist_objectives.dm index 5dc6c5f327..fba6467983 100644 --- a/code/game/antagonist/antagonist_objectives.dm +++ b/code/game/antagonist/antagonist_objectives.dm @@ -38,8 +38,8 @@ if(!mind) return if(!is_special_character(mind)) - src << "While you may perhaps have goals, this verb's meant to only be visible \ - to antagonists. Please make a bug report!" + to_chat(src, "While you may perhaps have goals, this verb's meant to only be visible \ + to antagonists. Please make a bug report!") return var/new_ambitions = input(src, "Write a short sentence of what your character hopes to accomplish \ today as an antagonist. Remember that this is purely optional. It will be shown at the end of the \ @@ -49,7 +49,7 @@ new_ambitions = sanitize(new_ambitions) mind.ambitions = new_ambitions if(new_ambitions) - src << "You've set your goal to be '[new_ambitions]'." + to_chat(src, "You've set your goal to be '[new_ambitions]'.") else - src << "You leave your ambitions behind." + to_chat(src, "You leave your ambitions behind.") log_and_message_admins("has set their ambitions to now be: [new_ambitions].") diff --git a/code/game/antagonist/outsider/wizard.dm b/code/game/antagonist/outsider/wizard.dm index feaf8857ba..6f2a7fe2e3 100644 --- a/code/game/antagonist/outsider/wizard.dm +++ b/code/game/antagonist/outsider/wizard.dm @@ -115,18 +115,18 @@ obj/item/clothing /*Checks if the wizard is wearing the proper attire. Made a proc so this is not repeated 14 (or more) times.*/ /mob/proc/wearing_wiz_garb() - src << "Silly creature, you're not a human. Only humans can cast this spell." + to_chat(src, "Silly creature, you're not a human. Only humans can cast this spell.") return 0 // Humans can wear clothes. /mob/living/carbon/human/wearing_wiz_garb() if(!is_wiz_garb(src.wear_suit)) - src << "I don't feel strong enough without my robe." + to_chat(src, "I don't feel strong enough without my robe.") return 0 if(!is_wiz_garb(src.shoes)) - src << "I don't feel strong enough without my sandals." + to_chat(src, "I don't feel strong enough without my sandals.") return 0 if(!is_wiz_garb(src.head)) - src << "I don't feel strong enough without my hat." + to_chat(src, "I don't feel strong enough without my hat.") return 0 return 1 diff --git a/code/game/antagonist/station/stowaway.dm b/code/game/antagonist/station/stowaway.dm new file mode 100644 index 0000000000..dc3814b3b1 --- /dev/null +++ b/code/game/antagonist/station/stowaway.dm @@ -0,0 +1,18 @@ +var/datum/antagonist/stowaway/stowaways + +/datum/antagonist/STOWAWAY + id = MODE_STOWAWAY + role_type = BE_RENEGADE + role_text = "Stowaway" + role_text_plural = "Stowaways" + bantype = "renegade" + restricted_jobs = list("AI") + welcome_text = "People are known to run from many things, or to many things, for many different reasons. You happen to be one of those people." + antag_text = "You are a minor antagonist! Within the server rules, do whatever it is \ + that you came to the station to do. Espionage, thievery, or just running from the law are all examples. \ + Try to make sure other players have fun! If you are confused or at a loss, always adminhelp, \ + and before taking extreme actions, please try to also contact the administration! \ + Think through your actions and make the roleplay immersive! Please remember all \ + rules aside from those with explicit exceptions apply to antagonists." + flags = ANTAG_SUSPICIOUS | ANTAG_IMPLANT_IMMUNE | ANTAG_RANDSPAWN | ANTAG_VOTABLE + can_speak_aooc = FALSE diff --git a/code/game/gamemodes/changeling/changeling_powers.dm b/code/game/gamemodes/changeling/changeling_powers.dm index 627b4e8b14..373aefa0d8 100644 --- a/code/game/gamemodes/changeling/changeling_powers.dm +++ b/code/game/gamemodes/changeling/changeling_powers.dm @@ -129,19 +129,19 @@ var/global/list/possible_changeling_IDs = list("Alpha","Beta","Gamma","Delta","E return if(src.stat > max_stat) - src << "We are incapacitated." + to_chat(src, "We are incapacitated.") return if(changeling.absorbed_dna.len < required_dna) - src << "We require at least [required_dna] samples of compatible DNA." + to_chat(src, "We require at least [required_dna] samples of compatible DNA.") return if(changeling.chem_charges < required_chems) - src << "We require at least [required_chems] units of chemicals to do that!" + to_chat(src, "We require at least [required_chems] units of chemicals to do that!") return if(changeling.geneticdamage > max_genetic_damage) - src << "Our genomes are still reassembling. We need time to recover first." + to_chat(src, "Our genomes are still reassembling. We need time to recover first.") return return changeling @@ -204,11 +204,11 @@ turf/proc/AdjacentTurfsRangedSting() if(M.loc == src.loc) return 1 //target and source are in the same thing if(!isturf(src.loc) || !isturf(M.loc)) - src << "We cannot reach \the [M] with a sting!" + to_chat(src, "We cannot reach \the [M] with a sting!") return 0 //One is inside, the other is outside something. // Maximum queued turfs set to 25; I don't *think* anything raises sting_range above 2, but if it does the 25 may need raising if(!AStar(src.loc, M.loc, /turf/proc/AdjacentTurfsRangedSting, /turf/proc/Distance, max_nodes=25, max_node_depth=sting_range)) //If we can't find a path, fail - src << "We cannot find a path to sting \the [M] by!" + to_chat(src, "We cannot find a path to sting \the [M] by!") return 0 return 1 @@ -225,7 +225,7 @@ turf/proc/AdjacentTurfsRangedSting() if(!T) return if(T.isSynthetic()) - src << "We are unable to pierce the outer shell of [T]." + to_chat(src, "We are unable to pierce the outer shell of [T].") return if(!(T in view(changeling.sting_range))) return if(!sting_can_reach(T, changeling.sting_range)) return @@ -236,7 +236,7 @@ turf/proc/AdjacentTurfsRangedSting() src.verbs -= verb_path spawn(10) src.verbs += verb_path - src << "We stealthily sting [T]." + to_chat(src, "We stealthily sting [T].") if(!T.mind || !T.mind.changeling) return T //T will be affected by the sting T << "You feel a tiny prick." return diff --git a/code/game/gamemodes/changeling/generic_equip_procs.dm b/code/game/gamemodes/changeling/generic_equip_procs.dm index ef1ab650a1..f2d7b45831 100644 --- a/code/game/gamemodes/changeling/generic_equip_procs.dm +++ b/code/game/gamemodes/changeling/generic_equip_procs.dm @@ -32,7 +32,7 @@ return 1 if(M.head || M.wear_suit) //Make sure our slots aren't full - src << "We require nothing to be on our head, and we cannot wear any external suits, or shoes." + to_chat(src, "We require nothing to be on our head, and we cannot wear any external suits, or shoes.") return 0 var/obj/item/clothing/suit/A = new armor_type(src) @@ -242,7 +242,7 @@ var/mob/living/carbon/human/M = src if(M.hands_are_full()) //Make sure our hands aren't full. - src << "Our hands are full. Drop something first." + to_chat(src, "Our hands are full. Drop something first.") return 0 var/obj/item/weapon/W = new weapon_type(src) diff --git a/code/game/gamemodes/changeling/powers/absorb.dm b/code/game/gamemodes/changeling/powers/absorb.dm index 45b230b00c..02285a0c7e 100644 --- a/code/game/gamemodes/changeling/powers/absorb.dm +++ b/code/game/gamemodes/changeling/powers/absorb.dm @@ -16,41 +16,41 @@ var/obj/item/weapon/grab/G = src.get_active_hand() if(!istype(G)) - src << "We must be grabbing a creature in our active hand to absorb them." + to_chat(src, "We must be grabbing a creature in our active hand to absorb them.") return var/mob/living/carbon/human/T = G.affecting if(!istype(T) || T.isSynthetic()) - src << "\The [T] is not compatible with our biology." + to_chat(src, "\The [T] is not compatible with our biology.") return if(T.species.flags & NO_SCAN) - src << "We do not know how to parse this creature's DNA!" + to_chat(src, "We do not know how to parse this creature's DNA!") return if(HUSK in T.mutations) //Lings can always absorb other lings, unless someone beat them to it first. if(!T.mind.changeling || T.mind.changeling && T.mind.changeling.geneticpoints < 0) - src << "This creature's DNA is ruined beyond useability!" + to_chat(src, "This creature's DNA is ruined beyond useability!") return if(G.state != GRAB_KILL) - src << "We must have a tighter grip to absorb this creature." + to_chat(src, "We must have a tighter grip to absorb this creature.") return if(changeling.isabsorbing) - src << "We are already absorbing!" + to_chat(src, "We are already absorbing!") return changeling.isabsorbing = 1 for(var/stage = 1, stage<=3, stage++) switch(stage) if(1) - src << "This creature is compatible. We must hold still..." + to_chat(src, "This creature is compatible. We must hold still...") if(2) - src << "We extend a proboscis." + to_chat(src, "We extend a proboscis.") src.visible_message("[src] extends a proboscis!") if(3) - src << "We stab [T] with the proboscis." + to_chat(src, "We stab [T] with the proboscis.") src.visible_message("[src] stabs [T] with the proboscis!") T << "You feel a sharp stabbing pain!" add_attack_logs(src,T,"Absorbed (changeling)") @@ -60,11 +60,11 @@ feedback_add_details("changeling_powers","A[stage]") if(!do_mob(src, T, 150) || G.state != GRAB_KILL) - src << "Our absorption of [T] has been interrupted!" + to_chat(src, "Our absorption of [T] has been interrupted!") changeling.isabsorbing = 0 return - src << "We have absorbed [T]!" + to_chat(src, "We have absorbed [T]!") src.visible_message("[src] sucks the fluids from [T]!") T << "You have been absorbed by the changeling!" if(src.nutrition < 400) @@ -76,7 +76,7 @@ if(changeling.readapts > changeling.max_readapts) changeling.readapts = changeling.max_readapts - src << "We can now re-adapt, reverting our evolution so that we may start anew, if needed." + to_chat(src, "We can now re-adapt, reverting our evolution so that we may start anew, if needed.") var/datum/absorbed_dna/newDNA = new(T.real_name, T.dna, T.species.name, T.languages, T.identifying_gender, T.flavor_texts, T.modifiers) absorbDNA(newDNA) @@ -98,7 +98,7 @@ changeling.geneticpoints += 4 changeling.max_geneticpoints += 4 - src << "We absorbed another changeling, and we grow stronger. Our genomes increase." + to_chat(src, "We absorbed another changeling, and we grow stronger. Our genomes increase.") T.mind.changeling.chem_charges = 0 T.mind.changeling.geneticpoints = -1 diff --git a/code/game/gamemodes/changeling/powers/armblade.dm b/code/game/gamemodes/changeling/powers/armblade.dm index 947f06cee4..c05ad96e81 100644 --- a/code/game/gamemodes/changeling/powers/armblade.dm +++ b/code/game/gamemodes/changeling/powers/armblade.dm @@ -14,7 +14,7 @@ if(src.mind.changeling.recursive_enhancement) if(changeling_generic_weapon(/obj/item/weapon/melee/changeling/arm_blade/greater)) - src << "We prepare an extra sharp blade." + to_chat(src, "We prepare an extra sharp blade.") return 1 else @@ -39,7 +39,7 @@ if(src.mind.changeling.recursive_enhancement) if(changeling_generic_weapon(/obj/item/weapon/melee/changeling/claw/greater, 1, 15)) - src << "We prepare an extra sharp claw." + to_chat(src, "We prepare an extra sharp claw.") return 1 else diff --git a/code/game/gamemodes/changeling/powers/bioelectrogenesis.dm b/code/game/gamemodes/changeling/powers/bioelectrogenesis.dm index 3f3c1bd7ad..192f8b3874 100644 --- a/code/game/gamemodes/changeling/powers/bioelectrogenesis.dm +++ b/code/game/gamemodes/changeling/powers/bioelectrogenesis.dm @@ -25,7 +25,7 @@ if(held_item == null) if(src.mind.changeling.recursive_enhancement) if(changeling_generic_weapon(/obj/item/weapon/electric_hand/efficent,0)) - src << "We will shock others more efficently." + to_chat(src, "We will shock others more efficently.") return 1 else if(changeling_generic_weapon(/obj/item/weapon/electric_hand,0)) //Chemical cost is handled in the equip proc. @@ -54,7 +54,7 @@ "Our hand channels raw electricity into [G.affecting].", "You hear sparks!") else - src << "Our gloves block us from shocking \the [G.affecting]." + to_chat(src, "Our gloves block us from shocking \the [G.affecting].") src.mind.changeling.chem_charges -= 10 return 1 @@ -92,7 +92,7 @@ sleep(1 SECOND) success = 1 if(success == 0) //If we couldn't do anything with the ability, don't deduct the chemicals. - src << "We are unable to affect \the [held_item]." + to_chat(src, "We are unable to affect \the [held_item].") else src.mind.changeling.chem_charges -= 10 return success @@ -143,7 +143,7 @@ var/mob/living/carbon/C = target if(user.mind.changeling.chem_charges < shock_cost) - src << "We require more chemicals to electrocute [C]!" + to_chat(src, "We require more chemicals to electrocute [C]!") return 0 C.electrocute_act(electrocute_amount * siemens,src,1.0,BP_TORSO) @@ -156,7 +156,7 @@ "Our hand channels raw electricity into [C]", "You hear sparks!") else - src << "Our gloves block us from shocking \the [C]." + to_chat(src, "Our gloves block us from shocking \the [C].") //qdel(src) //Since we're no longer a one hit stun, we need to stick around. user.mind.changeling.chem_charges -= shock_cost return 1 @@ -165,7 +165,7 @@ var/mob/living/silicon/S = target if(user.mind.changeling.chem_charges < 10) - src << "We require more chemicals to electrocute [S]!" + to_chat(src, "We require more chemicals to electrocute [S]!") return 0 S.electrocute_act(60,src,0.75) //If only they had surge protectors. @@ -205,7 +205,7 @@ success = 1 break if(success == 0) - src << "We are unable to affect \the [target]." + to_chat(src, "We are unable to affect \the [target].") else qdel(src) return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/blind_sting.dm b/code/game/gamemodes/changeling/powers/blind_sting.dm index 347881df9b..e2fede649e 100644 --- a/code/game/gamemodes/changeling/powers/blind_sting.dm +++ b/code/game/gamemodes/changeling/powers/blind_sting.dm @@ -21,7 +21,7 @@ var/duration = 300 if(src.mind.changeling.recursive_enhancement) duration = duration + 150 - src << "They will be deprived of sight for longer." + to_chat(src, "They will be deprived of sight for longer.") spawn(duration) T.disabilities &= ~NEARSIGHTED T.Blind(10) diff --git a/code/game/gamemodes/changeling/powers/cryo_sting.dm b/code/game/gamemodes/changeling/powers/cryo_sting.dm index bc68428d89..e1a2b10cff 100644 --- a/code/game/gamemodes/changeling/powers/cryo_sting.dm +++ b/code/game/gamemodes/changeling/powers/cryo_sting.dm @@ -20,12 +20,12 @@ var/inject_amount = 10 if(src.mind.changeling.recursive_enhancement) inject_amount = inject_amount * 1.5 - src << "We inject extra chemicals." + to_chat(src, "We inject extra chemicals.") if(T.reagents) T.reagents.add_reagent("cryotoxin", inject_amount) feedback_add_details("changeling_powers","CS") src.verbs -= /mob/proc/changeling_cryo_sting spawn(3 MINUTES) - src << "Our cryogenic string is ready to be used once more." + to_chat(src, "Our cryogenic string is ready to be used once more.") src.verbs |= /mob/proc/changeling_cryo_sting return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/deaf_sting.dm b/code/game/gamemodes/changeling/powers/deaf_sting.dm index a94ad1744a..92e7a80a30 100644 --- a/code/game/gamemodes/changeling/powers/deaf_sting.dm +++ b/code/game/gamemodes/changeling/powers/deaf_sting.dm @@ -19,7 +19,7 @@ var/duration = 300 if(src.mind.changeling.recursive_enhancement) duration = duration + 100 - src << "They will be unable to hear for a little longer." + to_chat(src, "They will be unable to hear for a little longer.") T << "Your ears pop and begin ringing loudly!" T.sdisabilities |= DEAF spawn(duration) T.sdisabilities &= ~DEAF diff --git a/code/game/gamemodes/changeling/powers/delayed_toxin_sting.dm b/code/game/gamemodes/changeling/powers/delayed_toxin_sting.dm index 7853a9603e..f50460a826 100644 --- a/code/game/gamemodes/changeling/powers/delayed_toxin_sting.dm +++ b/code/game/gamemodes/changeling/powers/delayed_toxin_sting.dm @@ -32,7 +32,7 @@ var/type_to_give = /datum/modifier/delayed_toxin_sting if(src.mind.changeling.recursive_enhancement) type_to_give = /datum/modifier/delayed_toxin_sting/strong - src << "Our toxin will be extra potent, when it strikes." + to_chat(src, "Our toxin will be extra potent, when it strikes.") T.add_modifier(type_to_give, 2 MINUTES) diff --git a/code/game/gamemodes/changeling/powers/enfeebling_string.dm b/code/game/gamemodes/changeling/powers/enfeebling_string.dm index 16303f7c58..81930a7ebc 100644 --- a/code/game/gamemodes/changeling/powers/enfeebling_string.dm +++ b/code/game/gamemodes/changeling/powers/enfeebling_string.dm @@ -40,7 +40,7 @@ var/type_to_give = /datum/modifier/enfeeble if(src.mind.changeling.recursive_enhancement) type_to_give = /datum/modifier/enfeeble/strong - src << "We make them extremely weak." + to_chat(src, "We make them extremely weak.") H.add_modifier(type_to_give, 2 MINUTES) feedback_add_details("changeling_powers","ES") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/extract_dna_sting.dm b/code/game/gamemodes/changeling/powers/extract_dna_sting.dm index 0c5d91d83b..35ce94daf0 100644 --- a/code/game/gamemodes/changeling/powers/extract_dna_sting.dm +++ b/code/game/gamemodes/changeling/powers/extract_dna_sting.dm @@ -24,15 +24,15 @@ return if(!istype(T) || T.isSynthetic()) - src << "\The [T] is not compatible with our biology." + to_chat(src, "\The [T] is not compatible with our biology.") return 0 if(T.species.flags & NO_SCAN) - src << "We do not know how to parse this creature's DNA!" + to_chat(src, "We do not know how to parse this creature's DNA!") return 0 if(HUSK in T.mutations) - src << "This creature's DNA is ruined beyond useability!" + to_chat(src, "This creature's DNA is ruined beyond useability!") return 0 add_attack_logs(src,T,"DNA extraction sting (changeling)") diff --git a/code/game/gamemodes/changeling/powers/fake_death.dm b/code/game/gamemodes/changeling/powers/fake_death.dm index cae98164a0..3581a8d06a 100644 --- a/code/game/gamemodes/changeling/powers/fake_death.dm +++ b/code/game/gamemodes/changeling/powers/fake_death.dm @@ -19,7 +19,7 @@ var/mob/living/carbon/C = src if(changeling.max_geneticpoints < 0) //Absorbed by another ling - src << "We have no genomes, not even our own, and cannot regenerate." + to_chat(src, "We have no genomes, not even our own, and cannot regenerate.") return 0 if(!C.stat && alert("Are we sure we wish to regenerate? We will appear to be dead while doing so.","Revival","Yes","No") == "No") @@ -44,7 +44,7 @@ spawn(rand(2 MINUTES, 4 MINUTES)) //The ling will now be able to choose when to revive src.verbs += /mob/proc/changeling_revive - src << "We are ready to rise. Use the Revive verb when you are ready." + to_chat(src, "We are ready to rise. Use the Revive verb when you are ready.") feedback_add_details("changeling_powers","FD") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/fleshmend.dm b/code/game/gamemodes/changeling/powers/fleshmend.dm index f7760e9ce6..05eea72d95 100644 --- a/code/game/gamemodes/changeling/powers/fleshmend.dm +++ b/code/game/gamemodes/changeling/powers/fleshmend.dm @@ -1,6 +1,6 @@ /datum/power/changeling/fleshmend name = "Fleshmend" - desc = "Begins a slow rengeration of our form. Does not effect stuns or chemicals." + desc = "Begins a slow regeneration of our form. Does not effect stuns or chemicals." helptext = "Can be used while unconscious." enhancedtext = "Healing is twice as effective." ability_icon_state = "ling_fleshmend" @@ -22,10 +22,10 @@ var/heal_amount = 2 if(src.mind.changeling.recursive_enhancement) heal_amount = heal_amount * 2 - src << "We will heal much faster." + to_chat(src, "We will heal much faster.") spawn(0) - src << "We begin to heal ourselves." + to_chat(src, "We begin to heal ourselves.") for(var/i = 0, i<50,i++) if(C) C.adjustBruteLoss(-heal_amount) @@ -35,7 +35,7 @@ src.verbs -= /mob/proc/changeling_fleshmend spawn(50 SECONDS) - src << "Our regeneration has slowed to normal levels." + to_chat(src, "Our regeneration has slowed to normal levels.") src.verbs += /mob/proc/changeling_fleshmend feedback_add_details("changeling_powers","FM") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/hivemind.dm b/code/game/gamemodes/changeling/powers/hivemind.dm index c8e5f11604..105de8f4f5 100644 --- a/code/game/gamemodes/changeling/powers/hivemind.dm +++ b/code/game/gamemodes/changeling/powers/hivemind.dm @@ -34,7 +34,7 @@ var/list/datum/dna/hivemind_bank = list() names += DNA.name if(names.len <= 0) - src << "The airwaves already have all of our DNA." + to_chat(src, "The airwaves already have all of our DNA.") return var/S = input("Select a DNA to channel: ", "Channel DNA", null) as null|anything in names @@ -46,7 +46,7 @@ var/list/datum/dna/hivemind_bank = list() changeling.chem_charges -= 10 hivemind_bank += chosen_dna - src << "We channel the DNA of [S] to the air." + to_chat(src, "We channel the DNA of [S] to the air.") feedback_add_details("changeling_powers","HU") return 1 @@ -64,7 +64,7 @@ var/list/datum/dna/hivemind_bank = list() names[DNA.name] = DNA if(names.len <= 0) - src << "There's no new DNA to absorb from the air." + to_chat(src, "There's no new DNA to absorb from the air.") return var/S = input("Select a DNA absorb from the air: ", "Absorb DNA", null) as null|anything in names @@ -75,6 +75,6 @@ var/list/datum/dna/hivemind_bank = list() changeling.chem_charges -= 20 absorbDNA(chosen_dna) - src << "We absorb the DNA of [S] from the air." + to_chat(src, "We absorb the DNA of [S] from the air.") feedback_add_details("changeling_powers","HD") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/lesser_form.dm b/code/game/gamemodes/changeling/powers/lesser_form.dm index f2742490f6..6a5cf80730 100644 --- a/code/game/gamemodes/changeling/powers/lesser_form.dm +++ b/code/game/gamemodes/changeling/powers/lesser_form.dm @@ -13,13 +13,13 @@ if(!changeling) return if(src.has_brain_worms()) - src << "We cannot perform this ability at the present time!" + to_chat(src, "We cannot perform this ability at the present time!") return var/mob/living/carbon/human/H = src if(!istype(H) || !H.species.primitive_form) - src << "We cannot perform this ability in this form!" + to_chat(src, "We cannot perform this ability in this form!") return changeling.chem_charges-- diff --git a/code/game/gamemodes/changeling/powers/mimic_voice.dm b/code/game/gamemodes/changeling/powers/mimic_voice.dm index ae95317683..6b84c577ff 100644 --- a/code/game/gamemodes/changeling/powers/mimic_voice.dm +++ b/code/game/gamemodes/changeling/powers/mimic_voice.dm @@ -19,7 +19,7 @@ if(changeling.mimicing) changeling.mimicing = "" - src << "We return our vocal glands to their original location." + to_chat(src, "We return our vocal glands to their original location.") return var/mimic_voice = sanitize(input(usr, "Enter a name to mimic.", "Mimic Voice", null), MAX_NAME_LEN) @@ -28,8 +28,8 @@ changeling.mimicing = mimic_voice - src << "We shape our glands to take the voice of [mimic_voice], this will stop us from regenerating chemicals while active." - src << "Use this power again to return to our original voice and reproduce chemicals again." + to_chat(src, "We shape our glands to take the voice of [mimic_voice], this will stop us from regenerating chemicals while active.") + to_chat(src, "Use this power again to return to our original voice and reproduce chemicals again.") feedback_add_details("changeling_powers","MV") diff --git a/code/game/gamemodes/changeling/powers/panacea.dm b/code/game/gamemodes/changeling/powers/panacea.dm index 660434d185..30679b6ef5 100644 --- a/code/game/gamemodes/changeling/powers/panacea.dm +++ b/code/game/gamemodes/changeling/powers/panacea.dm @@ -18,7 +18,7 @@ return 0 src.mind.changeling.chem_charges -= 20 - src << "We cleanse impurities from our form." + to_chat(src, "We cleanse impurities from our form.") var/mob/living/carbon/human/C = src @@ -32,7 +32,7 @@ var/heal_amount = 5 if(src.mind.changeling.recursive_enhancement) heal_amount = heal_amount * 2 - src << "We will heal much faster." + to_chat(src, "We will heal much faster.") for(var/i = 0, i<10,i++) if(C) diff --git a/code/game/gamemodes/changeling/powers/rapid_regen.dm b/code/game/gamemodes/changeling/powers/rapid_regen.dm index 2eb628b8f6..6d1e9ee300 100644 --- a/code/game/gamemodes/changeling/powers/rapid_regen.dm +++ b/code/game/gamemodes/changeling/powers/rapid_regen.dm @@ -24,7 +24,7 @@ var/healing_amount = 40 if(src.mind.changeling.recursive_enhancement) healing_amount = C.maxHealth - src << "We completely heal ourselves." + to_chat(src, "We completely heal ourselves.") spawn(0) C.adjustBruteLoss(-healing_amount) C.adjustFireLoss(-healing_amount) diff --git a/code/game/gamemodes/changeling/powers/recursive_enhancement.dm b/code/game/gamemodes/changeling/powers/recursive_enhancement.dm index 9362333c57..77bab9bd99 100644 --- a/code/game/gamemodes/changeling/powers/recursive_enhancement.dm +++ b/code/game/gamemodes/changeling/powers/recursive_enhancement.dm @@ -15,10 +15,10 @@ if(!changeling) return 0 if(src.mind.changeling.recursive_enhancement) - src << "We will no longer empower our abilities." + to_chat(src, "We will no longer empower our abilities.") src.mind.changeling.recursive_enhancement = 0 return 0 - src << "We empower ourselves. Our abilities will now be extra potent." + to_chat(src, "We empower ourselves. Our abilities will now be extra potent.") src.mind.changeling.recursive_enhancement = 1 feedback_add_details("changeling_powers","RE") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/respec.dm b/code/game/gamemodes/changeling/powers/respec.dm index 1387e14999..a50a41269f 100644 --- a/code/game/gamemodes/changeling/powers/respec.dm +++ b/code/game/gamemodes/changeling/powers/respec.dm @@ -26,6 +26,6 @@ H.remove_modifiers_of_type(/datum/modifier/endoarmor) //Revert endoarmor too. src.make_changeling() //And give back our freebies. - src << "We have removed our evolutions from this form, and are now ready to readapt." + to_chat(src, "We have removed our evolutions from this form, and are now ready to readapt.") ling_datum.purchased_powers_history.Add("Re-adapt (Reset to [ling_datum.max_geneticpoints])") diff --git a/code/game/gamemodes/changeling/powers/revive.dm b/code/game/gamemodes/changeling/powers/revive.dm index 7fe4ab232b..0648fa8ab6 100644 --- a/code/game/gamemodes/changeling/powers/revive.dm +++ b/code/game/gamemodes/changeling/powers/revive.dm @@ -9,7 +9,7 @@ return 0 if(changeling.max_geneticpoints < 0) //Absorbed by another ling - src << "You have no genomes, not even your own, and cannot revive." + to_chat(src, "You have no genomes, not even your own, and cannot revive.") return 0 if(src.stat == DEAD) diff --git a/code/game/gamemodes/changeling/powers/self_respiration.dm b/code/game/gamemodes/changeling/powers/self_respiration.dm index 6d6228eba8..5108361669 100644 --- a/code/game/gamemodes/changeling/powers/self_respiration.dm +++ b/code/game/gamemodes/changeling/powers/self_respiration.dm @@ -19,13 +19,13 @@ if(istype(src,/mob/living/carbon)) var/mob/living/carbon/C = src if(C.suiciding) - src << "You're committing suicide, this isn't going to work." + to_chat(src, "You're committing suicide, this isn't going to work.") return 0 if(C.does_not_breathe == 0) C.does_not_breathe = 1 - src << "We stop breathing, as we no longer need to." + to_chat(src, "We stop breathing, as we no longer need to.") return 1 else C.does_not_breathe = 0 - src << "We resume breathing, as we now need to again." + to_chat(src, "We resume breathing, as we now need to again.") return 0 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/shriek.dm b/code/game/gamemodes/changeling/powers/shriek.dm index 4989c27f87..a2b9013c5a 100644 --- a/code/game/gamemodes/changeling/powers/shriek.dm +++ b/code/game/gamemodes/changeling/powers/shriek.dm @@ -95,13 +95,13 @@ if(!changeling) return 0 if(is_muzzled()) - src << "Mmmf mrrfff!" + to_chat(src, "Mmmf mrrfff!") return 0 if(ishuman(src)) var/mob/living/carbon/human/H = src if(H.silent) - src << "You can't speak!" + to_chat(src, "You can't speak!") return 0 if(world.time < (changeling.last_shriek + 10 SECONDS) ) @@ -125,7 +125,7 @@ range_med = range_med * 2 range_light = range_light * 2 range_long = range_long * 2 - src << "We are extra loud." + to_chat(src, "We are extra loud.") src.mind.changeling.recursive_enhancement = 0 visible_message("[src] appears to shout.") diff --git a/code/game/gamemodes/changeling/powers/silence_sting.dm b/code/game/gamemodes/changeling/powers/silence_sting.dm index 334b0c139f..16d24c878f 100644 --- a/code/game/gamemodes/changeling/powers/silence_sting.dm +++ b/code/game/gamemodes/changeling/powers/silence_sting.dm @@ -19,7 +19,7 @@ var/duration = 30 if(src.mind.changeling.recursive_enhancement) duration = duration + 10 - src << "They will be unable to cry out in fear for a little longer." + to_chat(src, "They will be unable to cry out in fear for a little longer.") T.silent += duration feedback_add_details("changeling_powers","SS") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/transform_sting.dm b/code/game/gamemodes/changeling/powers/transform_sting.dm index 678e195e22..1f6bc7b93d 100644 --- a/code/game/gamemodes/changeling/powers/transform_sting.dm +++ b/code/game/gamemodes/changeling/powers/transform_sting.dm @@ -34,7 +34,7 @@ if(!T) return 0 if((HUSK in T.mutations) || (!ishuman(T) && !issmall(T))) - src << "Our sting appears ineffective against its DNA." + to_chat(src, "Our sting appears ineffective against its DNA.") return 0 add_attack_logs(src,T,"Transformation sting (changeling)") T.visible_message("[T] transforms!") diff --git a/code/game/gamemodes/cult/construct_spells.dm b/code/game/gamemodes/cult/construct_spells.dm index 937284629b..534e9aedb9 100644 --- a/code/game/gamemodes/cult/construct_spells.dm +++ b/code/game/gamemodes/cult/construct_spells.dm @@ -192,6 +192,7 @@ proc/findNullRod(var/atom/target) icon_state = "m_shield_cult" light_color = "#B40000" light_range = 2 + invisibility = 0 /obj/effect/forcefield/cult/cultify() return diff --git a/code/game/gamemodes/cult/cult_structures.dm b/code/game/gamemodes/cult/cult_structures.dm index 24c2ed5f52..5c77d6d29f 100644 --- a/code/game/gamemodes/cult/cult_structures.dm +++ b/code/game/gamemodes/cult/cult_structures.dm @@ -26,6 +26,17 @@ light_color = "#3e0000" var/obj/item/wepon = null + var/shatter_message = "The pylon shatters!" + var/impact_sound = 'sound/effects/Glasshit.ogg' + var/shatter_sound = 'sound/effects/Glassbr3.ogg' + + var/activation_cooldown = 30 SECONDS + var/last_activation = 0 + +/obj/structure/cult/pylon/Initialize() + ..() + START_PROCESSING(SSobj, src) + /obj/structure/cult/pylon/attack_hand(mob/M as mob) attackpylon(M, 5) @@ -44,47 +55,58 @@ /obj/structure/cult/pylon/proc/pylonhit(var/damage) if(!isbroken) if(prob(1+ damage * 5)) - visible_message("The pylon shatters!") - playsound(get_turf(src), 'sound/effects/Glassbr3.ogg', 75, 1) + visible_message("[shatter_message]") + STOP_PROCESSING(SSobj, src) + playsound(get_turf(src),shatter_sound, 75, 1) isbroken = 1 density = 0 - icon_state = "pylon-broken" + icon_state = "[initial(icon_state)]-broken" set_light(0) /obj/structure/cult/pylon/proc/attackpylon(mob/user as mob, var/damage) if(!isbroken) if(prob(1+ damage * 5)) user.visible_message( - "[user] smashed the pylon!", - "You hit the pylon, and its crystal breaks apart!", - "You hear a tinkle of crystal shards" + "[user] smashed \the [src]!", + "You hit \the [src], and its crystal breaks apart!", + "You hear a tinkle of crystal shards." ) + STOP_PROCESSING(SSobj, src) user.do_attack_animation(src) - playsound(get_turf(src), 'sound/effects/Glassbr3.ogg', 75, 1) + playsound(get_turf(src),shatter_sound, 75, 1) isbroken = 1 density = 0 - icon_state = "pylon-broken" + icon_state = "[initial(icon_state)]-broken" set_light(0) else - user << "You hit the pylon!" - playsound(get_turf(src), 'sound/effects/Glasshit.ogg', 75, 1) + user << "You hit \the [src]!" + playsound(get_turf(src),impact_sound, 75, 1) else if(prob(damage * 2)) - user << "You pulverize what was left of the pylon!" + user << "You pulverize what was left of \the [src]!" qdel(src) else - user << "You hit the pylon!" - playsound(get_turf(src), 'sound/effects/Glasshit.ogg', 75, 1) - + user << "You hit \the [src]!" + playsound(get_turf(src),impact_sound, 75, 1) /obj/structure/cult/pylon/proc/repair(mob/user as mob) if(isbroken) - user << "You repair the pylon." + START_PROCESSING(SSobj, src) + user << "You repair \the [src]." isbroken = 0 density = 1 - icon_state = "pylon" + icon_state = initial(icon_state) set_light(5) +// Returns 1 if the pylon does something special. +/obj/structure/cult/pylon/proc/pylon_unique() + last_activation = world.time + return 0 + +/obj/structure/cult/pylon/process() + if(!isbroken && (last_activation < world.time + activation_cooldown) && pylon_unique()) + flick("[initial(icon_state)]-surge",src) + /obj/structure/cult/tome name = "Desk" desc = "A desk covered in arcane manuscripts and tomes in unknown languages. Looking at the text makes your skin crawl." @@ -116,6 +138,12 @@ return /obj/effect/gateway/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN spawn(0) return return @@ -148,6 +176,12 @@ qdel(src) /obj/effect/gateway/active/Crossed(var/atom/A) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = A + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(!istype(A, /mob/living)) return diff --git a/code/game/gamemodes/cult/cultify/mob.dm b/code/game/gamemodes/cult/cultify/mob.dm index d78956c40a..0cadd06d6c 100644 --- a/code/game/gamemodes/cult/cultify/mob.dm +++ b/code/game/gamemodes/cult/cultify/mob.dm @@ -12,7 +12,7 @@ icon_state = "ghost-narsie" overlays = 0 invisibility = 0 - src << "Even as a non-corporal being, you can feel Nar-Sie's presence altering you. You are now visible to everyone." + to_chat(src, "Even as a non-corporal being, you can feel Nar-Sie's presence altering you. You are now visible to everyone.") /mob/living/cultify() if(iscultist(src) && client) diff --git a/code/game/gamemodes/gameticker.dm b/code/game/gamemodes/gameticker.dm index 04d8e85363..108c470414 100644 --- a/code/game/gamemodes/gameticker.dm +++ b/code/game/gamemodes/gameticker.dm @@ -425,7 +425,7 @@ var/global/datum/controller/gameticker/ticker for (var/mob/living/silicon/robot/robo in mob_list) - if(istype(robo,/mob/living/silicon/robot/drone)) + if(istype(robo,/mob/living/silicon/robot/drone) && !istype(robo,/mob/living/silicon/robot/drone/swarm)) dronecount++ continue diff --git a/code/game/gamemodes/technomancer/instability.dm b/code/game/gamemodes/technomancer/instability.dm index 7904b5cb6c..6dc3f2d52b 100644 --- a/code/game/gamemodes/technomancer/instability.dm +++ b/code/game/gamemodes/technomancer/instability.dm @@ -122,13 +122,13 @@ electrocute_act(instability * 0.3, "unstable energies", 0.75) if(1) adjustFireLoss(instability * 0.15) //7.5 burn @ 50 instability - src << "Your chassis alerts you to overheating from an unknown external force!" + to_chat(src, "Your chassis alerts you to overheating from an unknown external force!") if(2) adjustBruteLoss(instability * 0.15) //7.5 brute @ 50 instability - src << "Your chassis makes the sound of metal groaning!" + to_chat(src, "Your chassis makes the sound of metal groaning!") if(3) safe_blink(src, range = 6) - src << "You're teleported against your will!" + to_chat(src, "You're teleported against your will!") if(4) emp_act(3) @@ -141,10 +141,10 @@ emp_act(2) if(2) adjustFireLoss(instability * 0.3) //30 burn @ 100 instability - src << "Your chassis alerts you to extreme overheating from an unknown external force!" + to_chat(src, "Your chassis alerts you to extreme overheating from an unknown external force!") if(3) adjustBruteLoss(instability * 0.3) //30 brute @ 100 instability - src << "Your chassis makes the sound of metal groaning and tearing!" + to_chat(src, "Your chassis makes the sound of metal groaning and tearing!") if(101 to 200) //Lethal rng = rand(0,4) @@ -155,10 +155,10 @@ emp_act(1) if(2) adjustFireLoss(instability * 0.4) //40 burn @ 100 instability - src << "Your chassis alerts you to extreme overheating from an unknown external force!" + to_chat(src, "Your chassis alerts you to extreme overheating from an unknown external force!") if(3) adjustBruteLoss(instability * 0.4) //40 brute @ 100 instability - src << "Your chassis makes the sound of metal groaning and tearing!" + to_chat(src, "Your chassis makes the sound of metal groaning and tearing!") /mob/living/carbon/human/instability_effects() if(instability) @@ -190,23 +190,23 @@ if(2) if(can_feel_pain()) apply_effect(instability * 0.3, AGONY) - src << "You feel a sharp pain!" + to_chat(src, "You feel a sharp pain!") if(3) apply_effect(instability * 0.3, EYE_BLUR) - src << "Your eyes start to get cloudy!" + to_chat(src, "Your eyes start to get cloudy!") if(4) electrocute_act(instability * 0.3, "unstable energies") if(5) adjustFireLoss(instability * 0.15) //7.5 burn @ 50 instability - src << "You feel your skin burn!" + to_chat(src, "You feel your skin burn!") if(6) adjustBruteLoss(instability * 0.15) //7.5 brute @ 50 instability - src << "You feel a sharp pain as an unseen force harms your body!" + to_chat(src, "You feel a sharp pain as an unseen force harms your body!") if(7) adjustToxLoss(instability * 0.15) //7.5 tox @ 50 instability if(8) safe_blink(src, range = 6) - src << "You're teleported against your will!" + to_chat(src, "You're teleported against your will!") if(50 to 100) //Severe rng = rand(0,8) @@ -218,18 +218,18 @@ if(2) if(can_feel_pain()) apply_effect(instability * 0.7, AGONY) - src << "You feel an extremly angonizing pain from all over your body!" + to_chat(src, "You feel an extremly angonizing pain from all over your body!") if(3) apply_effect(instability * 0.5, EYE_BLUR) - src << "Your eyes start to get cloudy!" + to_chat(src, "Your eyes start to get cloudy!") if(4) electrocute_act(instability * 0.5, "extremely unstable energies") if(5) fire_act() - src << "You spontaneously combust!" + to_chat(src, "You spontaneously combust!") if(6) adjustCloneLoss(instability * 0.05) //5 cloneloss @ 100 instability - src << "You feel your body slowly degenerate." + to_chat(src, "You feel your body slowly degenerate.") if(7) adjustToxLoss(instability * 0.25) //25 tox @ 100 instability @@ -245,18 +245,18 @@ if(2) if(can_feel_pain()) apply_effect(instability, AGONY) - src << "You feel an extremly angonizing pain from all over your body!" + to_chat(src, "You feel an extremly angonizing pain from all over your body!") if(3) apply_effect(instability, EYE_BLUR) - src << "Your eyes start to get cloudy!" + to_chat(src, "Your eyes start to get cloudy!") if(4) electrocute_act(instability, "extremely unstable energies") if(5) fire_act() - src << "You spontaneously combust!" + to_chat(src, "You spontaneously combust!") if(6) adjustCloneLoss(instability * 0.10) //5 cloneloss @ 100 instability - src << "You feel your body slowly degenerate." + to_chat(src, "You feel your body slowly degenerate.") if(7) adjustToxLoss(instability * 0.40) //40 tox @ 100 instability diff --git a/code/game/gamemodes/technomancer/spell_objs.dm b/code/game/gamemodes/technomancer/spell_objs.dm index 681d29da50..adfeda58ab 100644 --- a/code/game/gamemodes/technomancer/spell_objs.dm +++ b/code/game/gamemodes/technomancer/spell_objs.dm @@ -292,7 +292,7 @@ if(l_spell.aspect == ASPECT_CHROMATIC) //Check the other hand too. l_spell.on_combine_cast(S, src) else //Welp - src << "You require a free hand to use this function." + to_chat(src, "You require a free hand to use this function.") return 0 if(S.run_checks()) diff --git a/code/game/jobs/job/captain.dm b/code/game/jobs/job/captain.dm index f1e0a1b8b2..f98ab11928 100644 --- a/code/game/jobs/job/captain.dm +++ b/code/game/jobs/job/captain.dm @@ -11,7 +11,6 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 1) spawn_positions = 1 supervisors = "company officials and Corporate Regulations" selection_color = "#1D1D4F" - idtype = /obj/item/weapon/card/id/gold req_admin_notify = 1 access = list() //See get_access() minimal_access = list() //See get_access() @@ -44,7 +43,6 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 1) spawn_positions = 1 supervisors = "the Colony Director" selection_color = "#2F2F7F" - idtype = /obj/item/weapon/card/id/silver/hop req_admin_notify = 1 minimal_player_age = 10 economic_modifier = 10 @@ -79,7 +77,6 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 1) spawn_positions = 2 supervisors = "command staff" selection_color = "#2F2F7F" - idtype = /obj/item/weapon/card/id/silver/secretary minimal_player_age = 5 economic_modifier = 7 diff --git a/code/game/jobs/job/civilian.dm b/code/game/jobs/job/civilian.dm index d31a551726..d5a099af8c 100644 --- a/code/game/jobs/job/civilian.dm +++ b/code/game/jobs/job/civilian.dm @@ -9,7 +9,6 @@ spawn_positions = 2 supervisors = "the head of personnel" selection_color = "#515151" - idtype = /obj/item/weapon/card/id/civilian/bartender access = list(access_hydroponics, access_bar, access_kitchen) minimal_access = list(access_bar) @@ -27,7 +26,6 @@ spawn_positions = 2 supervisors = "the head of personnel" selection_color = "#515151" - idtype = /obj/item/weapon/card/id/civilian/chef access = list(access_hydroponics, access_bar, access_kitchen) minimal_access = list(access_kitchen) @@ -44,7 +42,6 @@ spawn_positions = 1 supervisors = "the head of personnel" selection_color = "#515151" - idtype = /obj/item/weapon/card/id/civilian/botanist access = list(access_hydroponics, access_bar, access_kitchen) minimal_access = list(access_hydroponics) @@ -63,7 +60,6 @@ spawn_positions = 1 supervisors = "the head of personnel" selection_color = "#7a4f33" - idtype = /obj/item/weapon/card/id/cargo/head economic_modifier = 5 access = list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_qm, access_mining, access_mining_station) minimal_access = list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_qm, access_mining, access_mining_station) @@ -83,7 +79,6 @@ spawn_positions = 2 supervisors = "the quartermaster and the head of personnel" selection_color = "#9b633e" - idtype = /obj/item/weapon/card/id/cargo/cargo_tech access = list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_mining, access_mining_station) minimal_access = list(access_maint_tunnels, access_cargo, access_cargo_bot, access_mailsorting) @@ -99,7 +94,6 @@ spawn_positions = 3 supervisors = "the quartermaster and the head of personnel" selection_color = "#9b633e" - idtype = /obj/item/weapon/card/id/cargo/mining economic_modifier = 5 access = list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_mining, access_mining_station) minimal_access = list(access_mining, access_mining_station, access_mailsorting) @@ -118,7 +112,6 @@ spawn_positions = 2 supervisors = "the head of personnel" selection_color = "#515151" - idtype = /obj/item/weapon/card/id/civilian/janitor access = list(access_janitor, access_maint_tunnels) minimal_access = list(access_janitor, access_maint_tunnels) @@ -136,7 +129,6 @@ spawn_positions = 1 supervisors = "the head of personnel" selection_color = "#515151" - idtype = /obj/item/weapon/card/id/civilian/librarian access = list(access_library, access_maint_tunnels) minimal_access = list(access_library) @@ -154,7 +146,6 @@ spawn_positions = 2 supervisors = "company officials and Corporate Regulations" selection_color = "#515151" - idtype = /obj/item/weapon/card/id/civilian/internal_affairs_agent economic_modifier = 7 access = list(access_lawyer, access_sec_doors, access_maint_tunnels, access_heads) minimal_access = list(access_lawyer, access_sec_doors, access_heads) diff --git a/code/game/jobs/job/civilian_chaplain.dm b/code/game/jobs/job/civilian_chaplain.dm index 65943380bc..12c2c9419d 100644 --- a/code/game/jobs/job/civilian_chaplain.dm +++ b/code/game/jobs/job/civilian_chaplain.dm @@ -9,7 +9,6 @@ spawn_positions = 1 supervisors = "the head of personnel" selection_color = "#515151" - idtype = /obj/item/weapon/card/id/civilian/chaplain access = list(access_morgue, access_chapel_office, access_crematorium, access_maint_tunnels) minimal_access = list(access_chapel_office, access_crematorium) alt_titles = list("Counselor") diff --git a/code/game/jobs/job/engineering.dm b/code/game/jobs/job/engineering.dm index bbc1903fd4..cfa79ffc25 100644 --- a/code/game/jobs/job/engineering.dm +++ b/code/game/jobs/job/engineering.dm @@ -9,7 +9,6 @@ spawn_positions = 1 supervisors = "the Colony Director" selection_color = "#7F6E2C" - idtype = /obj/item/weapon/card/id/engineering/head req_admin_notify = 1 economic_modifier = 10 @@ -39,7 +38,6 @@ spawn_positions = 5 supervisors = "the chief engineer" selection_color = "#5B4D20" - idtype = /obj/item/weapon/card/id/engineering/engineer economic_modifier = 5 access = list(access_eva, access_engine, access_engine_equip, access_tech_storage, access_maint_tunnels, access_external_airlocks, access_construction, access_atmospherics) minimal_access = list(access_eva, access_engine, access_engine_equip, access_tech_storage, access_maint_tunnels, access_external_airlocks, access_construction) @@ -59,7 +57,6 @@ spawn_positions = 2 supervisors = "the chief engineer" selection_color = "#5B4D20" - idtype = /obj/item/weapon/card/id/engineering/atmos economic_modifier = 5 access = list(access_eva, access_engine, access_engine_equip, access_tech_storage, access_maint_tunnels, access_external_airlocks, access_construction, access_atmospherics, access_external_airlocks) minimal_access = list(access_eva, access_engine, access_atmospherics, access_maint_tunnels, access_emergency_storage, access_construction, access_external_airlocks) diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index f154b02094..d138a0e1c9 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -13,7 +13,6 @@ var/current_positions = 0 // How many players have this job var/supervisors = null // Supervisors, who this person answers to directly var/selection_color = "#ffffff" // Selection screen color - var/idtype = /obj/item/weapon/card/id // The type of the ID the player will have var/list/alt_titles // List of alternate titles, if any var/req_admin_notify // If this is set to 1, a text is printed to the player when jobs are assigned, telling him that he should let admins know that he has to disconnect. var/minimal_player_age = 0 // If you have use_age_restriction_for_jobs config option enabled and the database set up, this option will add a requirement for players to be at least minimal_player_age days old. (meaning they first signed in at least that many days before.) @@ -21,6 +20,7 @@ var/head_position = 0 // Is this position Command? var/minimum_character_age = 0 var/ideal_character_age = 30 + var/has_headset = TRUE //Do people with this job need to be given headsets and told how to use them? E.g. Cyborgs don't. var/account_allowed = 1 // Does this job type come with a station account? var/economic_modifier = 2 // With how much does this job modify the initial account amount? @@ -40,13 +40,6 @@ . = . || outfit_type . = outfit_by_type(.) -/datum/job/proc/equip_backpack(var/mob/living/carbon/human/H) - switch(H.backbag) - if(2) H.equip_to_slot_or_del(new /obj/item/weapon/storage/backpack(H), slot_back) - if(3) H.equip_to_slot_or_del(new /obj/item/weapon/storage/backpack/satchel/norm(H), slot_back) - if(4) H.equip_to_slot_or_del(new /obj/item/weapon/storage/backpack/satchel(H), slot_back) - if(5) H.equip_to_slot_or_del(new /obj/item/weapon/storage/backpack/messenger(H), slot_back) - /datum/job/proc/setup_account(var/mob/living/carbon/human/H) if(!account_allowed || (H.mind && H.mind.initial_account)) return diff --git a/code/game/jobs/job/medical.dm b/code/game/jobs/job/medical.dm index a8e5d6a3fc..c855411303 100644 --- a/code/game/jobs/job/medical.dm +++ b/code/game/jobs/job/medical.dm @@ -9,7 +9,6 @@ spawn_positions = 1 supervisors = "the Colony Director" selection_color = "#026865" - idtype = /obj/item/weapon/card/id/medical/head req_admin_notify = 1 economic_modifier = 10 access = list(access_medical, access_medical_equip, access_morgue, access_genetics, access_heads, @@ -35,7 +34,6 @@ spawn_positions = 3 supervisors = "the chief medical officer" selection_color = "#013D3B" - idtype = /obj/item/weapon/card/id/medical/doctor economic_modifier = 7 access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_chemistry, access_virology, access_genetics, access_eva) minimal_access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_virology, access_eva) @@ -57,7 +55,6 @@ spawn_positions = 2 supervisors = "the chief medical officer" selection_color = "#013D3B" - idtype = /obj/item/weapon/card/id/medical/chemist economic_modifier = 5 access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_chemistry, access_virology, access_genetics) minimal_access = list(access_medical, access_medical_equip, access_chemistry) @@ -78,7 +75,6 @@ spawn_positions = 0 supervisors = "the chief medical officer and research director" selection_color = "#013D3B" - idtype = /obj/item/weapon/card/id/medical/geneticist economic_modifier = 7 access = list(access_medical, access_morgue, access_surgery, access_chemistry, access_virology, access_genetics, access_research) minimal_access = list(access_medical, access_morgue, access_genetics, access_research) @@ -97,7 +93,6 @@ economic_modifier = 5 supervisors = "the chief medical officer" selection_color = "#013D3B" - idtype = /obj/item/weapon/card/id/medical/psychiatrist access = list(access_medical, access_medical_equip, access_morgue, access_psychiatrist) minimal_access = list(access_medical, access_medical_equip, access_psychiatrist) outfit_type = /decl/hierarchy/outfit/job/medical/psychiatrist @@ -113,7 +108,6 @@ spawn_positions = 2 supervisors = "the chief medical officer" selection_color = "#013D3B" - idtype = /obj/item/weapon/card/id/medical/paramedic economic_modifier = 4 access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_chemistry, access_virology, access_eva, access_maint_tunnels, access_external_airlocks, access_psychiatrist) minimal_access = list(access_medical, access_medical_equip, access_morgue, access_eva, access_maint_tunnels, access_external_airlocks) diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm index c65f3413b6..10f8e855ed 100644 --- a/code/game/jobs/job/science.dm +++ b/code/game/jobs/job/science.dm @@ -9,7 +9,6 @@ spawn_positions = 1 supervisors = "the Colony Director" selection_color = "#AD6BAD" - idtype = /obj/item/weapon/card/id/science/head req_admin_notify = 1 economic_modifier = 15 access = list(access_rd, access_heads, access_tox, access_genetics, access_morgue, @@ -39,7 +38,6 @@ spawn_positions = 3 supervisors = "the research director" selection_color = "#633D63" - idtype = /obj/item/weapon/card/id/science/scientist economic_modifier = 7 access = list(access_robotics, access_tox, access_tox_storage, access_research, access_xenobiology, access_xenoarch) minimal_access = list(access_tox, access_tox_storage, access_research, access_xenoarch) @@ -59,7 +57,6 @@ spawn_positions = 2 supervisors = "the research director" selection_color = "#633D63" - idtype = /obj/item/weapon/card/id/science/xenobiologist economic_modifier = 7 access = list(access_robotics, access_tox, access_tox_storage, access_research, access_xenobiology, access_hydroponics) minimal_access = list(access_research, access_xenobiology, access_hydroponics, access_tox_storage) @@ -79,7 +76,6 @@ spawn_positions = 2 supervisors = "research director" selection_color = "#633D63" - idtype = /obj/item/weapon/card/id/science/roboticist economic_modifier = 5 access = list(access_robotics, access_tox, access_tox_storage, access_tech_storage, access_morgue, access_research) //As a job that handles so many corpses, it makes sense for them to have morgue access. minimal_access = list(access_robotics, access_tech_storage, access_morgue, access_research) //As a job that handles so many corpses, it makes sense for them to have morgue access. diff --git a/code/game/jobs/job/security.dm b/code/game/jobs/job/security.dm index 6b753f519c..fccac1a4af 100644 --- a/code/game/jobs/job/security.dm +++ b/code/game/jobs/job/security.dm @@ -9,7 +9,6 @@ spawn_positions = 1 supervisors = "the Colony Director" selection_color = "#8E2929" - idtype = /obj/item/weapon/card/id/security/head req_admin_notify = 1 economic_modifier = 10 access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, @@ -36,7 +35,6 @@ spawn_positions = 1 supervisors = "the head of security" selection_color = "#601C1C" - idtype = /obj/item/weapon/card/id/security/warden economic_modifier = 5 access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_morgue, access_external_airlocks) minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_external_airlocks) @@ -53,7 +51,6 @@ spawn_positions = 2 supervisors = "the head of security" selection_color = "#601C1C" - idtype = /obj/item/weapon/card/id/security/detective access = list(access_security, access_sec_doors, access_forensics_lockers, access_morgue, access_maint_tunnels, access_eva, access_external_airlocks) minimal_access = list(access_security, access_sec_doors, access_forensics_lockers, access_morgue, access_maint_tunnels, access_eva, access_external_airlocks) economic_modifier = 5 @@ -71,7 +68,6 @@ spawn_positions = 4 supervisors = "the head of security" selection_color = "#601C1C" - idtype = /obj/item/weapon/card/id/security/officer economic_modifier = 4 access = list(access_security, access_eva, access_sec_doors, access_brig, access_maint_tunnels, access_morgue, access_external_airlocks) minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_maint_tunnels, access_external_airlocks) diff --git a/code/game/jobs/job/silicon.dm b/code/game/jobs/job/silicon.dm index 1b063894ba..9aed52c023 100644 --- a/code/game/jobs/job/silicon.dm +++ b/code/game/jobs/job/silicon.dm @@ -11,18 +11,11 @@ minimal_player_age = 7 account_allowed = 0 economic_modifier = 0 + has_headset = FALSE /datum/job/ai/equip(var/mob/living/carbon/human/H) if(!H) return 0 return 1 -/* -/datum/job/ai/equip_survival(var/mob/living/carbon/human/H) - if(!H) return 0 - return 1 -*/ -/datum/job/ai/equip_backpack(var/mob/living/carbon/human/H) - if(!H) return 0 - return 1 /datum/job/ai/is_position_available() return (empty_playable_ai_cores.len != 0) @@ -45,19 +38,11 @@ alt_titles = list("Robot", "Drone") account_allowed = 0 economic_modifier = 0 + has_headset = FALSE /datum/job/cyborg/equip(var/mob/living/carbon/human/H) if(!H) return 0 return 1 -/* -/datum/job/cyborg/equip_survival(var/mob/living/carbon/human/H) - if(!H) return 0 - return 1 -*/ -/datum/job/cyborg/equip_backpack(var/mob/living/carbon/human/H) - if(!H) return 0 - return 1 - return 1 /datum/job/cyborg/equip_preview(mob/living/carbon/human/H) H.equip_to_slot_or_del(new /obj/item/clothing/suit/cardborg(H), slot_wear_suit) diff --git a/code/game/jobs/job/special_vr.dm b/code/game/jobs/job/special_vr.dm index afa3b5cf48..8369ebba46 100644 --- a/code/game/jobs/job/special_vr.dm +++ b/code/game/jobs/job/special_vr.dm @@ -7,7 +7,6 @@ spawn_positions = 1 supervisors = "company officials and Corporate Regulations" selection_color = "#1D1D4F" - idtype = /obj/item/weapon/card/id/centcom access = list() minimal_access = list() minimal_player_age = 14 diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index b5d42ba2f6..588ed32677 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -411,8 +411,6 @@ var/global/datum/controller/occupations/job_master //Equip job items. job.setup_account(H) job.equip(H, H.mind ? H.mind.role_alt_title : "") - job.equip_backpack(H) -// job.equip_survival(H) job.apply_fingerprints(H) if(job.title != "Cyborg" && job.title != "AI") H.equip_post_job() @@ -499,9 +497,7 @@ var/global/datum/controller/occupations/job_master if(job.supervisors) H << "As the [alt_title ? alt_title : rank] you answer directly to [job.supervisors]. Special circumstances may change this." - - if(job.idtype) - spawnId(H, rank, alt_title) + if(job.has_headset) H.equip_to_slot_or_del(new /obj/item/device/radio/headset(H), slot_l_ear) H << "To speak on your department's radio channel use :h. For the use of other channels, examine your headset." @@ -543,48 +539,6 @@ var/global/datum/controller/occupations/job_master BITSET(H.hud_updateflag, SPECIALROLE_HUD) return H - - proc/spawnId(var/mob/living/carbon/human/H, rank, title) - if(!H) return 0 - var/obj/item/weapon/card/id/C = H.get_equipped_item(slot_wear_id) - if(istype(C)) return 0 - - var/datum/job/job = null - for(var/datum/job/J in occupations) - if(J.title == rank) - job = J - break - - if(job) - if(job.title == "Cyborg") - return - else - C = new job.idtype(H) - C.access = job.get_access() - else - C = new /obj/item/weapon/card/id(H) - if(C) - C.rank = rank - C.assignment = title ? title : rank - H.set_id_info(C) - - //put the player's account number onto the ID - if(H.mind && H.mind.initial_account) - C.associated_account_number = H.mind.initial_account.account_number - - H.equip_to_slot_or_del(C, slot_wear_id) - -// H.equip_to_slot_or_del(new /obj/item/device/pda(H), slot_belt) - if(locate(/obj/item/device/pda,H)) - var/obj/item/device/pda/pda = locate(/obj/item/device/pda,H) - pda.owner = H.real_name - pda.ownjob = C.assignment - pda.ownrank = C.rank - pda.name = "PDA-[H.real_name] ([pda.ownjob])" - - return 1 - - proc/LoadJobs(jobsfile) //ran during round setup, reads info from jobs.txt -- Urist if(!config.load_jobs_from_txt) return 0 diff --git a/code/game/machinery/bioprinter.dm b/code/game/machinery/bioprinter.dm index 19c790b06b..6c630b3827 100644 --- a/code/game/machinery/bioprinter.dm +++ b/code/game/machinery/bioprinter.dm @@ -156,10 +156,10 @@ if(!choice || printing || (stat & (BROKEN|NOPOWER))) return - if(!can_print(choice)) + if(!can_print(choice, possible_list[choice][2])) return - container.reagents.remove_reagent("biomass", products[choice][2]) + container.reagents.remove_reagent("biomass", possible_list[choice][2]) use_power = 2 printing = 1 @@ -176,7 +176,7 @@ if(!choice || !src || (stat & (BROKEN|NOPOWER))) return - print_organ(choice) + print_organ(possible_list[choice][1]) return @@ -210,10 +210,10 @@ return biomass_count -/obj/machinery/organ_printer/proc/can_print(var/choice) +/obj/machinery/organ_printer/proc/can_print(var/choice, var/masscount = 0) var/biomass = get_biomass_volume() - if(biomass < products[choice][2]) - visible_message("\The [src] displays a warning: 'Not enough biomass. [biomass] stored and [products[choice][2]] needed.'") + if(biomass < masscount) + visible_message("\The [src] displays a warning: 'Not enough biomass. [biomass] stored and [masscount] needed.'") return 0 if(!loaded_dna || !loaded_dna["donor"]) @@ -223,7 +223,7 @@ return 1 /obj/machinery/organ_printer/proc/print_organ(var/choice) - var/new_organ = products[choice][1] + var/new_organ = choice var/obj/item/organ/O = new new_organ(get_turf(src)) O.status |= ORGAN_CUT_AWAY var/mob/living/carbon/human/C = loaded_dna["donor"] diff --git a/code/game/machinery/camera/tracking.dm b/code/game/machinery/camera/tracking.dm index 4f6b7df94f..a1c954df00 100644 --- a/code/game/machinery/camera/tracking.dm +++ b/code/game/machinery/camera/tracking.dm @@ -47,24 +47,24 @@ loc = sanitize(loc) if(!loc) - src << "Must supply a location name" + to_chat(src, "Must supply a location name") return if(stored_locations.len >= max_locations) - src << "Cannot store additional locations. Remove one first" + to_chat(src, "Cannot store additional locations. Remove one first") return if(loc in stored_locations) - src << "There is already a stored location by this name" + to_chat(src, "There is already a stored location by this name") return var/L = src.eyeobj.getLoc() if (InvalidPlayerTurf(get_turf(L))) - src << "Unable to store this location" + to_chat(src, "Unable to store this location") return stored_locations[loc] = L - src << "Location '[loc]' stored" + to_chat(src, "Location '[loc]' stored") /mob/living/silicon/ai/proc/sorted_stored_locations() return sortList(stored_locations) @@ -75,7 +75,7 @@ set desc = "Returns to the selected camera location" if (!(loc in stored_locations)) - src << "Location [loc] not found" + to_chat(src, "Location [loc] not found") return var/L = stored_locations[loc] @@ -87,11 +87,11 @@ set desc = "Deletes the selected camera location" if (!(loc in stored_locations)) - src << "Location [loc] not found" + to_chat(src, "Location [loc] not found") return stored_locations.Remove(loc) - src << "Location [loc] removed" + to_chat(src, "Location [loc] removed") // Used to allow the AI is write in mob names/camera name from the CMD line. /datum/trackable @@ -134,7 +134,7 @@ set desc = "Select who you would like to track." if(src.stat == 2) - src << "You can't follow [target_name] with cameras because you are dead!" + to_chat(src, "You can't follow [target_name] with cameras because you are dead!") return if(!target_name) src.cameraFollow = null @@ -147,7 +147,7 @@ if(!cameraFollow) return - src << "Follow camera mode [forced ? "terminated" : "ended"]." + to_chat(src, "Follow camera mode [forced ? "terminated" : "ended"].") cameraFollow.tracking_cancelled() cameraFollow = null @@ -266,14 +266,14 @@ mob/living/proc/tracking_initiated() mob/living/silicon/robot/tracking_initiated() tracking_entities++ if(tracking_entities == 1 && has_zeroth_law()) - src << "Internal camera is currently being accessed." + to_chat(src, "Internal camera is currently being accessed.") mob/living/proc/tracking_cancelled() mob/living/silicon/robot/tracking_initiated() tracking_entities-- if(!tracking_entities && has_zeroth_law()) - src << "Internal camera is no longer being accessed." + to_chat(src, "Internal camera is no longer being accessed.") #undef TRACKING_POSSIBLE diff --git a/code/game/machinery/doors/brigdoors.dm b/code/game/machinery/doors/brigdoors.dm index 7e25bb2df9..a15887cc58 100644 --- a/code/game/machinery/doors/brigdoors.dm +++ b/code/game/machinery/doors/brigdoors.dm @@ -314,7 +314,7 @@ //Stolen from status_display /obj/machinery/door_timer/proc/texticon(var/tn, var/px = 0, var/py = 0) var/image/I = image('icons/obj/status_display.dmi', "blank") - var/len = lentext(tn) + var/len = length(tn) for(var/d = 1 to len) var/char = copytext(tn, len-d+1, len-d+2) diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index a8c9492e23..f2d87edb0d 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -586,7 +586,7 @@ var/electrified = 0 //Departments that the cycler can paint suits to look like. - var/list/departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Emergency Medical Response","Crowd Control") + var/list/departments = list("Engineering","Mining","Medical","Security","Atmos","HAZMAT","Construction","Biohazard","Emergency Medical Response","Crowd Control","Exploration","Pilot Blue","Pilot") //VORESTATION EDIT //Species that the suits can be configured to fit. var/list/species = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_UNATHI,SPECIES_TAJ, SPECIES_TESHARI, "Nevrean", "Akula", "Sergal", "Flatland Zorren", "Highlander Zorren", "Vulpkanin", "Promethean", "Xenomorph Hybrid", "Xenochimera","Vasilissan", "Rapala") //VORESTATION EDIT diff --git a/code/game/machinery/supply_display.dm b/code/game/machinery/supply_display.dm index d1be70e754..211918c5e6 100644 --- a/code/game/machinery/supply_display.dm +++ b/code/game/machinery/supply_display.dm @@ -11,7 +11,7 @@ message2 = "Error" else if(shuttle.has_arrive_time()) message2 = get_supply_shuttle_timer() - if(lentext(message2) > CHARS_PER_LINE) + if(length(message2) > CHARS_PER_LINE) message2 = "Error" else if(shuttle.is_launching()) if(shuttle.at_station()) diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 663230b11f..e58568e35c 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -752,7 +752,7 @@ vend_power_usage = 85000 //85 kJ to heat a 250 mL cup of coffee products = list(/obj/item/weapon/reagent_containers/food/drinks/coffee = 25,/obj/item/weapon/reagent_containers/food/drinks/tea = 25,/obj/item/weapon/reagent_containers/food/drinks/h_chocolate = 25) contraband = list(/obj/item/weapon/reagent_containers/food/drinks/ice = 10) - prices = list(/obj/item/weapon/reagent_containers/food/drinks/coffee = 3, /obj/item/weapon/reagent_containers/food/drinks/tea = 3, /obj/item/weapon/reagent_containers/food/drinks/h_chocolate = 3) + prices = list(/obj/item/weapon/reagent_containers/food/drinks/coffee = 2, /obj/item/weapon/reagent_containers/food/drinks/tea = 2, /obj/item/weapon/reagent_containers/food/drinks/h_chocolate = 2) //VOREStation Edit /obj/machinery/vending/snack name = "Getmore Chocolate Corp" @@ -764,14 +764,17 @@ /obj/item/weapon/reagent_containers/food/snacks/sosjerky = 6,/obj/item/weapon/reagent_containers/food/snacks/no_raisin = 6,/obj/item/weapon/reagent_containers/food/snacks/spacetwinkie = 6, /obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers = 6, /obj/item/weapon/reagent_containers/food/snacks/tastybread = 6, /obj/item/weapon/reagent_containers/food/snacks/skrellsnacks = 3) contraband = list(/obj/item/weapon/reagent_containers/food/snacks/syndicake = 6,/obj/item/weapon/reagent_containers/food/snacks/unajerky = 6,) - prices = list(/obj/item/weapon/reagent_containers/food/snacks/candy = 1,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen = 5,/obj/item/weapon/reagent_containers/food/snacks/chips = 1, + //VOREStation Edit Start + prices = list(/obj/item/weapon/reagent_containers/food/snacks/candy = 1,/obj/item/weapon/reagent_containers/food/drinks/dry_ramen = 2,/obj/item/weapon/reagent_containers/food/snacks/chips = 1, /obj/item/weapon/reagent_containers/food/snacks/sosjerky = 2,/obj/item/weapon/reagent_containers/food/snacks/no_raisin = 1,/obj/item/weapon/reagent_containers/food/snacks/spacetwinkie = 1, - /obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers = 1, /obj/item/weapon/reagent_containers/food/snacks/tastybread = 2, /obj/item/weapon/reagent_containers/food/snacks/skrellsnacks = 4) - + /obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers = 1, /obj/item/weapon/reagent_containers/food/snacks/tastybread = 2, /obj/item/weapon/reagent_containers/food/snacks/skrellsnacks = 2) + //VOREStation Edit End + /obj/machinery/vending/cola name = "Robust Softdrinks" desc = "A softdrink vendor provided by Robust Industries, LLC." icon_state = "Cola_Machine" //VOREStation Edit + icon_vend = "Cola_Machine-purchase" //VOREStation Edit product_slogans = "Robust Softdrinks: More robust than a toolbox to the head!" product_ads = "Refreshing!;Hope you're thirsty!;Over 1 million drinks sold!;Thirsty? Why not cola?;Please, have a drink!;Drink up!;The best drinks in space." products = list(/obj/item/weapon/reagent_containers/food/drinks/cans/cola = 10,/obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind = 10, @@ -793,7 +796,7 @@ icon_state = "fitness" products = list(/obj/item/weapon/reagent_containers/food/drinks/smallmilk = 8, /obj/item/weapon/reagent_containers/food/drinks/smallchocmilk = 8, - /obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake = 8, + /obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake = 16, //VOREStation Edit, /obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask = 8, /obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar = 8, /obj/item/weapon/reagent_containers/food/snacks/liquidfood = 8, @@ -801,15 +804,17 @@ ///obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, //VOREStation Removal, /obj/item/weapon/towel/random = 8) + //VOREStation Edit Start prices = list(/obj/item/weapon/reagent_containers/food/drinks/smallmilk = 3, /obj/item/weapon/reagent_containers/food/drinks/smallchocmilk = 3, - /obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake = 40, //VOREStation Edit, - /obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask = 5, + /obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask/proteinshake = 15, + /obj/item/weapon/reagent_containers/food/drinks/glass2/fitnessflask = 1, /obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar = 5, /obj/item/weapon/reagent_containers/food/snacks/liquidfood = 5, /obj/item/weapon/reagent_containers/pill/diet = 25, - ///obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, //VOREStation Removal, - /obj/item/weapon/towel/random = 40) + ///obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose = 5, + /obj/item/weapon/towel/random = 20) + //VOREStation Edit End contraband = list(/obj/item/weapon/reagent_containers/syringe/steroid = 4) diff --git a/code/game/machinery/vending_vr.dm b/code/game/machinery/vending_vr.dm index 0bf7b94714..8ccc64bdaf 100644 --- a/code/game/machinery/vending_vr.dm +++ b/code/game/machinery/vending_vr.dm @@ -129,7 +129,7 @@ /obj/machinery/vending/fitness/New() products += list(/obj/item/weapon/reagent_containers/food/snacks/liquidprotein = 8) - prices += list(/obj/item/weapon/reagent_containers/food/snacks/liquidprotein = 10) + prices += list(/obj/item/weapon/reagent_containers/food/snacks/liquidprotein = 5) ..() /obj/machinery/vending/blood @@ -145,4 +145,1104 @@ /obj/item/weapon/reagent_containers/blood/empty = 5) contraband = list(/obj/item/weapon/reagent_containers/glass/bottle/stoxin = 2) req_log_access = access_cmo - has_logs = 1 \ No newline at end of file + has_logs = 1 + +/obj/machinery/vending/loadout + name = "Fingers and Toes" + desc = "A special vendor for gloves and shoes!" + product_ads = "Do you have fingers and toes? COVER THEM UP!;Show me your toes! Wait. NO DON'T! BUY NEW SHOES!;Don't leave prints, BUY SOME GLOVES!;Remember to check your shoes for micros! You don't have to let them out, but just check for them!;Fingers and Toes is not liable for micro entrapment or abuse under the feet of our patrons.!;This little piggy went WE WE WE all the way down to FINGERS AND TOES to pick up some sweet new gloves and shoes." + icon_state = "glovesnshoes" + products = list(/obj/item/clothing/gloves/evening = 5, + /obj/item/clothing/gloves/fingerless = 5, + /obj/item/clothing/gloves/black = 5, + /obj/item/clothing/gloves/blue = 5, + /obj/item/clothing/gloves/brown = 5, + /obj/item/clothing/gloves/color = 5, + /obj/item/clothing/gloves/green = 5, + /obj/item/clothing/gloves/grey = 5, + /obj/item/clothing/gloves/sterile/latex = 5, + /obj/item/clothing/gloves/light_brown = 5, + /obj/item/clothing/gloves/sterile/nitrile = 5, + /obj/item/clothing/gloves/orange = 5, + /obj/item/clothing/gloves/purple = 5, + /obj/item/clothing/gloves/red = 5, + /obj/item/clothing/gloves/fluff/siren = 5, + /obj/item/clothing/gloves/white = 5, + /obj/item/clothing/gloves/duty = 5, + /obj/item/clothing/shoes/athletic = 5, + /obj/item/clothing/shoes/boots/fluff/siren = 5, + /obj/item/clothing/shoes/slippers = 5, + /obj/item/clothing/shoes/boots/cowboy/classic = 5, + /obj/item/clothing/shoes/boots/cowboy = 5, + /obj/item/clothing/shoes/boots/duty = 5, + /obj/item/clothing/shoes/flats/white/color = 5, + /obj/item/clothing/shoes/flipflop = 5, + /obj/item/clothing/shoes/heels = 5, + /obj/item/clothing/shoes/hitops/black = 5, + /obj/item/clothing/shoes/hitops/blue = 5, + /obj/item/clothing/shoes/hitops/green = 5, + /obj/item/clothing/shoes/hitops/orange = 5, + /obj/item/clothing/shoes/hitops/purple = 5, + /obj/item/clothing/shoes/hitops/red = 5, + /obj/item/clothing/shoes/flats/white/color = 5, + /obj/item/clothing/shoes/hitops/yellow = 5, + /obj/item/clothing/shoes/boots/jackboots = 5, + /obj/item/clothing/shoes/boots/jungle = 5, + /obj/item/clothing/shoes/black/cuffs = 5, + /obj/item/clothing/shoes/black/cuffs/blue = 5, + /obj/item/clothing/shoes/black/cuffs/red = 5, + /obj/item/clothing/shoes/sandal = 5, + /obj/item/clothing/shoes/black = 5, + /obj/item/clothing/shoes/blue = 5, + /obj/item/clothing/shoes/brown = 5, + /obj/item/clothing/shoes/laceup = 5, + /obj/item/clothing/shoes/green = 5, + /obj/item/clothing/shoes/leather = 5, + /obj/item/clothing/shoes/orange = 5, + /obj/item/clothing/shoes/purple = 5, + /obj/item/clothing/shoes/red = 5, + /obj/item/clothing/shoes/white = 5, + /obj/item/clothing/shoes/yellow = 5, + /obj/item/clothing/shoes/skater = 5, + /obj/item/clothing/shoes/boots/cowboy/snakeskin = 5, + /obj/item/clothing/shoes/boots/jackboots/toeless = 5, + /obj/item/clothing/shoes/boots/workboots/toeless = 5, + /obj/item/clothing/shoes/boots/winter = 5, + /obj/item/clothing/shoes/boots/workboots = 5, + /obj/item/clothing/shoes/footwraps = 5) + prices = list(/obj/item/clothing/gloves/evening = 200, + /obj/item/clothing/gloves/fingerless = 200, + /obj/item/clothing/gloves/black = 200, + /obj/item/clothing/gloves/blue = 200, + /obj/item/clothing/gloves/brown = 200, + /obj/item/clothing/gloves/color = 200, + /obj/item/clothing/gloves/green = 200, + /obj/item/clothing/gloves/grey = 200, + /obj/item/clothing/gloves/sterile/latex = 200, + /obj/item/clothing/gloves/light_brown = 200, + /obj/item/clothing/gloves/sterile/nitrile = 200, + /obj/item/clothing/gloves/orange = 200, + /obj/item/clothing/gloves/purple = 200, + /obj/item/clothing/gloves/red = 200, + /obj/item/clothing/gloves/fluff/siren = 200, + /obj/item/clothing/gloves/white = 200, + /obj/item/clothing/gloves/duty = 200, + /obj/item/clothing/shoes/athletic = 100, + /obj/item/clothing/shoes/boots/fluff/siren = 100, + /obj/item/clothing/shoes/slippers = 100, + /obj/item/clothing/shoes/boots/cowboy/classic = 100, + /obj/item/clothing/shoes/boots/cowboy = 100, + /obj/item/clothing/shoes/boots/duty = 200, + /obj/item/clothing/shoes/flats/white/color = 100, + /obj/item/clothing/shoes/flipflop = 100, + /obj/item/clothing/shoes/heels = 100, + /obj/item/clothing/shoes/hitops/black = 100, + /obj/item/clothing/shoes/hitops/blue = 100, + /obj/item/clothing/shoes/hitops/green = 100, + /obj/item/clothing/shoes/hitops/orange = 100, + /obj/item/clothing/shoes/hitops/purple = 100, + /obj/item/clothing/shoes/hitops/red = 100, + /obj/item/clothing/shoes/flats/white/color = 100, + /obj/item/clothing/shoes/hitops/yellow = 100, + /obj/item/clothing/shoes/boots/jackboots = 100, + /obj/item/clothing/shoes/boots/jungle = 200, + /obj/item/clothing/shoes/black/cuffs = 100, + /obj/item/clothing/shoes/black/cuffs/blue = 100, + /obj/item/clothing/shoes/black/cuffs/red = 100, + /obj/item/clothing/shoes/sandal = 100, + /obj/item/clothing/shoes/black = 100, + /obj/item/clothing/shoes/blue = 100, + /obj/item/clothing/shoes/brown = 100, + /obj/item/clothing/shoes/laceup = 100, + /obj/item/clothing/shoes/green = 100, + /obj/item/clothing/shoes/leather = 100, + /obj/item/clothing/shoes/orange = 100, + /obj/item/clothing/shoes/purple = 100, + /obj/item/clothing/shoes/red = 100, + /obj/item/clothing/shoes/white = 100, + /obj/item/clothing/shoes/yellow = 100, + /obj/item/clothing/shoes/skater = 100, + /obj/item/clothing/shoes/boots/cowboy/snakeskin = 100, + /obj/item/clothing/shoes/boots/jackboots/toeless = 100, + /obj/item/clothing/shoes/boots/workboots/toeless = 100, + /obj/item/clothing/shoes/boots/winter = 100, + /obj/item/clothing/shoes/boots/workboots = 100, + /obj/item/clothing/shoes/footwraps = 100) + premium = list(/obj/item/clothing/gloves/rainbow = 1, + /obj/item/clothing/shoes/rainbow = 1,) + contraband = list(/obj/item/clothing/shoes/syndigaloshes = 1, + /obj/item/clothing/shoes/clown_shoes = 1) +/obj/machinery/vending/loadout/uniform + name = "The Basics" + desc = "A vendor using compressed matter cartridges to store large amounts of basic station uniforms." + product_ads = "Don't get caught naked!;Pick up your uniform!;Using compressed matter cartridges and VERY ETHICAL labor practices, we bring you the uniforms you need!;No uniform? No problem!;We've got your covered!;The Basics is not responsible for being crushed under the amount of things inside our machines. DO NOT VEND IN EXCESS!!" + icon_state = "loadout" + icon_vend = "loadout-purchase" + vend_delay = 16 + products = list(/obj/item/device/pda = 50, + /obj/item/device/radio/headset = 50, + /obj/item/weapon/storage/backpack/ = 10, + /obj/item/weapon/storage/backpack/messenger = 10, + /obj/item/weapon/storage/backpack/satchel = 10, + /obj/item/clothing/under/color = 5, + /obj/item/clothing/under/color/aqua = 5, + /obj/item/clothing/under/color/black = 5, + /obj/item/clothing/under/color/blackjumpskirt = 5, + /obj/item/clothing/under/color/blue = 5, + /obj/item/clothing/under/color/brown = 5, + /obj/item/clothing/under/color/green = 5, + /obj/item/clothing/under/color/grey = 5, + /obj/item/clothing/under/color/orange = 5, + /obj/item/clothing/under/color/pink = 5, + /obj/item/clothing/under/color/red = 5, + /obj/item/clothing/under/color/white = 5, + /obj/item/clothing/under/color/yellow = 5, + /obj/item/clothing/shoes/black = 20, + /obj/item/clothing/shoes/white = 20) +/obj/machinery/vending/loadout/accessory + name = "Looty Inc." + desc = "A special vendor for accessories." + product_ads = "Want shinies? We have the shinies.;Need that special something to complete your outfit? We have what you need!;Ditch that old dull dangly something you've got and pick up one of our shinies!;Bracelets, collars, scarfs rings and more! We have the fancy things you need!;Does your pet need a collar? We don't judge! Keep them in line with one of one of ours!;Top of the line materials! 'Hand crafted' goods!" + icon_state = "accessory" + icon_vend = "accessory-purchase" + vend_delay = 6 + products = list(/obj/item/clothing/accessory = 5, + /obj/item/clothing/accessory/armband/med/color = 10, + /obj/item/clothing/accessory/asymmetric = 5, + /obj/item/clothing/accessory/asymmetric/purple = 5, + /obj/item/clothing/accessory/asymmetric/green = 5, + /obj/item/clothing/accessory/bracelet = 5, + /obj/item/clothing/accessory/bracelet/material = 5, + /obj/item/clothing/accessory/bracelet/friendship = 5, + /obj/item/clothing/accessory/chaps = 5, + /obj/item/clothing/accessory/chaps/black = 5, + /obj/item/weapon/storage/briefcase/clutch = 1, + /obj/item/clothing/accessory/collar = 5, + /obj/item/clothing/accessory/collar/bell = 5, + /obj/item/clothing/accessory/collar/spike = 5, + /obj/item/clothing/accessory/collar/pink = 5, + /obj/item/clothing/accessory/collar/holo = 5, + /obj/item/clothing/accessory/collar/shock = 5, + /obj/item/weapon/storage/belt/fannypack = 1, + /obj/item/weapon/storage/belt/fannypack/white = 5, + /obj/item/clothing/accessory/fullcape = 5, + /obj/item/clothing/accessory/halfcape = 5, + /obj/item/clothing/accessory/hawaii = 5, + /obj/item/clothing/accessory/hawaii/random = 5, + /obj/item/clothing/accessory/locket = 5, + /obj/item/weapon/storage/backpack/purse = 1, + /obj/item/clothing/accessory/sash = 5, + /obj/item/clothing/accessory/scarf = 5, + /obj/item/clothing/accessory/scarf/red = 5, + /obj/item/clothing/accessory/scarf/darkblue = 5, + /obj/item/clothing/accessory/scarf/purple = 5, + /obj/item/clothing/accessory/scarf/yellow = 5, + /obj/item/clothing/accessory/scarf/orange = 5, + /obj/item/clothing/accessory/scarf/lightblue = 5, + /obj/item/clothing/accessory/scarf/white = 5, + /obj/item/clothing/accessory/scarf/black = 5, + /obj/item/clothing/accessory/scarf/zebra = 5, + /obj/item/clothing/accessory/scarf/christmas = 5, + /obj/item/clothing/accessory/scarf/stripedred = 5, + /obj/item/clothing/accessory/scarf/stripedgreen = 5, + /obj/item/clothing/accessory/scarf/stripedblue = 5, + /obj/item/clothing/accessory/jacket = 5, + /obj/item/clothing/accessory/jacket/checkered = 5, + /obj/item/clothing/accessory/jacket/burgundy = 5, + /obj/item/clothing/accessory/jacket/navy = 5, + /obj/item/clothing/accessory/jacket/charcoal = 5, + /obj/item/clothing/accessory/vest = 5, + /obj/item/clothing/accessory/sweater = 5, + /obj/item/clothing/accessory/sweater/pink = 5, + /obj/item/clothing/accessory/sweater/mint = 5, + /obj/item/clothing/accessory/sweater/blue = 5, + /obj/item/clothing/accessory/sweater/heart = 5, + /obj/item/clothing/accessory/sweater/nt = 5, + /obj/item/clothing/accessory/sweater/keyhole = 5, + /obj/item/clothing/accessory/sweater/winterneck = 5, + /obj/item/clothing/accessory/sweater/uglyxmas = 5, + /obj/item/clothing/accessory/sweater/flowersweater = 5, + /obj/item/clothing/accessory/sweater/redneck = 5, + /obj/item/clothing/accessory/tie = 5, + /obj/item/clothing/accessory/tie/horrible = 5, + /obj/item/clothing/accessory/tie/white = 5, + /obj/item/clothing/accessory/tie/navy = 5, + /obj/item/clothing/accessory/tie/yellow = 5, + /obj/item/clothing/accessory/tie/darkgreen = 5, + /obj/item/clothing/accessory/tie/black = 5, + /obj/item/clothing/accessory/tie/red_long = 5, + /obj/item/clothing/accessory/tie/red_clip = 5, + /obj/item/clothing/accessory/tie/blue_long = 5, + /obj/item/clothing/accessory/tie/blue_clip = 5, + /obj/item/clothing/accessory/tie/red = 5, + /obj/item/clothing/accessory/wcoat = 5, + /obj/item/clothing/accessory/wcoat/red = 5, + /obj/item/clothing/accessory/wcoat/grey = 5, + /obj/item/clothing/accessory/wcoat/brown = 5, + /obj/item/clothing/accessory/wcoat/gentleman = 5, + /obj/item/clothing/accessory/wcoat/swvest = 5, + /obj/item/clothing/accessory/wcoat/swvest/blue = 5, + /obj/item/clothing/accessory/wcoat/swvest/red = 5, + /obj/item/weapon/storage/wallet = 5, + /obj/item/weapon/storage/wallet/poly = 5, + /obj/item/weapon/storage/wallet/womens = 5, + /obj/item/weapon/lipstick = 5, + /obj/item/weapon/lipstick/purple = 5, + /obj/item/weapon/lipstick/jade = 5, + /obj/item/weapon/lipstick/black = 5, + /obj/item/clothing/ears/earmuffs = 5, + /obj/item/clothing/ears/earmuffs/headphones = 5, + /obj/item/clothing/ears/earring/stud = 5, + /obj/item/clothing/ears/earring/dangle = 5, + /obj/item/clothing/gloves/ring/mariner = 5, + /obj/item/clothing/gloves/ring/engagement = 5, + /obj/item/clothing/gloves/ring/seal/signet = 5, + /obj/item/clothing/gloves/ring/seal/mason = 5, + /obj/item/clothing/gloves/ring/material/plastic = 5, + /obj/item/clothing/gloves/ring/material/steel = 5, + /obj/item/clothing/gloves/ring/material/gold = 5, + /obj/item/clothing/glasses/eyepatch = 5, + /obj/item/clothing/glasses/gglasses = 5, + /obj/item/clothing/glasses/regular/hipster = 5, + /obj/item/clothing/glasses/rimless = 5, + /obj/item/clothing/glasses/thin = 5, + /obj/item/clothing/glasses/monocle = 5, + /obj/item/clothing/glasses/goggles = 5, + /obj/item/clothing/glasses/fluff/spiffygogs = 5, + /obj/item/clothing/glasses/fakesunglasses = 5, + /obj/item/clothing/glasses/fakesunglasses/aviator = 5, + /obj/item/clothing/mask/bandana/blue = 5, + /obj/item/clothing/mask/bandana/gold = 5, + /obj/item/clothing/mask/bandana/green = 5, + /obj/item/clothing/mask/bandana/red = 5, + /obj/item/clothing/mask/surgical = 5) + prices = list(/obj/item/clothing/accessory = 100, + /obj/item/clothing/accessory/armband/med/color = 100, + /obj/item/clothing/accessory/asymmetric = 100, + /obj/item/clothing/accessory/asymmetric/purple = 100, + /obj/item/clothing/accessory/asymmetric/green = 100, + /obj/item/clothing/accessory/bracelet = 100, + /obj/item/clothing/accessory/bracelet/material = 100, + /obj/item/clothing/accessory/bracelet/friendship = 100, + /obj/item/clothing/accessory/chaps = 100, + /obj/item/clothing/accessory/chaps/black = 100, + /obj/item/weapon/storage/briefcase/clutch = 100, + /obj/item/clothing/accessory/collar = 100, + /obj/item/clothing/accessory/collar/bell = 100, + /obj/item/clothing/accessory/collar/spike = 100, + /obj/item/clothing/accessory/collar/pink = 100, + /obj/item/clothing/accessory/collar/holo = 100, + /obj/item/clothing/accessory/collar/shock = 100, + /obj/item/weapon/storage/belt/fannypack = 100, + /obj/item/weapon/storage/belt/fannypack/white = 100, + /obj/item/clothing/accessory/fullcape = 100, + /obj/item/clothing/accessory/halfcape = 100, + /obj/item/clothing/accessory/hawaii = 100, + /obj/item/clothing/accessory/hawaii/random = 100, + /obj/item/clothing/accessory/locket = 100, + /obj/item/weapon/storage/backpack/purse = 100, + /obj/item/clothing/accessory/sash = 100, + /obj/item/clothing/accessory/scarf = 5, + /obj/item/clothing/accessory/scarf/red = 100, + /obj/item/clothing/accessory/scarf/darkblue = 100, + /obj/item/clothing/accessory/scarf/purple = 100, + /obj/item/clothing/accessory/scarf/yellow = 100, + /obj/item/clothing/accessory/scarf/orange = 100, + /obj/item/clothing/accessory/scarf/lightblue = 100, + /obj/item/clothing/accessory/scarf/white = 100, + /obj/item/clothing/accessory/scarf/black = 100, + /obj/item/clothing/accessory/scarf/zebra = 100, + /obj/item/clothing/accessory/scarf/christmas = 100, + /obj/item/clothing/accessory/scarf/stripedred = 100, + /obj/item/clothing/accessory/scarf/stripedgreen = 100, + /obj/item/clothing/accessory/scarf/stripedblue = 100, + /obj/item/clothing/accessory/jacket = 100, + /obj/item/clothing/accessory/jacket/checkered = 100, + /obj/item/clothing/accessory/jacket/burgundy = 100, + /obj/item/clothing/accessory/jacket/navy = 100, + /obj/item/clothing/accessory/jacket/charcoal = 100, + /obj/item/clothing/accessory/vest = 100, + /obj/item/clothing/accessory/sweater = 100, + /obj/item/clothing/accessory/sweater/pink = 100, + /obj/item/clothing/accessory/sweater/mint = 100, + /obj/item/clothing/accessory/sweater/blue = 100, + /obj/item/clothing/accessory/sweater/heart = 100, + /obj/item/clothing/accessory/sweater/nt = 5, + /obj/item/clothing/accessory/sweater/keyhole = 100, + /obj/item/clothing/accessory/sweater/winterneck = 100, + /obj/item/clothing/accessory/sweater/uglyxmas = 5, + /obj/item/clothing/accessory/sweater/flowersweater = 100, + /obj/item/clothing/accessory/sweater/redneck = 100, + /obj/item/clothing/accessory/tie = 100, + /obj/item/clothing/accessory/tie/horrible = 100, + /obj/item/clothing/accessory/tie/white = 100, + /obj/item/clothing/accessory/tie/navy = 100, + /obj/item/clothing/accessory/tie/yellow = 100, + /obj/item/clothing/accessory/tie/darkgreen = 100, + /obj/item/clothing/accessory/tie/black = 100, + /obj/item/clothing/accessory/tie/red_long = 100, + /obj/item/clothing/accessory/tie/red_clip = 100, + /obj/item/clothing/accessory/tie/blue_long = 100, + /obj/item/clothing/accessory/tie/blue_clip = 100, + /obj/item/clothing/accessory/tie/red = 100, + /obj/item/clothing/accessory/wcoat = 100, + /obj/item/clothing/accessory/wcoat/red = 100, + /obj/item/clothing/accessory/wcoat/grey = 100, + /obj/item/clothing/accessory/wcoat/brown = 100, + /obj/item/clothing/accessory/wcoat/gentleman = 100, + /obj/item/clothing/accessory/wcoat/swvest = 100, + /obj/item/clothing/accessory/wcoat/swvest/blue = 100, + /obj/item/clothing/accessory/wcoat/swvest/red = 100, + /obj/item/weapon/storage/wallet = 100, + /obj/item/weapon/storage/wallet/poly = 100, + /obj/item/weapon/storage/wallet/womens = 100, + /obj/item/weapon/lipstick = 100, + /obj/item/weapon/lipstick/purple = 100, + /obj/item/weapon/lipstick/jade = 100, + /obj/item/weapon/lipstick/black = 100, + /obj/item/clothing/ears/earmuffs = 100, + /obj/item/clothing/ears/earmuffs/headphones = 100, + /obj/item/clothing/ears/earring/stud = 100, + /obj/item/clothing/ears/earring/dangle = 100, + /obj/item/clothing/gloves/ring/mariner = 100, + /obj/item/clothing/gloves/ring/engagement = 100, + /obj/item/clothing/gloves/ring/seal/signet = 100, + /obj/item/clothing/gloves/ring/seal/mason = 100, + /obj/item/clothing/gloves/ring/material/plastic = 100, + /obj/item/clothing/gloves/ring/material/steel = 100, + /obj/item/clothing/gloves/ring/material/gold = 500, + /obj/item/clothing/glasses/eyepatch = 100, + /obj/item/clothing/glasses/gglasses = 100, + /obj/item/clothing/glasses/regular/hipster = 100, + /obj/item/clothing/glasses/rimless = 100, + /obj/item/clothing/glasses/thin = 100, + /obj/item/clothing/glasses/monocle = 100, + /obj/item/clothing/glasses/goggles = 100, + /obj/item/clothing/glasses/fluff/spiffygogs = 100, + /obj/item/clothing/glasses/fakesunglasses = 100, + /obj/item/clothing/glasses/fakesunglasses/aviator = 100, + /obj/item/clothing/mask/bandana/blue = 100, + /obj/item/clothing/mask/bandana/gold = 100, + /obj/item/clothing/mask/bandana/green = 100, + /obj/item/clothing/mask/bandana/red = 100, + /obj/item/clothing/mask/surgical = 200) + premium = list(/obj/item/weapon/bedsheet/rainbow = 1) + contraband = list(/obj/item/clothing/mask/gas/clown_hat = 1) +/obj/machinery/vending/loadout/clothing + name = "General Jump" + desc = "A special vendor using compressed matter cartridges to store large amounts of clothing." + product_ads = "Tired of your grey jumpsuit? Spruce yourself up!;We have the outfit for you!;Don't let that grey jumpsuit get you down, get a ROBUST outfit right now!;Using compressed matter catridges and VERY ETHICAL labor practices to bring YOU the clothing you crave!;Are you sure you want to go to work in THAT?;All of our wares have a whole TWO pockets!" + icon_state = "clothing" + icon_vend = "clothing-purchase" + vend_delay = 16 + products = list(/obj/item/clothing/under/bathrobe = 5, + /obj/item/clothing/under/dress/black_corset = 5, + /obj/item/clothing/under/blazer = 5, + /obj/item/clothing/under/blazer/skirt = 5, + /obj/item/clothing/under/cheongsam = 5, + /obj/item/clothing/under/cheongsam/red = 5, + /obj/item/clothing/under/cheongsam/blue = 5, + /obj/item/clothing/under/cheongsam/black = 5, + /obj/item/clothing/under/cheongsam/darkred = 5, + /obj/item/clothing/under/cheongsam/green = 5, + /obj/item/clothing/under/cheongsam/purple = 5, + /obj/item/clothing/under/cheongsam/darkblue = 5, + /obj/item/clothing/under/croptop = 5, + /obj/item/clothing/under/croptop/red = 5, + /obj/item/clothing/under/croptop/grey = 5, + /obj/item/clothing/under/cuttop = 5, + /obj/item/clothing/under/cuttop/red = 5, + /obj/item/clothing/under/suit_jacket/female/skirt = 5, + /obj/item/clothing/under/dress/dress_fire = 5, + /obj/item/clothing/under/dress/flamenco = 5, + /obj/item/clothing/under/dress/flower_dress = 5, + /obj/item/clothing/under/fluff/gnshorts = 5, + /obj/item/clothing/under/color = 5, + /obj/item/clothing/under/color/aqua = 5, + /obj/item/clothing/under/color/black = 5, + /obj/item/clothing/under/color/blackf = 5, + /obj/item/clothing/under/color/blackjumpskirt = 5, + /obj/item/clothing/under/color/blue = 5, + /obj/item/clothing/under/color/brown = 5, + /obj/item/clothing/under/color/darkblue = 5, + /obj/item/clothing/under/color/darkred = 5, + /obj/item/clothing/under/color/green = 5, + /obj/item/clothing/under/color/grey = 5, + /obj/item/clothing/under/color/lightblue = 5, + /obj/item/clothing/under/color/lightbrown = 5, + /obj/item/clothing/under/color/lightgreen = 5, + /obj/item/clothing/under/color/lightpurple = 5, + /obj/item/clothing/under/color/lightred = 5, + /obj/item/clothing/under/color/orange = 5, + /obj/item/clothing/under/color/pink = 5, + /obj/item/clothing/under/color/prison = 5, + /obj/item/clothing/under/color/ranger = 5, + /obj/item/clothing/under/color/red = 5, + /obj/item/clothing/under/color/white = 5, + /obj/item/clothing/under/color/yellow = 5, + /obj/item/clothing/under/color/yellowgreen = 5, + /obj/item/clothing/under/aether = 5, + /obj/item/clothing/under/focal = 5, + /obj/item/clothing/under/hephaestus = 5, + /obj/item/clothing/under/wardt = 5, + /obj/item/clothing/under/kilt = 5, + /obj/item/clothing/under/fluff/latexmaid = 5, + /obj/item/clothing/under/dress/lilacdress = 5, + /obj/item/clothing/under/dress/white2 = 5, + /obj/item/clothing/under/dress/white4 = 5, + /obj/item/clothing/under/dress/maid = 5, + /obj/item/clothing/under/dress/maid/sexy = 5, + /obj/item/clothing/under/dress/maid/janitor = 5, + /obj/item/clothing/under/moderncoat = 5, + /obj/item/clothing/under/permit = 5, + /obj/item/clothing/under/oldwoman = 5, + /obj/item/clothing/under/frontier = 5, + /obj/item/clothing/under/mbill = 5, + /obj/item/clothing/under/pants/baggy/ = 5, + /obj/item/clothing/under/pants/baggy/classicjeans = 5, + /obj/item/clothing/under/pants/baggy/mustangjeans = 5, + /obj/item/clothing/under/pants/baggy/blackjeans = 5, + /obj/item/clothing/under/pants/baggy/greyjeans = 5, + /obj/item/clothing/under/pants/baggy/youngfolksjeans = 5, + /obj/item/clothing/under/pants/baggy/white = 5, + /obj/item/clothing/under/pants/baggy/red = 5, + /obj/item/clothing/under/pants/baggy/black = 5, + /obj/item/clothing/under/pants/baggy/tan = 5, + /obj/item/clothing/under/pants/baggy/track = 5, + /obj/item/clothing/under/pants/baggy/khaki = 5, + /obj/item/clothing/under/pants/baggy/camo = 5, + /obj/item/clothing/under/pants/utility/ = 5, + /obj/item/clothing/under/pants/utility/orange = 5, + /obj/item/clothing/under/pants/utility/blue = 5, + /obj/item/clothing/under/pants/utility/white = 5, + /obj/item/clothing/under/pants/utility/red = 5, + /obj/item/clothing/under/pants/chaps = 5, + /obj/item/clothing/under/pants/chaps/black = 5, + /obj/item/clothing/under/pants/track = 5, + /obj/item/clothing/under/pants/track/red = 5, + /obj/item/clothing/under/pants/track/white = 5, + /obj/item/clothing/under/pants/track/green = 5, + /obj/item/clothing/under/pants/track/blue = 5, + /obj/item/clothing/under/pants/yogapants = 5, + /obj/item/clothing/under/ascetic = 5, + /obj/item/clothing/under/dress/white3 = 5, + /obj/item/clothing/under/skirt/pleated = 5, + /obj/item/clothing/under/dress/darkred = 5, + /obj/item/clothing/under/dress/redeveninggown = 5, + /obj/item/clothing/under/dress/red_swept_dress = 5, + /obj/item/clothing/under/dress/sailordress = 5, + /obj/item/clothing/under/dress/sari = 5, + /obj/item/clothing/under/dress/sari/green = 5, + /obj/item/clothing/under/shorts/red = 5, + /obj/item/clothing/under/shorts/green = 5, + /obj/item/clothing/under/shorts/blue = 5, + /obj/item/clothing/under/shorts/black = 5, + /obj/item/clothing/under/shorts/grey = 5, + /obj/item/clothing/under/shorts/white = 5, + /obj/item/clothing/under/shorts/jeans = 5, + /obj/item/clothing/under/shorts/jeans/ = 5, + /obj/item/clothing/under/shorts/jeans/classic = 5, + /obj/item/clothing/under/shorts/jeans/mustang = 5, + /obj/item/clothing/under/shorts/jeans/youngfolks = 5, + /obj/item/clothing/under/shorts/jeans/black = 5, + /obj/item/clothing/under/shorts/jeans/grey = 5, + /obj/item/clothing/under/shorts/khaki/ = 5, + /obj/item/clothing/under/skirt/loincloth = 5, + /obj/item/clothing/under/skirt/khaki = 5, + /obj/item/clothing/under/skirt/blue = 5, + /obj/item/clothing/under/skirt/red = 5, + /obj/item/clothing/under/skirt/denim = 5, + /obj/item/clothing/under/skirt/pleated = 5, + /obj/item/clothing/under/skirt/outfit/plaid_blue = 5, + /obj/item/clothing/under/skirt/outfit/plaid_red = 5, + /obj/item/clothing/under/skirt/outfit/plaid_purple = 5, + /obj/item/clothing/under/overalls/sleek = 5, + /obj/item/clothing/under/sl_suit = 5, + /obj/item/clothing/under/gentlesuit = 5, + /obj/item/clothing/under/gentlesuit/skirt = 5, + /obj/item/clothing/under/suit_jacket = 5, + /obj/item/clothing/under/suit_jacket/really_black/skirt = 5, + /obj/item/clothing/under/suit_jacket/really_black = 5, + /obj/item/clothing/under/suit_jacket/female/skirt = 5, + /obj/item/clothing/under/suit_jacket/female/ = 5, + /obj/item/clothing/under/suit_jacket/red = 5, + /obj/item/clothing/under/suit_jacket/red/skirt = 5, + /obj/item/clothing/under/suit_jacket/charcoal = 5, + /obj/item/clothing/under/suit_jacket/charcoal/skirt = 5, + /obj/item/clothing/under/suit_jacket/navy = 5, + /obj/item/clothing/under/suit_jacket/navy/skirt = 5, + /obj/item/clothing/under/suit_jacket/burgundy = 5, + /obj/item/clothing/under/suit_jacket/burgundy/skirt = 5, + /obj/item/clothing/under/suit_jacket/checkered = 5, + /obj/item/clothing/under/suit_jacket/checkered/skirt = 5, + /obj/item/clothing/under/suit_jacket/tan = 5, + /obj/item/clothing/under/suit_jacket/tan/skirt = 5, + /obj/item/clothing/under/scratch = 5, + /obj/item/clothing/under/scratch/skirt = 5, + /obj/item/clothing/under/sundress = 5, + /obj/item/clothing/under/sundress_white = 5, + /obj/item/clothing/under/rank/psych/turtleneck/sweater = 5, + /obj/item/weapon/storage/box/fluff/swimsuit = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/blue = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/purple = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/green = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/red = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/white = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/earth = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/engineering = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/science = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/security = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/medical = 5, + /obj/item/clothing/under/utility = 5, + /obj/item/clothing/under/utility/grey = 5, + /obj/item/clothing/under/utility/blue = 5, + /obj/item/clothing/under/fluff/v_nanovest = 5, + /obj/item/clothing/under/dress/westernbustle = 5, + /obj/item/clothing/under/wedding/bride_white = 5, + /obj/item/weapon/storage/backpack/ = 5, + /obj/item/weapon/storage/backpack/messenger = 5, + /obj/item/weapon/storage/backpack/satchel = 5) + prices = list(/obj/item/clothing/under/bathrobe = 100, + /obj/item/clothing/under/dress/black_corset = 100, + /obj/item/clothing/under/blazer = 100, + /obj/item/clothing/under/blazer/skirt = 100, + /obj/item/clothing/under/cheongsam = 100, + /obj/item/clothing/under/cheongsam/red = 100, + /obj/item/clothing/under/cheongsam/blue = 100, + /obj/item/clothing/under/cheongsam/black = 100, + /obj/item/clothing/under/cheongsam/darkred = 100, + /obj/item/clothing/under/cheongsam/green = 100, + /obj/item/clothing/under/cheongsam/purple = 100, + /obj/item/clothing/under/cheongsam/darkblue = 100, + /obj/item/clothing/under/croptop = 100, + /obj/item/clothing/under/croptop/red = 100, + /obj/item/clothing/under/croptop/grey = 100, + /obj/item/clothing/under/cuttop = 100, + /obj/item/clothing/under/cuttop/red = 100, + /obj/item/clothing/under/suit_jacket/female/skirt = 100, + /obj/item/clothing/under/dress/dress_fire = 100, + /obj/item/clothing/under/dress/flamenco = 100, + /obj/item/clothing/under/dress/flower_dress = 100, + /obj/item/clothing/under/fluff/gnshorts = 100, + /obj/item/clothing/under/color = 100, + /obj/item/clothing/under/color/aqua = 100, + /obj/item/clothing/under/color/black = 100, + /obj/item/clothing/under/color/blackf = 100, + /obj/item/clothing/under/color/blackjumpskirt = 100, + /obj/item/clothing/under/color/blue = 100, + /obj/item/clothing/under/color/brown = 100, + /obj/item/clothing/under/color/darkblue = 100, + /obj/item/clothing/under/color/darkred = 100, + /obj/item/clothing/under/color/green = 100, + /obj/item/clothing/under/color/grey = 100, + /obj/item/clothing/under/color/lightblue = 100, + /obj/item/clothing/under/color/lightbrown = 100, + /obj/item/clothing/under/color/lightgreen = 100, + /obj/item/clothing/under/color/lightpurple = 100, + /obj/item/clothing/under/color/lightred = 100, + /obj/item/clothing/under/color/orange = 100, + /obj/item/clothing/under/color/pink = 100, + /obj/item/clothing/under/color/prison = 100, + /obj/item/clothing/under/color/ranger = 100, + /obj/item/clothing/under/color/red = 100, + /obj/item/clothing/under/color/white = 100, + /obj/item/clothing/under/color/yellow = 100, + /obj/item/clothing/under/color/yellowgreen = 100, + /obj/item/clothing/under/aether = 100, + /obj/item/clothing/under/focal = 100, + /obj/item/clothing/under/hephaestus = 100, + /obj/item/clothing/under/wardt = 100, + /obj/item/clothing/under/kilt = 100, + /obj/item/clothing/under/fluff/latexmaid = 100, + /obj/item/clothing/under/dress/lilacdress = 100, + /obj/item/clothing/under/dress/white2 = 100, + /obj/item/clothing/under/dress/white4 = 100, + /obj/item/clothing/under/dress/maid = 100, + /obj/item/clothing/under/dress/maid/sexy = 100, + /obj/item/clothing/under/dress/maid/janitor = 100, + /obj/item/clothing/under/moderncoat = 100, + /obj/item/clothing/under/permit = 100, + /obj/item/clothing/under/oldwoman = 100, + /obj/item/clothing/under/frontier = 100, + /obj/item/clothing/under/mbill = 100, + /obj/item/clothing/under/pants/baggy/ = 100, + /obj/item/clothing/under/pants/baggy/classicjeans = 100, + /obj/item/clothing/under/pants/baggy/mustangjeans = 100, + /obj/item/clothing/under/pants/baggy/blackjeans = 100, + /obj/item/clothing/under/pants/baggy/greyjeans = 100, + /obj/item/clothing/under/pants/baggy/youngfolksjeans = 100, + /obj/item/clothing/under/pants/baggy/white = 100, + /obj/item/clothing/under/pants/baggy/red = 100, + /obj/item/clothing/under/pants/baggy/black = 100, + /obj/item/clothing/under/pants/baggy/tan = 100, + /obj/item/clothing/under/pants/baggy/track = 100, + /obj/item/clothing/under/pants/baggy/khaki = 100, + /obj/item/clothing/under/pants/baggy/camo = 100, + /obj/item/clothing/under/pants/utility/ = 100, + /obj/item/clothing/under/pants/utility/orange = 100, + /obj/item/clothing/under/pants/utility/blue = 100, + /obj/item/clothing/under/pants/utility/white = 100, + /obj/item/clothing/under/pants/utility/red = 100, + /obj/item/clothing/under/pants/chaps = 100, + /obj/item/clothing/under/pants/chaps/black = 100, + /obj/item/clothing/under/pants/track = 100, + /obj/item/clothing/under/pants/track/red = 100, + /obj/item/clothing/under/pants/track/white = 100, + /obj/item/clothing/under/pants/track/green = 100, + /obj/item/clothing/under/pants/track/blue = 100, + /obj/item/clothing/under/pants/yogapants = 100, + /obj/item/clothing/under/ascetic = 100, + /obj/item/clothing/under/dress/white3 = 100, + /obj/item/clothing/under/skirt/pleated = 100, + /obj/item/clothing/under/dress/darkred = 100, + /obj/item/clothing/under/dress/redeveninggown = 100, + /obj/item/clothing/under/dress/red_swept_dress = 100, + /obj/item/clothing/under/dress/sailordress = 100, + /obj/item/clothing/under/dress/sari = 100, + /obj/item/clothing/under/dress/sari/green = 100, + /obj/item/clothing/under/shorts/red = 100, + /obj/item/clothing/under/shorts/green = 100, + /obj/item/clothing/under/shorts/blue = 100, + /obj/item/clothing/under/shorts/black = 100, + /obj/item/clothing/under/shorts/grey = 100, + /obj/item/clothing/under/shorts/white = 100, + /obj/item/clothing/under/shorts/jeans = 100, + /obj/item/clothing/under/shorts/jeans/ = 100, + /obj/item/clothing/under/shorts/jeans/classic = 100, + /obj/item/clothing/under/shorts/jeans/mustang = 100, + /obj/item/clothing/under/shorts/jeans/youngfolks = 100, + /obj/item/clothing/under/shorts/jeans/black = 100, + /obj/item/clothing/under/shorts/jeans/grey = 100, + /obj/item/clothing/under/shorts/khaki/ = 100, + /obj/item/clothing/under/skirt/loincloth = 100, + /obj/item/clothing/under/skirt/khaki = 100, + /obj/item/clothing/under/skirt/blue = 100, + /obj/item/clothing/under/skirt/red = 100, + /obj/item/clothing/under/skirt/denim = 100, + /obj/item/clothing/under/skirt/pleated = 100, + /obj/item/clothing/under/skirt/outfit/plaid_blue = 100, + /obj/item/clothing/under/skirt/outfit/plaid_red = 100, + /obj/item/clothing/under/skirt/outfit/plaid_purple = 100, + /obj/item/clothing/under/overalls/sleek = 100, + /obj/item/clothing/under/sl_suit = 100, + /obj/item/clothing/under/gentlesuit = 100, + /obj/item/clothing/under/gentlesuit/skirt = 100, + /obj/item/clothing/under/suit_jacket = 100, + /obj/item/clothing/under/suit_jacket/really_black/skirt = 100, + /obj/item/clothing/under/suit_jacket/really_black = 100, + /obj/item/clothing/under/suit_jacket/female/skirt = 100, + /obj/item/clothing/under/suit_jacket/female/ = 100, + /obj/item/clothing/under/suit_jacket/red = 100, + /obj/item/clothing/under/suit_jacket/red/skirt = 100, + /obj/item/clothing/under/suit_jacket/charcoal = 100, + /obj/item/clothing/under/suit_jacket/charcoal/skirt = 100, + /obj/item/clothing/under/suit_jacket/navy = 100, + /obj/item/clothing/under/suit_jacket/navy/skirt = 100, + /obj/item/clothing/under/suit_jacket/burgundy = 100, + /obj/item/clothing/under/suit_jacket/burgundy/skirt = 100, + /obj/item/clothing/under/suit_jacket/checkered = 100, + /obj/item/clothing/under/suit_jacket/checkered/skirt = 100, + /obj/item/clothing/under/suit_jacket/tan = 100, + /obj/item/clothing/under/suit_jacket/tan/skirt = 100, + /obj/item/clothing/under/scratch = 100, + /obj/item/clothing/under/scratch/skirt = 100, + /obj/item/clothing/under/sundress = 100, + /obj/item/clothing/under/sundress_white = 100, + /obj/item/clothing/under/rank/psych/turtleneck/sweater = 100, + /obj/item/weapon/storage/box/fluff/swimsuit = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/blue = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/purple = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/green = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/red = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/white = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/earth = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/engineering = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/science = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/security = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/medical = 100, + /obj/item/clothing/under/utility = 100, + /obj/item/clothing/under/utility/grey = 100, + /obj/item/clothing/under/utility/blue = 100, + /obj/item/clothing/under/fluff/v_nanovest = 100, + /obj/item/clothing/under/dress/westernbustle = 100, + /obj/item/clothing/under/wedding/bride_white = 100, + /obj/item/weapon/storage/backpack/ = 100, + /obj/item/weapon/storage/backpack/messenger = 100, + /obj/item/weapon/storage/backpack/satchel = 100) + premium = list(/obj/item/clothing/under/color/rainbow = 1) + contraband = list(/obj/item/clothing/under/rank/clown = 1) +/obj/machinery/vending/loadout/gadget + name = "Chips Co." + desc = "A special vendor for devices and gadgets." + product_ads = "You can't RESIST our great deals!;Feeling disconnected? We have a gadget for you!;You know you have the capacity to buy our capacitors!;FILL THAT HOLE IN YOUR HEART WITH OUR PLASTIC DISTRACTIONS!!!;Devices for everyone! Chips Co.!;ROBUST INVENTORY, GREAT PRICES! ;DON'T FORGET THE oyPAD 13s PRO! ON SALE NOW, ONLY ONE THOUSAND THALERS!" + icon_state = "gadgets" + icon_vend = "gadgets-purchase" + vend_delay = 11 + products = list(/obj/item/clothing/suit/circuitry = 1, + /obj/item/clothing/head/circuitry = 1, + /obj/item/clothing/shoes/circuitry = 1, + /obj/item/clothing/gloves/circuitry = 1, + /obj/item/clothing/under/circuitry = 1, + /obj/item/clothing/glasses/circuitry = 1, + /obj/item/clothing/ears/circuitry = 1, + /obj/item/device/text_to_speech = 5, + /obj/item/device/paicard = 5, + /obj/item/device/communicator = 10, + /obj/item/device/communicator/watch = 10, + /obj/item/device/radio = 10, + /obj/item/device/camera = 5, + /obj/item/device/taperecorder = 5, + /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 5, + /obj/item/device/pda = 10, + /obj/item/device/radio/headset = 10, + /obj/item/device/flashlight = 5, + /obj/item/device/laser_pointer = 3, + /obj/item/clothing/glasses/omnihud = 10) + prices = list(/obj/item/clothing/suit/circuitry = 100, + /obj/item/clothing/head/circuitry = 100, + /obj/item/clothing/shoes/circuitry = 100, + /obj/item/clothing/gloves/circuitry = 100, + /obj/item/clothing/under/circuitry = 100, + /obj/item/clothing/glasses/circuitry = 100, + /obj/item/clothing/ears/circuitry = 100, + /obj/item/device/text_to_speech = 300, + /obj/item/device/paicard = 100, + /obj/item/device/communicator = 100, + /obj/item/device/communicator/watch = 100, + /obj/item/device/radio = 100, + /obj/item/device/camera = 100, + /obj/item/device/taperecorder = 100, + /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 1000, + /obj/item/device/pda = 50, + /obj/item/device/radio/headset = 50, + /obj/item/device/flashlight = 100, + /obj/item/device/laser_pointer = 200, + /obj/item/clothing/glasses/omnihud = 100) + premium = list(/obj/item/device/perfect_tele/one_beacon = 1) + contraband = list(/obj/item/weapon/disk/nifsoft/compliance = 1) +/obj/machinery/vending/loadout/loadout_misc + name = "Bits and Bobs" + desc = "A special vendor for things and also stuff!" + product_ads = "You never know when you might need an umbrella.;Hey kid... want some cardemon cards?;Miscellaneous for your miscellaneous heart.;Who's bob? Wouldn't you like to know.;I'm sorry there's no grappling hooks in our umbrellas.;We sell things AND stuff." + icon_state = "loadout_misc" + products = list(/obj/item/weapon/cane = 5, + /obj/item/weapon/pack/cardemon = 25, + /obj/item/weapon/deck/holder = 5, + /obj/item/weapon/deck/cah = 5, + /obj/item/weapon/deck/cah/black = 5, + /obj/item/weapon/deck/tarot = 5, + /obj/item/weapon/deck/cards = 5, + /obj/item/weapon/pack/spaceball = 10, + /obj/item/weapon/storage/pill_bottle/dice = 5, + /obj/item/weapon/storage/pill_bottle/dice_nerd = 5, + /obj/item/weapon/melee/umbrella/random = 10) + prices = list(/obj/item/weapon/cane = 100, + /obj/item/weapon/pack/cardemon = 100, + /obj/item/weapon/deck/holder = 100, + /obj/item/weapon/deck/cah = 100, + /obj/item/weapon/deck/cah/black = 100, + /obj/item/weapon/deck/tarot = 100, + /obj/item/weapon/deck/cards = 100, + /obj/item/weapon/pack/spaceball = 100, + /obj/item/weapon/storage/pill_bottle/dice = 100, + /obj/item/weapon/storage/pill_bottle/dice_nerd = 100, + /obj/item/weapon/melee/umbrella/random = 100) + premium = list(/obj/item/toy/bosunwhistle = 1) + contraband = list(/obj/item/toy/katana = 1) +/obj/machinery/vending/loadout/overwear + name = "Big D's Best" + desc = "A special vendor using compressed matter cartridges to store large amounts of overwear!" + product_ads = "Dress your best! It's what big D would want.;Overwear for all occasions!;Big D has what you need if what you need is some form of jacket!;Need a new hoodie? Bid D has you covered.;Big D says you need a new suit!;Big D smiles when he sees you in one of his coats!" + icon_state = "suit" + icon_vend = "suit-purchase" + vend_delay = 16 + products = list(/obj/item/clothing/suit/storage/apron = 5, + /obj/item/clothing/suit/storage/flannel/aqua = 5, + /obj/item/clothing/suit/storage/toggle/bomber = 5, + /obj/item/clothing/suit/storage/bomber/alt = 5, + /obj/item/clothing/suit/storage/flannel/brown = 5, + /obj/item/clothing/suit/storage/toggle/cardigan = 5, + /obj/item/clothing/accessory/poncho/roles/cloak/custom = 5, + /obj/item/clothing/suit/storage/duster = 5, + /obj/item/clothing/suit/storage/toggle/denim_jacket = 5, + /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen = 5, + /obj/item/clothing/suit/storage/toggle/denim_jacket/sleeveless = 5, + /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen/sleeveless = 5, + /obj/item/clothing/suit/storage/fluff/gntop = 5, + /obj/item/clothing/suit/greatcoat = 5, + /obj/item/clothing/suit/storage/flannel = 5, + /obj/item/clothing/suit/storage/greyjacket = 5, + /obj/item/clothing/suit/storage/hazardvest = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/black = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/red = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/blue = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/green = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/orange = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/yellow = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/cti = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/mu = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/nt = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/smw = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/nrti = 5, + /obj/item/clothing/suit/storage/fluff/jacket/field = 5, + /obj/item/clothing/suit/storage/fluff/jacket/air_cavalry = 5, + /obj/item/clothing/suit/storage/fluff/jacket/air_force = 5, + /obj/item/clothing/suit/storage/fluff/jacket/navy = 5, + /obj/item/clothing/suit/storage/fluff/jacket/special_forces = 5, + /obj/item/clothing/suit/kamishimo = 5, + /obj/item/clothing/suit/kimono = 5, + /obj/item/clothing/suit/storage/toggle/labcoat = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/blue = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/blue_edge = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/green = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/orange = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/pink = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/red = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/yellow = 5, + /obj/item/clothing/suit/leathercoat = 5, + /obj/item/clothing/suit/storage/toggle/leather_jacket = 5, + /obj/item/clothing/suit/storage/leather_jacket_alt = 5, + /obj/item/clothing/suit/storage/toggle/brown_jacket = 5, + /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen = 5, + /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen = 5, + /obj/item/clothing/suit/storage/toggle/leather_jacket/sleeveless = 5, + /obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless = 5, + /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen/sleeveless = 5, + /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen/sleeveless = 5, + /obj/item/clothing/suit/storage/miljacket = 5, + /obj/item/clothing/suit/storage/miljacket/alt = 5, + /obj/item/clothing/suit/storage/miljacket/green = 5, + /obj/item/clothing/suit/storage/apron/overalls = 5, + /obj/item/clothing/suit/storage/toggle/peacoat = 5, + /obj/item/clothing/accessory/poncho = 5, + /obj/item/clothing/accessory/poncho/green = 5, + /obj/item/clothing/accessory/poncho/red = 5, + /obj/item/clothing/accessory/poncho/purple = 5, + /obj/item/clothing/accessory/poncho/blue = 5, + /obj/item/clothing/suit/jacket/puffer = 5, + /obj/item/clothing/suit/jacket/puffer/vest = 5, + /obj/item/clothing/suit/storage/flannel/red = 5, + /obj/item/clothing/suit/unathi/robe = 5, + /obj/item/clothing/suit/storage/snowsuit = 5, + /obj/item/clothing/suit/storage/toggle/internalaffairs = 5, + /obj/item/clothing/suit/storage/toggle/lawyer/bluejacket = 5, + /obj/item/clothing/suit/storage/toggle/lawyer/purpjacket = 5, + /obj/item/clothing/suit/suspenders = 5, + /obj/item/clothing/suit/storage/toggle/track = 5, + /obj/item/clothing/suit/storage/toggle/track/blue = 5, + /obj/item/clothing/suit/storage/toggle/track/green = 5, + /obj/item/clothing/suit/storage/toggle/track/red = 5, + /obj/item/clothing/suit/storage/toggle/track/white = 5, + /obj/item/clothing/suit/storage/trench = 5, + /obj/item/clothing/suit/storage/trench/grey = 5, + /obj/item/clothing/suit/varsity = 5, + /obj/item/clothing/suit/varsity/red = 5, + /obj/item/clothing/suit/varsity/purple = 5, + /obj/item/clothing/suit/varsity/green = 5, + /obj/item/clothing/suit/varsity/blue = 5, + /obj/item/clothing/suit/varsity/brown = 5, + /obj/item/clothing/suit/storage/hooded/wintercoat = 5, + /obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey = 5) + prices = list(/obj/item/clothing/suit/storage/apron = 200, + /obj/item/clothing/suit/storage/flannel/aqua = 200, + /obj/item/clothing/suit/storage/toggle/bomber = 200, + /obj/item/clothing/suit/storage/bomber/alt = 200, + /obj/item/clothing/suit/storage/flannel/brown = 200, + /obj/item/clothing/suit/storage/toggle/cardigan = 200, + /obj/item/clothing/accessory/poncho/roles/cloak/custom = 200, + /obj/item/clothing/suit/storage/duster = 200, + /obj/item/clothing/suit/storage/toggle/denim_jacket = 200, + /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen = 200, + /obj/item/clothing/suit/storage/toggle/denim_jacket/sleeveless = 200, + /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen/sleeveless = 200, + /obj/item/clothing/suit/storage/fluff/gntop = 200, + /obj/item/clothing/suit/greatcoat = 200, + /obj/item/clothing/suit/storage/flannel = 200, + /obj/item/clothing/suit/storage/greyjacket = 200, + /obj/item/clothing/suit/storage/hazardvest = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/black = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/red = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/blue = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/green = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/orange = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/yellow = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/cti = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/mu = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/nt = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/smw = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/nrti = 200, + /obj/item/clothing/suit/storage/fluff/jacket/field = 200, + /obj/item/clothing/suit/storage/fluff/jacket/air_cavalry = 200, + /obj/item/clothing/suit/storage/fluff/jacket/air_force = 200, + /obj/item/clothing/suit/storage/fluff/jacket/navy = 200, + /obj/item/clothing/suit/storage/fluff/jacket/special_forces = 200, + /obj/item/clothing/suit/kamishimo = 200, + /obj/item/clothing/suit/kimono = 200, + /obj/item/clothing/suit/storage/toggle/labcoat = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/blue = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/blue_edge = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/green = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/orange = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/pink = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/red = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/yellow = 200, + /obj/item/clothing/suit/leathercoat = 200, + /obj/item/clothing/suit/storage/toggle/leather_jacket = 200, + /obj/item/clothing/suit/storage/leather_jacket_alt = 200, + /obj/item/clothing/suit/storage/toggle/brown_jacket = 200, + /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen = 200, + /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen = 200, + /obj/item/clothing/suit/storage/toggle/leather_jacket/sleeveless = 200, + /obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless = 200, + /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen/sleeveless = 200, + /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen/sleeveless = 200, + /obj/item/clothing/suit/storage/miljacket = 200, + /obj/item/clothing/suit/storage/miljacket/alt = 200, + /obj/item/clothing/suit/storage/miljacket/green = 200, + /obj/item/clothing/suit/storage/apron/overalls = 100, + /obj/item/clothing/suit/storage/toggle/peacoat = 200, + /obj/item/clothing/accessory/poncho = 100, + /obj/item/clothing/accessory/poncho/green = 100, + /obj/item/clothing/accessory/poncho/red = 100, + /obj/item/clothing/accessory/poncho/purple = 100, + /obj/item/clothing/accessory/poncho/blue = 100, + /obj/item/clothing/suit/jacket/puffer = 200, + /obj/item/clothing/suit/jacket/puffer/vest = 200, + /obj/item/clothing/suit/storage/flannel/red = 200, + /obj/item/clothing/suit/unathi/robe = 100, + /obj/item/clothing/suit/storage/snowsuit = 200, + /obj/item/clothing/suit/storage/toggle/internalaffairs = 200, + /obj/item/clothing/suit/storage/toggle/lawyer/bluejacket = 200, + /obj/item/clothing/suit/storage/toggle/lawyer/purpjacket = 200, + /obj/item/clothing/suit/suspenders = 200, + /obj/item/clothing/suit/storage/toggle/track = 200, + /obj/item/clothing/suit/storage/toggle/track/blue = 200, + /obj/item/clothing/suit/storage/toggle/track/green = 200, + /obj/item/clothing/suit/storage/toggle/track/red = 200, + /obj/item/clothing/suit/storage/toggle/track/white = 200, + /obj/item/clothing/suit/storage/trench = 200, + /obj/item/clothing/suit/storage/trench/grey = 200, + /obj/item/clothing/suit/varsity = 200, + /obj/item/clothing/suit/varsity/red = 200, + /obj/item/clothing/suit/varsity/purple = 200, + /obj/item/clothing/suit/varsity/green = 200, + /obj/item/clothing/suit/varsity/blue = 200, + /obj/item/clothing/suit/varsity/brown = 200, + /obj/item/clothing/suit/storage/hooded/wintercoat = 200, + /obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey = 200) + premium = list(/obj/item/clothing/suit/imperium_monk = 3) + contraband = list(/obj/item/toy/katana = 1) +/obj/machinery/vending/loadout/costume + name = "Thespian's Delight" + desc = "Sometimes nerds need costumes!" + product_ads = "Don't let your art be stifled!;Remember, practice makes perfect!;Break a leg!;Don't make me get the cane!;Thespian's Delight entering stage right!;Costumes for your acting needs!" + icon_state = "Theater_b" + products = list(/obj/item/clothing/suit/storage/hooded/carp_costume = 3, + /obj/item/clothing/suit/storage/hooded/carp_costume = 3, + /obj/item/clothing/suit/chickensuit = 3, + /obj/item/clothing/head/chicken = 3, + /obj/item/clothing/head/helmet/gladiator = 3, + /obj/item/clothing/under/gladiator = 3, + /obj/item/clothing/suit/storage/toggle/labcoat/mad = 3, + /obj/item/clothing/under/gimmick/rank/captain/suit = 3, + /obj/item/clothing/glasses/gglasses = 3, + /obj/item/clothing/head/flatcap = 3, + /obj/item/clothing/shoes/boots/jackboots = 3, + /obj/item/clothing/under/schoolgirl = 3, + /obj/item/clothing/head/kitty = 3, + /obj/item/clothing/glasses/sunglasses/blindfold = 3, + /obj/item/clothing/head/beret = 3, + /obj/item/clothing/under/skirt = 3, + /obj/item/clothing/under/suit_jacket = 3, + /obj/item/clothing/head/that = 3, + /obj/item/clothing/accessory/wcoat = 3, + /obj/item/clothing/under/scratch = 3, + /obj/item/clothing/shoes/white = 3, + /obj/item/clothing/gloves/white = 3, + /obj/item/clothing/under/kilt = 3, + /obj/item/clothing/glasses/monocle = 3, + /obj/item/clothing/under/sl_suit = 3, + /obj/item/clothing/mask/fakemoustache = 3, + /obj/item/weapon/cane = 3, + /obj/item/clothing/head/bowler = 3, + /obj/item/clothing/head/plaguedoctorhat = 3, + /obj/item/clothing/suit/bio_suit/plaguedoctorsuit = 3, + /obj/item/clothing/mask/gas/plaguedoctor/fluff = 3, + /obj/item/clothing/under/owl = 3, + /obj/item/clothing/mask/gas/owl_mask = 3, + /obj/item/clothing/under/waiter = 3, + /obj/item/clothing/suit/storage/apron = 3, + /obj/item/clothing/under/pirate = 3, + /obj/item/clothing/head/pirate = 3, + /obj/item/clothing/suit/pirate = 3, + /obj/item/clothing/glasses/eyepatch = 3, + /obj/item/clothing/head/ushanka = 3, + /obj/item/clothing/under/soviet = 3, + /obj/item/clothing/suit/imperium_monk = 1, + /obj/item/clothing/suit/holidaypriest = 3, + /obj/item/clothing/head/witchwig = 3, + /obj/item/clothing/under/sundress = 3, + /obj/item/weapon/staff/broom = 3, + /obj/item/clothing/suit/wizrobe/fake = 3, + /obj/item/clothing/head/wizard/fake = 3, + /obj/item/weapon/staff = 3, + /obj/item/clothing/mask/gas/sexyclown = 3, + /obj/item/clothing/under/sexyclown = 3, + /obj/item/clothing/mask/gas/sexymime = 3, + /obj/item/clothing/under/sexymime = 3) + prices = list(/obj/item/clothing/suit/storage/hooded/carp_costume = 200, + /obj/item/clothing/suit/storage/hooded/carp_costume = 200, + /obj/item/clothing/suit/chickensuit = 200, + /obj/item/clothing/head/chicken = 200, + /obj/item/clothing/head/helmet/gladiator = 300, + /obj/item/clothing/under/gladiator = 500, + /obj/item/clothing/suit/storage/toggle/labcoat/mad = 200, + /obj/item/clothing/under/gimmick/rank/captain/suit = 200, + /obj/item/clothing/glasses/gglasses = 200, + /obj/item/clothing/head/flatcap = 200, + /obj/item/clothing/shoes/boots/jackboots = 200, + /obj/item/clothing/under/schoolgirl = 200, + /obj/item/clothing/head/kitty = 200, + /obj/item/clothing/glasses/sunglasses/blindfold = 200, + /obj/item/clothing/head/beret = 200, + /obj/item/clothing/under/skirt = 200, + /obj/item/clothing/under/suit_jacket = 200, + /obj/item/clothing/head/that = 200, + /obj/item/clothing/accessory/wcoat = 200, + /obj/item/clothing/under/scratch = 200, + /obj/item/clothing/shoes/white = 200, + /obj/item/clothing/gloves/white = 200, + /obj/item/clothing/under/kilt = 200, + /obj/item/clothing/glasses/monocle = 400, + /obj/item/clothing/under/sl_suit = 200, + /obj/item/clothing/mask/fakemoustache = 200, + /obj/item/weapon/cane = 300, + /obj/item/clothing/head/bowler = 200, + /obj/item/clothing/head/plaguedoctorhat = 300, + /obj/item/clothing/suit/bio_suit/plaguedoctorsuit = 300, + /obj/item/clothing/mask/gas/plaguedoctor/fluff = 600, + /obj/item/clothing/under/owl = 400, + /obj/item/clothing/mask/gas/owl_mask = 400, + /obj/item/clothing/under/waiter = 200, + /obj/item/clothing/suit/storage/apron = 200, + /obj/item/clothing/under/pirate = 300, + /obj/item/clothing/head/pirate = 400, + /obj/item/clothing/suit/pirate = 600, + /obj/item/clothing/glasses/eyepatch = 200, + /obj/item/clothing/head/ushanka = 200, + /obj/item/clothing/under/soviet = 200, + /obj/item/clothing/suit/imperium_monk = 2000, + /obj/item/clothing/suit/holidaypriest = 200, + /obj/item/clothing/head/witchwig = 200, + /obj/item/clothing/under/sundress = 200, + /obj/item/weapon/staff/broom = 400, + /obj/item/clothing/suit/wizrobe/fake = 200, + /obj/item/clothing/head/wizard/fake = 200, + /obj/item/weapon/staff = 400, + /obj/item/clothing/mask/gas/sexyclown = 600, + /obj/item/clothing/under/sexyclown = 200, + /obj/item/clothing/mask/gas/sexymime = 600, + /obj/item/clothing/under/sexymime = 200) + premium = list(/obj/item/clothing/suit/imperium_monk = 3) + contraband = list(/obj/item/clothing/head/syndicatefake = 1, + /obj/item/clothing/suit/syndicatefake = 1) diff --git a/code/game/magic/archived_book.dm b/code/game/magic/archived_book.dm index 2fc9412fcd..b2af5f3f73 100644 --- a/code/game/magic/archived_book.dm +++ b/code/game/magic/archived_book.dm @@ -37,7 +37,7 @@ datum/book_manager/proc/freeid() set desc = "Permamently deletes a book from the database." set category = "Admin" if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/isbn = input("ISBN number?", "Delete Book") as num | null diff --git a/code/game/objects/effects/alien/aliens.dm b/code/game/objects/effects/alien/aliens.dm index 0de8d332b7..bdcbe95e7f 100644 --- a/code/game/objects/effects/alien/aliens.dm +++ b/code/game/objects/effects/alien/aliens.dm @@ -152,6 +152,12 @@ * Weeds */ #define NODERANGE 3 +#define WEED_NORTH_EDGING "north" +#define WEED_SOUTH_EDGING "south" +#define WEED_EAST_EDGING "east" +#define WEED_WEST_EDGING "west" +#define WEED_NODE_GLOW "glow" +#define WEED_NODE_BASE "nodebase" /obj/effect/alien/weeds name = "weeds" @@ -164,6 +170,18 @@ layer = ABOVE_TURF_LAYER var/health = 15 var/obj/effect/alien/weeds/node/linked_node = null + var/static/list/weedImageCache + +/obj/effect/alien/weeds/Destroy() + var/turf/T = get_turf(src) + // To not mess up the overlay updates. + loc = null + + for (var/obj/effect/alien/weeds/W in range(1,T)) + W.updateWeedOverlays() + + linked_node = null + ..() /obj/effect/alien/weeds/node icon_state = "weednode" @@ -173,9 +191,22 @@ light_range = NODERANGE var/node_range = NODERANGE + var/set_color = null + /obj/effect/alien/weeds/node/New() ..(src.loc, src) +/obj/effect/alien/weeds/node/Initialize() + ..() + START_PROCESSING(SSobj, src) + + spawn(1 SECOND) + if(color) + set_color = color + +/obj/effect/alien/weeds/node/Destroy() + STOP_PROCESSING(SSobj, src) + ..() /obj/effect/alien/weeds/New(pos, node) ..() @@ -184,12 +215,45 @@ return linked_node = node if(icon_state == "weeds")icon_state = pick("weeds", "weeds1", "weeds2") - spawn(rand(150, 200)) - if(src) - Life() + + fullUpdateWeedOverlays() + +/obj/effect/alien/weeds/proc/updateWeedOverlays() + + overlays.Cut() + + if(!weedImageCache || !weedImageCache.len) + weedImageCache = list() +// weedImageCache.len = 4 + weedImageCache[WEED_NORTH_EDGING] = image('icons/mob/alien.dmi', "weeds_side_n", layer=2.11, pixel_y = -32) + weedImageCache[WEED_SOUTH_EDGING] = image('icons/mob/alien.dmi', "weeds_side_s", layer=2.11, pixel_y = 32) + weedImageCache[WEED_EAST_EDGING] = image('icons/mob/alien.dmi', "weeds_side_e", layer=2.11, pixel_x = -32) + weedImageCache[WEED_WEST_EDGING] = image('icons/mob/alien.dmi', "weeds_side_w", layer=2.11, pixel_x = 32) + + var/turf/N = get_step(src, NORTH) + var/turf/S = get_step(src, SOUTH) + var/turf/E = get_step(src, EAST) + var/turf/W = get_step(src, WEST) + if(!locate(/obj/effect/alien) in N.contents) + if(istype(N, /turf/simulated/floor)) + overlays += weedImageCache[WEED_SOUTH_EDGING] + if(!locate(/obj/effect/alien) in S.contents) + if(istype(S, /turf/simulated/floor)) + overlays += weedImageCache[WEED_NORTH_EDGING] + if(!locate(/obj/effect/alien) in E.contents) + if(istype(E, /turf/simulated/floor)) + overlays += weedImageCache[WEED_WEST_EDGING] + if(!locate(/obj/effect/alien) in W.contents) + if(istype(W, /turf/simulated/floor)) + overlays += weedImageCache[WEED_EAST_EDGING] + +/obj/effect/alien/weeds/proc/fullUpdateWeedOverlays() + for (var/obj/effect/alien/weeds/W in range(1,src)) + W.updateWeedOverlays() + return -/obj/effect/alien/weeds/proc/Life() +/obj/effect/alien/weeds/process() set background = 1 var/turf/U = get_turf(src) /* @@ -211,6 +275,9 @@ Alien plants should do something if theres a lot of poison if(!linked_node || (get_dist(linked_node, src) > linked_node.node_range) ) return + if(linked_node != src) + color = linked_node.set_color + direction_loop: for(var/dirn in cardinal) var/turf/T = get_step(src, dirn) @@ -222,10 +289,33 @@ Alien plants should do something if theres a lot of poison // continue for(var/obj/O in T) - if(O.density) + if(!O.CanZASPass(U)) continue direction_loop - new /obj/effect/alien/weeds(T, linked_node) + var/obj/effect/E = new /obj/effect/alien/weeds(T, linked_node) + + E.color = color + + if(istype(src, /obj/effect/alien/weeds/node)) + var/obj/effect/alien/weeds/node/N = src + var/list/nearby_weeds = list() + for(var/obj/effect/alien/weeds/W in range(N.node_range,src)) + nearby_weeds |= W + + for(var/obj/effect/alien/weeds/W in nearby_weeds) + if(!W) + continue + + if(!W.linked_node) + W.linked_node = src + + W.color = W.linked_node.set_color + + if(W == src) + continue + + if(prob(max(10, 40 - (5 * nearby_weeds.len)))) + W.process() /obj/effect/alien/weeds/ex_act(severity) @@ -282,7 +372,12 @@ Alien plants should do something if theres a lot of poison healthcheck() #undef NODERANGE - +#undef WEED_NORTH_EDGING +#undef WEED_SOUTH_EDGING +#undef WEED_EAST_EDGING +#undef WEED_WEST_EDGING +#undef WEED_NODE_GLOW +#undef WEED_NODE_BASE /* * Acid diff --git a/code/game/objects/effects/chem/foam.dm b/code/game/objects/effects/chem/foam.dm index f32a75dcce..d3ee736251 100644 --- a/code/game/objects/effects/chem/foam.dm +++ b/code/game/objects/effects/chem/foam.dm @@ -74,6 +74,12 @@ qdel(src) /obj/effect/effect/foam/Crossed(var/atom/movable/AM) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(metal) return if(istype(AM, /mob/living)) diff --git a/code/game/objects/effects/decals/Cleanable/humans.dm b/code/game/objects/effects/decals/Cleanable/humans.dm index 7a773c733e..cfde668d5c 100644 --- a/code/game/objects/effects/decals/Cleanable/humans.dm +++ b/code/game/objects/effects/decals/Cleanable/humans.dm @@ -70,6 +70,12 @@ var/global/list/image/splatter_cache=list() desc = initial(desc) /obj/effect/decal/cleanable/blood/Crossed(mob/living/carbon/human/perp) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = perp + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if (!istype(perp)) return if(amount < 1) diff --git a/code/game/objects/effects/decals/contraband.dm b/code/game/objects/effects/decals/contraband.dm index c98cacb785..d765c479fb 100644 --- a/code/game/objects/effects/decals/contraband.dm +++ b/code/game/objects/effects/decals/contraband.dm @@ -12,14 +12,16 @@ name = "rolled-up poster" desc = "The poster comes with its own automatic adhesive mechanism, for easy pinning to any vertical surface." icon_state = "rolled_poster" - var/serial_number = 0 + var/serial_number = null + var/poster_type = /obj/structure/sign/poster /obj/item/weapon/contraband/poster/New(turf/loc, var/given_serial = 0) - if(given_serial == 0) - serial_number = rand(1, poster_designs.len) - else - serial_number = given_serial + if(!serial_number) + if(given_serial == 0) + serial_number = rand(1, poster_designs.len) + else + serial_number = given_serial name += " - No. [serial_number]" ..(loc) @@ -57,7 +59,7 @@ user << "You start placing the poster on the wall..." //Looks like it's uncluttered enough. Place the poster. - var/obj/structure/sign/poster/P = new(user.loc, placement_dir=get_dir(user, W), serial=serial_number) + var/obj/structure/sign/poster/P = new poster_type(user.loc, placement_dir=get_dir(user, W), serial=serial_number, itemtype = src.type) flick("poster_being_set", P) //playsound(W, 'sound/items/poster_being_created.ogg', 100, 1) //why the hell does placing a poster make printer sounds? @@ -74,6 +76,18 @@ qdel(oldsrc) //delete it now to cut down on sanity checks afterwards. Agouri's code supports rerolling it anyway +//NT subtype +/obj/item/weapon/contraband/poster/nanotrasen + icon_state = "rolled_poster_nt" + poster_type = /obj/structure/sign/poster/nanotrasen + +/obj/item/weapon/contraband/poster/nanotrasen/New(turf/loc, var/given_serial = 0) + if(given_serial == 0) + serial_number = rand(1, NT_poster_designs.len) + else + serial_number = given_serial + ..(loc) + //############################## THE ACTUAL DECALS ########################### /obj/structure/sign/poster @@ -85,15 +99,22 @@ var/poster_type //So mappers can specify a desired poster var/ruined = 0 -/obj/structure/sign/poster/New(var/newloc, var/placement_dir=null, var/serial=null) + var/roll_type + var/poster_set = FALSE + +/obj/structure/sign/poster/New(var/newloc, var/placement_dir=null, var/serial=null, var/itemtype = /obj/item/weapon/contraband/poster) ..(newloc) if(!serial) serial = rand(1, poster_designs.len) //use a random serial if none is given - serial_number = serial - var/datum/poster/design = poster_designs[serial_number] - set_poster(design) + if(!poster_set) + serial_number = serial + var/datum/poster/design = poster_designs[serial_number] + set_poster(design) + + if(itemtype || !roll_type) + roll_type = itemtype switch (placement_dir) if (NORTH) @@ -121,6 +142,8 @@ desc = "[initial(desc)] [design.desc]" icon_state = design.icon_state // poster[serial_number] + poster_set = TRUE + /obj/structure/sign/poster/attackby(obj/item/weapon/W as obj, mob/user as mob) if(W.is_wirecutter()) playsound(src.loc, W.usesound, 100, 1) @@ -132,7 +155,6 @@ roll_and_drop(user.loc) return - /obj/structure/sign/poster/attack_hand(mob/user as mob) if(ruined) @@ -152,7 +174,7 @@ add_fingerprint(user) /obj/structure/sign/poster/proc/roll_and_drop(turf/newloc) - var/obj/item/weapon/contraband/poster/P = new(src, serial_number) + var/obj/item/weapon/contraband/poster/P = new roll_type(src, serial_number) P.loc = newloc src.loc = P qdel(src) @@ -163,3 +185,17 @@ // Description suffix var/desc="" var/icon_state="" + +// NT poster subtype. +/obj/structure/sign/poster/nanotrasen + roll_type = /obj/item/weapon/contraband/poster/nanotrasen + +/obj/structure/sign/poster/nanotrasen/New(var/newloc, var/placement_dir=null, var/serial=null, var/itemtype = /obj/item/weapon/contraband/poster/nanotrasen) + if(!serial) + serial = rand(1, NT_poster_designs.len) + + serial_number = serial + var/datum/poster/design = NT_poster_designs[serial_number] + set_poster(design) + + ..(newloc, placement_dir, serial, itemtype) diff --git a/code/game/objects/effects/decals/posters/polarisposters.dm b/code/game/objects/effects/decals/posters/polarisposters.dm index 958ceb66be..39e44e17e7 100644 --- a/code/game/objects/effects/decals/posters/polarisposters.dm +++ b/code/game/objects/effects/decals/posters/polarisposters.dm @@ -43,4 +43,171 @@ name = "Airlock Maintenance Reference" desc = "This poster appears to be reference material for maintenance personnel, instructing to always wear insulated gloves, that wirecutters and \ a multitool are the optimal tools to use, and where to find the maintenance panel on most airlocks. Unfortunately, the poster does not mention any \ - wire codes." \ No newline at end of file + wire codes." + +/datum/poster/pol_10 + icon_state="polposter9" + name = "orchid" + desc = "This poster appears strangely familiar, depicting the flower of a tree native to the planet Earth." + +// A new subset of poster datum for Security posters. +/datum/poster/nanotrasen + icon_state = "polposter1" + name = "Safety!" + desc = "A poster advising you to learn how to put on your internals at a moment's notice." + +/datum/poster/nanotrasen/pol_2 + icon_state="polposter2" + name = "Safety!" + desc = "A blue and white colored poster. This one advises you to wear your safety goggles when handling chemicals." + +/datum/poster/nanotrasen/pol_3 + icon_state="polposter3" + name = "Safety!" + desc = "A safety poster instructing you to comply with the authorities, especially in an emergency." + +/datum/poster/nanotrasen/pol_4 + icon_state="polposter4" + name = "Clean Hands Save Lives" + desc = "A safety poster reminding you to wash your hands." + +/datum/poster/nanotrasen/pol_5 + icon_state="polposter5" + name = "Help!" + desc = "This poster depicts a man helping another man get up." + +/datum/poster/nanotrasen/pol_6 + icon_state="polposter6" + name = "Walk!" + desc = "This poster depicts a man walking, presumably to encourage you not to run in the halls." + +/datum/poster/nanotrasen/pol_7 + icon_state="polposter7" + name = "Place your signs!" + desc = "A safety poster reminding custodial staff to place wet floor signs where needed. This reminder's rarely heeded." + +/datum/poster/nanotrasen/pol_8 + icon_state="polposter8" + name = "Safety!" + desc = "An advertisement / safety poster for EVA training and certification. Training is available at your local Central Command." + +/datum/poster/nanotrasen/pol_9 + icon_state="poster10" + name = "Airlock Maintenance Reference" + desc = "This poster appears to be reference material for maintenance personnel, instructing to always wear insulated gloves, that wirecutters and \ + a multitool are the optimal tools to use, and where to find the maintenance panel on most airlocks. Unfortunately, the poster does not mention any \ + wire codes." + +/datum/poster/nanotrasen/pol_10 + icon_state="polposter9" + name = "orchid" + desc = "This poster suggests a feeling of peace. It depicts the flower of a tree native to the planet Earth." + +/datum/poster/nanotrasen/bay_9 + icon_state="bsposter9" + name = "Pinup Girl Amy" + desc = "This particular one is of Amy, the nymphomaniac urban legend of deep space. How this photograph came to be is not known." + +/datum/poster/nanotrasen/bay_21 + icon_state="bsposter21" + name = "Join the Fuzz!" + desc = "It's a nice recruitment poster of a white haired Chinese woman that says; \"Big Guns, Hot Women, Good Times. Security. We get it done.\"" + +/datum/poster/nanotrasen/bay_22 + icon_state="bsposter22" + name = "Looking for a career with excitement?" + desc = "A recruitment poster starring a dark haired woman with glasses and a purple shirt that has \"Got Brains? Got Talent? Not afraid of electric flying monsters that want to suck the soul out of you? Then Xenobiology could use someone like you!\" written on the bottom." + +/datum/poster/nanotrasen/bay_23 + icon_state="bsposter23" + name = "Safety first: because electricity doesn't wait!" + desc = "A safety poster starring a clueless looking redhead with frazzled hair. \"Every year, hundreds of NT employees expose themselves to electric shock. Play it safe. Avoid suspicious doors after electrical storms, and always wear protection when doing electric maintenance.\"" + +/datum/poster/nanotrasen/bay_24 + icon_state="bsposter24" + name = "Responsible medbay habits, No #259" + desc = "A poster with a nervous looking geneticist on it states; \"Friends Tell Friends They're Clones. It can cause severe and irreparable emotional trauma if a person is not properly informed of their recent demise. Always follow your contractual obligation and inform them of their recent rejuvenation.\"" + +/datum/poster/nanotrasen/bay_25 + icon_state="bsposter25" + name = "Irresponsible medbay habits, No #2" + desc = "This is a safety poster starring a perverted looking naked doctor. \"Sexual harassment is never okay. REPORT any acts of sexual deviance or harassment that disrupt a healthy working environment.\"" + +/datum/poster/nanotrasen/bay_49 + icon_state="bsposter49" + name = "Engineering recruitment" + desc = "This is a poster showing an engineer relaxing by a computer, the text states \"Living the life! Join Engineering today!\"" + +/datum/poster/nanotrasen/bay_52 + icon_state="bsposter52" + name = "fire safety poster" + desc = "This is a poster reminding you of what you should do if you are on fire, or if you are at a dance party." + +/datum/poster/nanotrasen/bay_53 + icon_state="bsposter53" + name = "fire extinguisher poster" + desc = "This is a poster reminding you of what you should use to put out a fire." + +/datum/poster/nanotrasen/bay_54 + icon_state="bsposter54" + name = "firefighter poster" + desc = "This is a poster of a particularly stern looking firefighter. The caption reads, \"Only you can prevent space fires.\"" + +/datum/poster/nanotrasen/bay_57 + icon_state="bsposter57" + name = "space carp warning poster" + desc = "This poster tells of the dangers of space carp infestations." + +/datum/poster/nanotrasen/bay_58 + icon_state="bsposter58" + name = "space carp information poster" + desc = "This poster showcases an old spacer saying on the dangers of migrant space carp." + +/datum/poster/nanotrasen/nt_1 + icon_state = "ntposter01" + name = "Security recruitment" + desc = "This poster showcases an NT security guard in an excited pose, with a small blurb about the importance of Security." + +/datum/poster/nanotrasen/nt_2 + icon_state = "ntposter02" + name = "Security recruitment" + desc = "This poster showcases an NT security guard in an excited pose, with a small blurb about Security Employee benefits." + +/datum/poster/nanotrasen/nt_3 + icon_state = "ntposter03" + name = "Mechatronic Safety" + desc = "This poster displays three cutting-edge gygaxes standing in line in front of a man in plain clothes.\ + The poster's captions explain the importance of knowing how to operate a mechatronic vehicle safely, especially near other personnel.\ + The image seems important." + +/datum/poster/nanotrasen/nt_4 + icon_state = "ntposter04" + name = "Beware Aetotheans" + desc = "This poster displays a distinctly hostile-looking red Promethean in a black coat. The fine-print around the edges warns the reader about the dangers posed by Almachi Prometheans." + +/datum/poster/nanotrasen/nt_5 + icon_state = "ntposter05" + name = "Promethean" + desc = "This poster displays a friendly-looking green Promethean in a labcoat. The fine-print around the edges talks about the benefits Prometheans give in laboratories." + +/datum/poster/nanotrasen/nt_6 + icon_state = "ntposter06" + name = "NanoTrasen" + desc = "This poster showcases an NT emblem. There is writing in the ring around the inner points, probably some sort of slogan no one bothers to memorize." + +/datum/poster/nanotrasen/nt_7 + icon_state = "ntposter07" + name = "SolGov" + desc = "This poster showcases an SCG emblem. The outer ring reads,\ + \"NIL MORTALIBUS ARDUI EST\".\ + Solar Confederate Government." + +/datum/poster/nanotrasen/nt_8 + icon_state = "ntposter08" + name = "wildlife hazard" + desc = "This poster warns against attempting to kill a fully grown giant spider or other hostile life-form alone." + +/datum/poster/nanotrasen/nt_9 + icon_state = "ntposter09" + name = "Regulations and You" + desc = "This poster showcases an NT security guard reading from her PDA. The blurb advocates for the reader to keep corporate regulations in mind at all times, as an emergency can occur at any time." diff --git a/code/game/objects/effects/effect_system.dm b/code/game/objects/effects/effect_system.dm index 551449a8fb..d1de900bae 100644 --- a/code/game/objects/effects/effect_system.dm +++ b/code/game/objects/effects/effect_system.dm @@ -185,6 +185,12 @@ steam.start() -- spawns the effect qdel(src) /obj/effect/effect/smoke/Crossed(mob/living/carbon/M as mob ) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = M + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN ..() if(istype(M)) affect(M) diff --git a/code/game/objects/effects/mines.dm b/code/game/objects/effects/mines.dm index 87af3ec90b..fb4117ef44 100644 --- a/code/game/objects/effects/mines.dm +++ b/code/game/objects/effects/mines.dm @@ -36,6 +36,12 @@ ..() /obj/effect/mine/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN Bumped(AM) /obj/effect/mine/Bumped(mob/M as mob|obj) diff --git a/code/game/objects/effects/portals.dm b/code/game/objects/effects/portals.dm index 7dc82a0ffb..5ba58dc4e0 100644 --- a/code/game/objects/effects/portals.dm +++ b/code/game/objects/effects/portals.dm @@ -21,6 +21,12 @@ GLOBAL_LIST_BOILERPLATE(all_portals, /obj/effect/portal) return /obj/effect/portal/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(istype(AM,/mob) && !(istype(AM,/mob/living))) return //do not send ghosts, zshadows, ai eyes, etc spawn(0) diff --git a/code/game/objects/effects/spiders.dm b/code/game/objects/effects/spiders.dm index 6ec90ced92..90d9ae1820 100644 --- a/code/game/objects/effects/spiders.dm +++ b/code/game/objects/effects/spiders.dm @@ -134,6 +134,8 @@ var/travelling_in_vent = 0 var/list/grow_as = list(/mob/living/simple_mob/animal/giant_spider, /mob/living/simple_mob/animal/giant_spider/nurse, /mob/living/simple_mob/animal/giant_spider/hunter) + var/stunted = FALSE + /obj/effect/spider/spiderling/frost grow_as = list(/mob/living/simple_mob/animal/giant_spider/frost) @@ -261,9 +263,17 @@ break if(amount_grown >= 100) var/spawn_type = pick(grow_as) - new spawn_type(src.loc, src) + var/mob/living/simple_mob/animal/giant_spider/GS = new spawn_type(src.loc, src) + if(stunted) + spawn(2) + GS.make_spiderling() qdel(src) +/obj/effect/spider/spiderling/stunted + stunted = TRUE + + grow_as = list(/mob/living/simple_mob/animal/giant_spider, /mob/living/simple_mob/animal/giant_spider/hunter) + /obj/effect/decal/cleanable/spiderling_remains name = "spiderling remains" desc = "Green squishy mess." diff --git a/code/game/objects/effects/spiders_vr.dm b/code/game/objects/effects/spiders_vr.dm new file mode 100644 index 0000000000..65829b95ac --- /dev/null +++ b/code/game/objects/effects/spiders_vr.dm @@ -0,0 +1,2 @@ +/obj/effect/spider/spiderling/virgo + grow_as = list(/mob/living/simple_mob/animal/giant_spider, /mob/living/simple_mob/animal/giant_spider/hunter) diff --git a/code/game/objects/effects/step_triggers.dm b/code/game/objects/effects/step_triggers.dm index 6119138121..870656d92e 100644 --- a/code/game/objects/effects/step_triggers.dm +++ b/code/game/objects/effects/step_triggers.dm @@ -13,6 +13,12 @@ return 0 /obj/effect/step_trigger/Crossed(H as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = H + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN ..() if(!H) return diff --git a/code/game/objects/items/crayons.dm b/code/game/objects/items/crayons.dm index ff47cab3ca..1e31744e26 100644 --- a/code/game/objects/items/crayons.dm +++ b/code/game/objects/items/crayons.dm @@ -74,16 +74,22 @@ switch(drawtype) if("letter") drawtype = input("Choose the letter.", "Crayon scribbles") in 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") - if(get_dist(target, user) > 1 || !(user.z == target.z)) + if(get_dist(target, user) > 1 || !(user.z == target.z) || !drawtype) return to_chat(user, "You start drawing a letter on the [target.name].") if("graffiti") + drawtype = input("Choose the graffiti.", "Crayon scribbles") in list("amyjon","face","matt","revolution","engie","guy","end","dwarf","uboa") + if(get_dist(target, user) > 1 || !(user.z == target.z) || !drawtype) + return to_chat(user, "You start drawing graffiti on the [target.name].") if("rune") + drawtype = input("Choose the rune.", "Crayon scribbles") in list("rune1", "rune2", "rune3", "rune4", "rune5", "rune6") + if(get_dist(target, user) > 1 || !(user.z == target.z) || !drawtype) + return to_chat(user, "You start drawing a rune on the [target.name].") if("arrow") drawtype = input("Choose the arrow.", "Crayon scribbles") in list("left", "right", "up", "down") - if(get_dist(target, user) > 1 || !(user.z == target.z)) + if(get_dist(target, user) > 1 || !(user.z == target.z) || !drawtype) return to_chat(user, "You start drawing an arrow on the [target.name].") if(instant || do_after(user, 50)) diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index 1d1d591d57..53a83c66bd 100644 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -1456,6 +1456,12 @@ var/global/list/obj/item/device/pda/PDAs = list() return ..() /obj/item/device/pda/clown/Crossed(AM as mob|obj) //Clown PDA is slippery. + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if (istype(AM, /mob/living)) var/mob/living/M = AM diff --git a/code/game/objects/items/devices/communicator/UI.dm b/code/game/objects/items/devices/communicator/UI.dm index a4859c08a5..e972cd1210 100644 --- a/code/game/objects/items/devices/communicator/UI.dm +++ b/code/game/objects/items/devices/communicator/UI.dm @@ -63,6 +63,11 @@ if(ghost.exonet) im_contacts_ui[++im_contacts_ui.len] = list("name" = sanitize(ghost.name), "address" = ghost.exonet.address, "ref" = "\ref[ghost]") + for(var/obj/item/integrated_circuit/input/EPv2/CIRC in im_contacts) + if(CIRC.exonet && CIRC.assembly) + im_contacts_ui[++im_contacts_ui.len] = list("name" = sanitize(CIRC.assembly.name), "address" = CIRC.exonet.address, "ref" = "\ref[CIRC]") + + //Actual messages. for(var/I in im_list) im_list_ui[++im_list_ui.len] = list("address" = I["address"], "to_address" = I["to_address"], "im" = I["im"]) diff --git a/code/game/objects/items/devices/communicator/messaging.dm b/code/game/objects/items/devices/communicator/messaging.dm index fffa0407f8..e50540acb0 100644 --- a/code/game/objects/items/devices/communicator/messaging.dm +++ b/code/game/objects/items/devices/communicator/messaging.dm @@ -1,162 +1,166 @@ -// Proc: receive_exonet_message() -// Parameters: 4 (origin atom - the source of the message's holder, origin_address - where the message came from, message - the message received, -// text - message text to send if message is of type "text") -// Description: Handles voice requests and invite messages originating from both real communicators and ghosts. Also includes a ping response and IM function. -/obj/item/device/communicator/receive_exonet_message(var/atom/origin_atom, origin_address, message, text) - if(message == "voice") - if(isobserver(origin_atom) || istype(origin_atom, /obj/item/device/communicator)) - if(origin_atom in voice_invites) - var/user = null - if(ismob(origin_atom.loc)) - user = origin_atom.loc - open_connection(user, origin_atom) - return - else if(origin_atom in voice_requests) - return //Spam prevention - else - request(origin_atom) - if(message == "ping") - if(network_visibility) - var/random = rand(200,350) - random = random / 10 - exonet.send_message(origin_address, "64 bytes received from [exonet.address] ecmp_seq=1 ttl=51 time=[random] ms") - if(message == "text") - request_im(origin_atom, origin_address, text) - return - -// Proc: receive_exonet_message() -// Parameters: 3 (origin atom - the source of the message's holder, origin_address - where the message came from, message - the message received) -// Description: Handles voice requests and invite messages originating from both real communicators and ghosts. Also includes a ping response. -/mob/observer/dead/receive_exonet_message(origin_atom, origin_address, message, text) - if(message == "voice") - if(istype(origin_atom, /obj/item/device/communicator)) - var/obj/item/device/communicator/comm = origin_atom - if(src in comm.voice_invites) - comm.open_connection(src) - return - to_chat(src, "\icon[origin_atom] Receiving communicator request from [origin_atom]. To answer, use the Call Communicator \ - verb, and select that name to answer the call.") - src << 'sound/machines/defib_SafetyOn.ogg' - comm.voice_invites |= src - if(message == "ping") - if(client && client.prefs.communicator_visibility) - var/random = rand(450,700) - random = random / 10 - exonet.send_message(origin_address, "64 bytes received from [exonet.address] ecmp_seq=1 ttl=51 time=[random] ms") - if(message == "text") - to_chat(src, "\icon[origin_atom] Received text message from [origin_atom]: \"[text]\"") - src << 'sound/machines/defib_safetyOff.ogg' - exonet_messages.Add("From [origin_atom]:
[text]") - return - -// Proc: request_im() -// Parameters: 3 (candidate - the communicator wanting to message the device, origin_address - the address of the sender, text - the message) -// Description: Response to a communicator trying to message the device. -// Adds them to the list of people that have messaged this device and adds the message to the message list. -/obj/item/device/communicator/proc/request_im(var/atom/candidate, var/origin_address, var/text) - var/who = null - if(isobserver(candidate)) - var/mob/observer/dead/ghost = candidate - who = ghost - im_list += list(list("address" = origin_address, "to_address" = exonet.address, "im" = text)) - else if(istype(candidate, /obj/item/device/communicator)) - var/obj/item/device/communicator/comm = candidate - who = comm.owner - comm.im_contacts |= src - im_list += list(list("address" = origin_address, "to_address" = exonet.address, "im" = text)) - else return - - im_contacts |= candidate - - if(!who) - return - - if(ringer) - playsound(loc, 'sound/machines/twobeep.ogg', 50, 1) - for (var/mob/O in hearers(2, loc)) - O.show_message(text("\icon[src] *beep*")) - - alert_called = 1 - update_icon() - - //Search for holder of the device. - var/mob/living/L = null - if(loc && isliving(loc)) - L = loc - - if(L) - to_chat(L, "\icon[src] Message from [who].") - -// Verb: text_communicator() -// Parameters: None -// Description: Allows a ghost to send a text message to a communicator. -/mob/observer/dead/verb/text_communicator() - set category = "Ghost" - set name = "Text Communicator" - set desc = "If there is a communicator available, send a text message to it." - - if(ticker.current_state < GAME_STATE_PLAYING) - to_chat(src, "The game hasn't started yet!") - return - - if (!src.stat) - return - - if (usr != src) - return //something is terribly wrong - - for(var/mob/living/L in mob_list) //Simple check so you don't have dead people calling. - if(src.client.prefs.real_name == L.real_name) - to_chat(src, "Your identity is already present in the game world. Please load in a different character first.") - return - - var/obj/machinery/exonet_node/E = get_exonet_node() - if(!E || !E.on || !E.allow_external_communicators) - to_chat(src, "The Exonet node at telecommunications is down at the moment, or is actively blocking you, \ - so your call can't go through.") - return - - var/list/choices = list() - for(var/obj/item/device/communicator/comm in all_communicators) - if(!comm.network_visibility || !comm.exonet || !comm.exonet.address) - continue - choices.Add(comm) - - if(!choices.len) - to_chat(src, "There are no available communicators, sorry.") - return - - var/choice = input(src,"Send a text message to whom?") as null|anything in choices - if(choice) - var/obj/item/device/communicator/chosen_communicator = choice - var/mob/observer/dead/O = src - var/text_message = sanitize(input(src, "What do you want the message to say?")) as message - if(text_message && O.exonet) - O.exonet.send_message(chosen_communicator.exonet.address, "text", text_message) - - to_chat(src, "You have sent '[text_message]' to [chosen_communicator].") - exonet_messages.Add("To [chosen_communicator]:
[text_message]") - log_pda("(DCOMM: [src]) sent \"[text_message]\" to [chosen_communicator]", src) - 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) - continue - if(M == src) - continue - M.show_message("Comm IM - [src] -> [chosen_communicator]: [text_message]") - - - -// Verb: show_text_messages() -// Parameters: None -// Description: Lets ghosts review messages they've sent or received. -/mob/observer/dead/verb/show_text_messages() - set category = "Ghost" - set name = "Show Text Messages" - set desc = "Allows you to see exonet text messages you've sent and received." - - var/HTML = "Exonet Message Log" - for(var/line in exonet_messages) - HTML += line + "
" - HTML +="" - usr << browse(HTML, "window=log;size=400x444;border=1;can_resize=1;can_close=1;can_minimize=0") \ No newline at end of file +// Proc: receive_exonet_message() +// Parameters: 4 (origin atom - the source of the message's holder, origin_address - where the message came from, message - the message received, +// text - message text to send if message is of type "text") +// Description: Handles voice requests and invite messages originating from both real communicators and ghosts. Also includes a ping response and IM function. +/obj/item/device/communicator/receive_exonet_message(var/atom/origin_atom, origin_address, message, text) + if(message == "voice") + if(isobserver(origin_atom) || istype(origin_atom, /obj/item/device/communicator)) + if(origin_atom in voice_invites) + var/user = null + if(ismob(origin_atom.loc)) + user = origin_atom.loc + open_connection(user, origin_atom) + return + else if(origin_atom in voice_requests) + return //Spam prevention + else + request(origin_atom) + if(message == "ping") + if(network_visibility) + var/random = rand(200,350) + random = random / 10 + exonet.send_message(origin_address, "64 bytes received from [exonet.address] ecmp_seq=1 ttl=51 time=[random] ms") + if(message == "text") + request_im(origin_atom, origin_address, text) + return + +// Proc: receive_exonet_message() +// Parameters: 3 (origin atom - the source of the message's holder, origin_address - where the message came from, message - the message received) +// Description: Handles voice requests and invite messages originating from both real communicators and ghosts. Also includes a ping response. +/mob/observer/dead/receive_exonet_message(origin_atom, origin_address, message, text) + if(message == "voice") + if(istype(origin_atom, /obj/item/device/communicator)) + var/obj/item/device/communicator/comm = origin_atom + if(src in comm.voice_invites) + comm.open_connection(src) + return + to_chat(src, "\icon[origin_atom] Receiving communicator request from [origin_atom]. To answer, use the Call Communicator \ + verb, and select that name to answer the call.") + src << 'sound/machines/defib_SafetyOn.ogg' + comm.voice_invites |= src + if(message == "ping") + if(client && client.prefs.communicator_visibility) + var/random = rand(450,700) + random = random / 10 + exonet.send_message(origin_address, "64 bytes received from [exonet.address] ecmp_seq=1 ttl=51 time=[random] ms") + if(message == "text") + to_chat(src, "\icon[origin_atom] Received text message from [origin_atom]: \"[text]\"") + src << 'sound/machines/defib_safetyOff.ogg' + exonet_messages.Add("From [origin_atom]:
[text]") + return + +// Proc: request_im() +// Parameters: 3 (candidate - the communicator wanting to message the device, origin_address - the address of the sender, text - the message) +// Description: Response to a communicator trying to message the device. +// Adds them to the list of people that have messaged this device and adds the message to the message list. +/obj/item/device/communicator/proc/request_im(var/atom/candidate, var/origin_address, var/text) + var/who = null + if(isobserver(candidate)) + var/mob/observer/dead/ghost = candidate + who = ghost + im_list += list(list("address" = origin_address, "to_address" = exonet.address, "im" = text)) + else if(istype(candidate, /obj/item/device/communicator)) + var/obj/item/device/communicator/comm = candidate + who = comm.owner + comm.im_contacts |= src + im_list += list(list("address" = origin_address, "to_address" = exonet.address, "im" = text)) + else if(istype(candidate, /obj/item/integrated_circuit)) + var/obj/item/integrated_circuit/CIRC = candidate + who = CIRC + im_list += list(list("address" = origin_address, "to_address" = exonet.address, "im" = text)) + else return + + im_contacts |= candidate + + if(!who) + return + + if(ringer) + playsound(loc, 'sound/machines/twobeep.ogg', 50, 1) + for (var/mob/O in hearers(2, loc)) + O.show_message(text("\icon[src] *beep*")) + + alert_called = 1 + update_icon() + + //Search for holder of the device. + var/mob/living/L = null + if(loc && isliving(loc)) + L = loc + + if(L) + to_chat(L, "\icon[src] Message from [who].") + +// Verb: text_communicator() +// Parameters: None +// Description: Allows a ghost to send a text message to a communicator. +/mob/observer/dead/verb/text_communicator() + set category = "Ghost" + set name = "Text Communicator" + set desc = "If there is a communicator available, send a text message to it." + + if(ticker.current_state < GAME_STATE_PLAYING) + to_chat(src, "The game hasn't started yet!") + return + + if (!src.stat) + return + + if (usr != src) + return //something is terribly wrong + + for(var/mob/living/L in mob_list) //Simple check so you don't have dead people calling. + if(src.client.prefs.real_name == L.real_name) + to_chat(src, "Your identity is already present in the game world. Please load in a different character first.") + return + + var/obj/machinery/exonet_node/E = get_exonet_node() + if(!E || !E.on || !E.allow_external_communicators) + to_chat(src, "The Exonet node at telecommunications is down at the moment, or is actively blocking you, \ + so your call can't go through.") + return + + var/list/choices = list() + for(var/obj/item/device/communicator/comm in all_communicators) + if(!comm.network_visibility || !comm.exonet || !comm.exonet.address) + continue + choices.Add(comm) + + if(!choices.len) + to_chat(src, "There are no available communicators, sorry.") + return + + var/choice = input(src,"Send a text message to whom?") as null|anything in choices + if(choice) + var/obj/item/device/communicator/chosen_communicator = choice + var/mob/observer/dead/O = src + var/text_message = sanitize(input(src, "What do you want the message to say?")) as message + if(text_message && O.exonet) + O.exonet.send_message(chosen_communicator.exonet.address, "text", text_message) + + to_chat(src, "You have sent '[text_message]' to [chosen_communicator].") + exonet_messages.Add("To [chosen_communicator]:
[text_message]") + log_pda("(DCOMM: [src]) sent \"[text_message]\" to [chosen_communicator]", src) + 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) + continue + if(M == src) + continue + M.show_message("Comm IM - [src] -> [chosen_communicator]: [text_message]") + + + +// Verb: show_text_messages() +// Parameters: None +// Description: Lets ghosts review messages they've sent or received. +/mob/observer/dead/verb/show_text_messages() + set category = "Ghost" + set name = "Show Text Messages" + set desc = "Allows you to see exonet text messages you've sent and received." + + var/HTML = "Exonet Message Log" + for(var/line in exonet_messages) + HTML += line + "
" + HTML +="" + usr << browse(HTML, "window=log;size=400x444;border=1;can_resize=1;can_close=1;can_minimize=0") diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm index 83bdee0059..150c2e1fe5 100644 --- a/code/game/objects/items/devices/flashlight.dm +++ b/code/game/objects/items/devices/flashlight.dm @@ -295,7 +295,7 @@ desc = "A desk lamp with an adjustable mount." icon_state = "lamp" force = 10 - brightness_on = 5 + brightness_on = 10 //TFF 27/11/19 - post refactor fix for intensity levels. w_class = ITEMSIZE_LARGE power_use = 0 on = 1 diff --git a/code/game/objects/items/devices/multitool.dm b/code/game/objects/items/devices/multitool.dm index b0c1113ba8..fc3f69dd22 100644 --- a/code/game/objects/items/devices/multitool.dm +++ b/code/game/objects/items/devices/multitool.dm @@ -51,10 +51,10 @@ return ..() /obj/item/device/multitool/proc/mode_switch(mob/living/user) - if(++mode_index > modes.len) mode_index = 1 + if(mode_index + 1 > modes.len) mode_index = 1 else - mode_index++ + mode_index += 1 toolmode = modes[mode_index] to_chat(user,"\The [src] is now set to [toolmode].") diff --git a/code/game/objects/items/devices/radio/encryptionkey.dm b/code/game/objects/items/devices/radio/encryptionkey.dm index 0d81f8559e..754369e13e 100644 --- a/code/game/objects/items/devices/radio/encryptionkey.dm +++ b/code/game/objects/items/devices/radio/encryptionkey.dm @@ -68,7 +68,7 @@ /obj/item/device/encryptionkey/heads/captain name = "colony director's encryption key" icon_state = "cap_cypherkey" - channels = list("Command" = 1, "Security" = 1, "Engineering" = 0, "Science" = 0, "Medical" = 0, "Supply" = 0, "Service" = 0) + channels = list("Command" = 1, "Security" = 1, "Engineering" = 1, "Science" = 1, "Medical" = 1, "Supply" = 1, "Service" = 1) /obj/item/device/encryptionkey/heads/ai_integrated name = "ai integrated encryption key" @@ -99,7 +99,7 @@ /obj/item/device/encryptionkey/heads/hop name = "head of personnel's encryption key" icon_state = "hop_cypherkey" - channels = list("Supply" = 1, "Service" = 1, "Command" = 1, "Security" = 0) + channels = list("Supply" = 1, "Service" = 1, "Command" = 1, "Security" = 1) /* /obj/item/device/encryptionkey/headset_mine name = "mining radio encryption key" diff --git a/code/game/objects/items/devices/radio/encryptionkey_vr.dm b/code/game/objects/items/devices/radio/encryptionkey_vr.dm index a70ad6f7df..5be1effb35 100644 --- a/code/game/objects/items/devices/radio/encryptionkey_vr.dm +++ b/code/game/objects/items/devices/radio/encryptionkey_vr.dm @@ -1,7 +1,7 @@ /obj/item/device/encryptionkey/heads/hop name = "head of personnel's encryption key" icon_state = "hop_cypherkey" - channels = list("Supply" = 1, "Service" = 1, "Command" = 1, "Security" = 0, "Explorer" = 0) + channels = list("Supply" = 1, "Service" = 1, "Command" = 1, "Security" = 1, "Explorer" = 1) /obj/item/device/encryptionkey/heads/ai_integrated name = "ai integrated encryption key" @@ -12,7 +12,7 @@ /obj/item/device/encryptionkey/heads/captain name = "colony director's encryption key" icon_state = "cap_cypherkey" - channels = list("Command" = 1, "Security" = 1, "Engineering" = 0, "Science" = 0, "Medical" = 0, "Supply" = 0, "Service" = 0, "Explorer" = 0) + channels = list("Command" = 1, "Security" = 1, "Engineering" = 1, "Science" = 1, "Medical" = 1, "Supply" = 1, "Service" = 1, "Explorer" = 1) /obj/item/device/encryptionkey/heads/rd name = "research director's encryption key" diff --git a/code/game/objects/items/devices/radio/headset_vr.dm b/code/game/objects/items/devices/radio/headset_vr.dm index a82e694d0e..49783eaca4 100644 --- a/code/game/objects/items/devices/radio/headset_vr.dm +++ b/code/game/objects/items/devices/radio/headset_vr.dm @@ -22,12 +22,12 @@ SPECIES_WEREBEAST = 'icons/mob/species/werebeast/ears.dmi') /obj/item/device/radio/headset/mob_headset //Adminbus headset for simplemob shenanigans. - name = "nonhuman radio implant" - desc = "An updated, modular intercom that requires no hands to operate. Takes encryption keys" + name = "nonhuman radio receiver" + desc = "An updated, self-adhesive modular intercom that requires no hands to operate or ears to hold, just stick it on. Takes encryption keys" /obj/item/device/radio/headset/mob_headset/receive_range(freq, level) if(ismob(src.loc)) - return ..(freq, level) + return ..(freq, level, 1) return -1 /obj/item/device/radio/headset/mob_headset/afterattack(var/atom/movable/target, mob/living/user, proximity) @@ -36,6 +36,7 @@ if(istype(target,/mob/living/simple_mob)) var/mob/living/simple_mob/M = target if(!M.mob_radio) + user.drop_item() forceMove(M) M.mob_radio = src return diff --git a/code/game/objects/items/devices/spy_bug.dm b/code/game/objects/items/devices/spy_bug.dm index e3392f33fe..1f15d36b12 100644 --- a/code/game/objects/items/devices/spy_bug.dm +++ b/code/game/objects/items/devices/spy_bug.dm @@ -60,7 +60,7 @@ name = "broken bug" desc = "" //Even when it's broken it's inconspicuous icon = 'icons/obj/weapons.dmi' - icon_state = "eshield0" + icon_state = "eshield" item_state = "nothing" layer = TURF_LAYER+0.2 w_class = ITEMSIZE_TINY @@ -75,7 +75,7 @@ name = "bug" desc = "" //Nothing to see here icon = 'icons/obj/weapons.dmi' - icon_state = "eshield0" + icon_state = "eshield" item_state = "nothing" layer = TURF_LAYER+0.2 w_class = ITEMSIZE_TINY diff --git a/code/game/objects/items/devices/translocator_vr.dm b/code/game/objects/items/devices/translocator_vr.dm new file mode 100644 index 0000000000..ef0ec42b51 --- /dev/null +++ b/code/game/objects/items/devices/translocator_vr.dm @@ -0,0 +1,450 @@ +//The perfect adminboos device? +/obj/item/device/perfect_tele + name = "personal translocator" + desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command." + icon = 'icons/obj/device_alt.dmi' + icon_state = "hand_tele" + w_class = ITEMSIZE_SMALL + origin_tech = list(TECH_MAGNET = 5, TECH_BLUESPACE = 5, TECH_ILLEGAL = 7) + + var/cell_type = /obj/item/weapon/cell/device/weapon + var/obj/item/weapon/cell/power_source + var/charge_cost = 800 // cell/device/weapon has 2400 + var/battery_lock = 0 //If set, weapon cannot switch batteries + + var/longrange = 0 //Can teleport very long distances + var/abductor = 0 //Can be used on teleportation blocking turfs + + var/list/beacons = list() + var/ready = 1 + var/beacons_left = 3 + var/failure_chance = 5 //Percent + var/obj/item/device/perfect_tele_beacon/destination + var/datum/effect/effect/system/spark_spread/spk + var/list/warned_users = list() + var/list/logged_events = list() + +/obj/item/device/perfect_tele/New() + ..() + flags |= NOBLUDGEON + if(cell_type) + power_source = new cell_type(src) + else + power_source = new /obj/item/weapon/cell/device(src) + spk = new(src) + spk.set_up(5, 0, src) + spk.attach(src) + +/obj/item/device/perfect_tele/Destroy() + // Must clear the beacon's backpointer or we won't GC. Someday maybe do something nicer even. + for(var/obj/item/device/perfect_tele_beacon/B in beacons) + B.tele_hand = null + beacons.Cut() + QDEL_NULL(power_source) + QDEL_NULL(spk) + return ..() + +/obj/item/device/perfect_tele/update_icon() + if(!power_source) + icon_state = "[initial(icon_state)]_o" + else if(ready && (power_source.check_charge(charge_cost) || power_source.fully_charged())) + icon_state = "[initial(icon_state)]" + else + icon_state = "[initial(icon_state)]_w" + + ..() + +/obj/item/device/perfect_tele/attack_hand(mob/user) + if(user.get_inactive_hand() == src) + unload_ammo(user) + else + return ..() + +/obj/item/device/perfect_tele/proc/unload_ammo(mob/user) + if(battery_lock) + to_chat(user,"[src] does not have a battery port.") + return + if(user.get_inactive_hand() == src && power_source) + to_chat(user,"You eject \the [power_source] from \the [src].") + user.put_in_hands(power_source) + power_source = null + update_icon() + else + to_chat(user,"[src] does not have a power cell.") + +/obj/item/device/perfect_tele/attack_self(mob/user) + if(!(user.ckey in warned_users)) + warned_users |= user.ckey + alert(user,"This device can be easily used to break ERP preferences due to the nature of teleporting \ + and tele-vore. Make sure you carefully examine someone's OOC prefs before teleporting them if you are \ + going to use this device for ERP purposes. This device records all warnings given and teleport events for \ + admin review in case of pref-breaking, so just don't do it.","OOC WARNING") + + var/choice = alert(user,"What do you want to do?","[src]","Create Beacon","Cancel","Target Beacon") + switch(choice) + if("Create Beacon") + if(beacons_left <= 0) + alert("The translocator can't support any more beacons!","Error") + return + + var/new_name = html_encode(input(user,"New beacon's name (2-20 char):","[src]") as text|null) + + if(length(new_name) > 20 || length(new_name) < 2) + alert("Entered name length invalid (must be longer than 2, no more than than 20).","Error") + return + if(new_name in beacons) + alert("No duplicate names, please. '[new_name]' exists already.","Error") + return + + var/obj/item/device/perfect_tele_beacon/nb = new(get_turf(src)) + nb.tele_name = new_name + nb.tele_hand = src + nb.creator = user.ckey + beacons[new_name] = nb + beacons_left-- + if(isliving(user)) + var/mob/living/L = user + L.put_in_any_hand_if_possible(nb) + + if("Target Beacon") + if(!beacons.len) + to_chat(user,"\The [src] doesn't have any beacons!") + else + var/target = input("Which beacon do you target?","[src]") in beacons|null + if(target && (target in beacons)) + destination = beacons[target] + to_chat(user,"Destination set to '[target]'.") + else + return + +/obj/item/device/perfect_tele/attackby(obj/W, mob/user) + if(istype(W,cell_type) && !power_source) + power_source = W + power_source.update_icon() //Why doesn't a cell do this already? :| + user.unEquip(power_source) + power_source.forceMove(src) + to_chat(user,"You insert \the [power_source] into \the [src].") + update_icon() + + else if(istype(W,/obj/item/device/perfect_tele_beacon)) + var/obj/item/device/perfect_tele_beacon/tb = W + if(tb.tele_name in beacons) + to_chat(user,"You re-insert \the [tb] into \the [src].") + beacons -= tb.tele_name + user.unEquip(tb) + qdel(tb) + beacons_left++ + else + to_chat(user,"\The [tb] doesn't belong to \the [src].") + return + else + ..() + +/obj/item/device/perfect_tele/proc/teleport_checks(mob/living/target,mob/living/user) + //Uhhuh, need that power source + if(!power_source) + to_chat(user,"\The [src] has no power source!") + return FALSE + + //Check for charge + if((!power_source.check_charge(charge_cost)) && (!power_source.fully_charged())) + to_chat(user,"\The [src] does not have enough power left!") + return FALSE + + //Only mob/living need apply. + if(!istype(user) || !istype(target)) + return FALSE + + //No, you can't teleport buckled people. + if(target.buckled) + to_chat(user,"The target appears to be attached to something...") + return FALSE + + //No, you can't teleport if it's not ready yet. + if(!ready) + to_chat(user,"\The [src] is still recharging!") + return FALSE + + //No, you can't teleport if there's no destination. + if(!destination) + to_chat(user,"\The [src] doesn't have a current valid destination set!") + return FALSE + + //No, you can't teleport if there's a jammer. + if(is_jammed(src) || is_jammed(destination)) + to_chat(user,"\The [src] refuses to teleport you, due to strong interference!") + return FALSE + + //No, you can't port to or from away missions. Stupidly complicated check. + var/turf/uT = get_turf(user) + var/turf/dT = get_turf(destination) + var/list/dat = list() + dat["z_level_detection"] = using_map.get_map_levels(uT.z) + + if(!uT || !dT) + return FALSE + + if(!longrange) + if( (uT.z != dT.z) && (!(dT.z in dat["z_level_detection"])) ) + to_chat(user,"\The [src] can't teleport you that far!") + return FALSE + + if(!abductor) + if(uT.block_tele || dT.block_tele) + to_chat(user,"Something is interfering with \the [src]!") + return FALSE + + //Seems okay to me! + return TRUE + +/obj/item/device/perfect_tele/afterattack(mob/living/target, mob/living/user, proximity) + //No, you can't teleport people from over there. + if(!proximity) + return + + if(!teleport_checks(target,user)) + return //The checks proc can send them a message if it wants. + + //Bzzt. + ready = 0 + power_source.use(charge_cost) + + //Failure chance + if(prob(failure_chance) && beacons.len >= 2) + var/list/wrong_choices = beacons - destination.tele_name + var/wrong_name = pick(wrong_choices) + destination = beacons[wrong_name] + to_chat(user,"\The [src] malfunctions and sends you to the wrong beacon!") + + //Destination beacon vore checking + var/turf/dT = get_turf(destination) + var/atom/real_dest = dT + + var/atom/real_loc = destination.loc + if(isbelly(real_loc)) + real_dest = real_loc + if(isliving(real_loc)) + var/mob/living/L = real_loc + if(L.vore_selected) + real_dest = L.vore_selected + else if(L.vore_organs.len) + real_dest = pick(L.vore_organs) + + //Confirm televore + var/televored = FALSE + if(isbelly(real_dest)) + var/obj/belly/B = real_dest + if(!target.can_be_drop_prey && B.owner != user) + to_chat(target,"\The [src] narrowly avoids teleporting you right into \a [lowertext(real_dest.name)]!") + real_dest = dT //Nevermind! + else + televored = TRUE + to_chat(target,"\The [src] teleports you right into \a [lowertext(real_dest.name)]!") + + //Phase-out effect + phase_out(target,get_turf(target)) + + //Move them + target.forceMove(real_dest) + + //Phase-in effect + phase_in(target,get_turf(target)) + + //And any friends! + for(var/obj/item/weapon/grab/G in target.contents) + if(G.affecting && (G.state >= GRAB_AGGRESSIVE)) + + //Phase-out effect for grabbed person + phase_out(G.affecting,get_turf(G.affecting)) + + //Move them, and televore if necessary + G.affecting.forceMove(real_dest) + if(televored) + to_chat(target,"\The [src] teleports you right into \a [lowertext(real_dest.name)]!") + + //Phase-in effect for grabbed person + phase_in(G.affecting,get_turf(G.affecting)) + + update_icon() + spawn(30 SECONDS) + ready = 1 + update_icon() + + logged_events["[world.time]"] = "[user] teleported [target] to [real_dest] [televored ? "(Belly: [lowertext(real_dest.name)])" : null]" + +/obj/item/device/perfect_tele/proc/phase_out(var/mob/M,var/turf/T) + + if(!M || !T) + return + + spk.set_up(5, 0, M) + spk.attach(M) + playsound(T, "sparks", 50, 1) + anim(T,M,'icons/mob/mob.dmi',,"phaseout",,M.dir) + +/obj/item/device/perfect_tele/proc/phase_in(var/mob/M,var/turf/T) + + if(!M || !T) + return + + spk.start() + playsound(T, 'sound/effects/phasein.ogg', 25, 1) + playsound(T, 'sound/effects/sparks2.ogg', 50, 1) + anim(T,M,'icons/mob/mob.dmi',,"phasein",,M.dir) + spk.set_up(5, 0, src) + spk.attach(src) + +/obj/item/device/perfect_tele_beacon + name = "translocator beacon" + desc = "That's unusual." + icon = 'icons/obj/device_alt.dmi' + icon_state = "motion2" + w_class = ITEMSIZE_TINY + + var/tele_name + var/obj/item/device/perfect_tele/tele_hand + var/creator + var/warned_users = list() + var/tele_network = null + +/obj/item/device/perfect_tele_beacon/New() + ..() + flags |= NOBLUDGEON + +/obj/item/device/perfect_tele_beacon/Destroy() + tele_name = null + tele_hand = null + return ..() + +/obj/item/device/perfect_tele_beacon/attack_hand(mob/user) + if((user.ckey != creator) && !(user.ckey in warned_users)) + warned_users |= user.ckey + var/choice = alert(user,"This device is a translocator beacon. Having it on your person may mean that anyone \ + who teleports to this beacon gets teleported into your selected vore-belly. If you are prey-only \ + or don't wish to potentially have a random person teleported into you, it's suggested that you \ + not carry this around.","OOC WARNING","Take It","Leave It") + if(choice == "Leave It") + return + + ..() + +/obj/item/device/perfect_tele_beacon/stationary + name = "stationary translocator beacon" + icon = 'icons/obj/radio_vr.dmi' + icon_state = "floor_beacon" + w_class = ITEMSIZE_HUGE + anchored = 1 + +GLOBAL_LIST_BOILERPLATE(premade_tele_beacons, /obj/item/device/perfect_tele_beacon/stationary) + +/obj/item/device/perfect_tele_beacon/attack_self(mob/user) + if(!isliving(user)) + return + var/mob/living/L = user + var/confirm = alert(user, "You COULD eat the beacon...", "Eat beacon?", "Eat it!", "No, thanks.") + if(confirm == "Eat it!") + var/obj/belly/bellychoice = input("Which belly?","Select A Belly") as null|anything in L.vore_organs + if(bellychoice) + user.visible_message("[user] is trying to stuff \the [src] into [user.gender == MALE ? "his" : user.gender == FEMALE ? "her" : "their"] [bellychoice]!","You begin putting \the [src] into your [bellychoice]!") + if(do_after(user,5 SECONDS,src)) + user.unEquip(src) + forceMove(bellychoice) + user.visible_message("[user] eats a telebeacon!","You eat the the beacon!") + +// A single-beacon variant for use by miners (or whatever) +/obj/item/device/perfect_tele/one_beacon + name = "mini-translocator" + desc = "A more limited translocator with a single beacon, useful for some things, like setting the mining department on fire accidentally. Legal for use in the pursuit of NanoTrasen interests, namely mining and exploration." + icon_state = "minitrans" + beacons_left = 1 //Just one + cell_type = /obj/item/weapon/cell/device + origin_tech = list(TECH_MAGNET = 5, TECH_BLUESPACE = 5) + +/* +/obj/item/device/perfect_tele/one_beacon/teleport_checks(mob/living/target,mob/living/user) + var/turf/T = get_turf(destination) + if(T && user.z != T.z) + to_chat(user,"\The [src] is too far away from the beacon. Try getting closer first!") + return FALSE + return ..() +*/ + +/obj/item/device/perfect_tele/alien + name = "alien translocator" + desc = "This strange device allows one to teleport people and objects across large distances." + + cell_type = /obj/item/weapon/cell/device/weapon/recharge/alien + charge_cost = 400 + beacons_left = 6 + failure_chance = 0 //Percent + longrange = 1 + abductor = 1 + +/obj/item/device/perfect_tele/frontier + icon_state = "minitrans" + beacons_left = 1 //Just one + battery_lock = 1 + unacidable = 1 + failure_chance = 0 //Percent + var/loc_network = null + var/phase_power = 75 + var/recharging = 0 + +/obj/item/device/perfect_tele/frontier/unload_ammo(var/mob/user) + if(recharging) + return + recharging = 1 + update_icon() + user.visible_message("[user] opens \the [src] and starts pumping the handle.", \ + "You open \the [src] and start pumping the handle.") + while(recharging) + if(!do_after(user, 10, src)) + break + playsound(get_turf(src),'sound/items/change_drill.ogg',25,1) + if(power_source.give(phase_power) < phase_power) + break + + recharging = 0 + update_icon() + +/obj/item/device/perfect_tele/frontier/update_icon() + if(recharging) + icon_state = "[initial(icon_state)]_o" + update_held_icon() + return + ..() + +/obj/item/device/perfect_tele/frontier/staff + name = "centcom translocator" + desc = "Similar to translocator technology, however, most of its destinations are hardcoded." + charge_cost = 1200 // Enough for one person and their partner + loc_network = "centcom" + longrange = 1 + +/obj/item/device/perfect_tele/frontier/staff/New() + ..() + for(var/obj/item/device/perfect_tele_beacon/stationary/nb in premade_tele_beacons) + if(nb.tele_network == loc_network) + beacons[nb.tele_name] = nb + +/obj/item/device/perfect_tele/frontier/unknown + name = "modified translocator" + desc = "This crank-charged translocator has only one beacon, but it already has a destination preprogrammed into it." + charge_cost = 1200 // Enough for one person and their partner + longrange = 1 + abductor = 1 + +/obj/item/device/perfect_tele/frontier/unknown/New() + ..() + for(var/obj/item/device/perfect_tele_beacon/stationary/nb in premade_tele_beacons) + if(nb.tele_network == loc_network) + beacons[nb.tele_name] = nb + +/obj/item/device/perfect_tele/frontier/unknown/one + loc_network = "unkone" +/obj/item/device/perfect_tele/frontier/unknown/two + loc_network = "unktwo" +/obj/item/device/perfect_tele/frontier/unknown/three + loc_network = "unkthree" +/obj/item/device/perfect_tele/frontier/unknown/four + loc_network = "unkfour" diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index d457ccf7d1..92269ead77 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -255,12 +255,14 @@ name = "toy sword" desc = "A cheap, plastic replica of an energy sword. Realistic sounds! Ages 8 and up." icon = 'icons/obj/weapons.dmi' - icon_state = "sword0" + icon_state = "esword" + var/lcolor + var/rainbow = FALSE item_icons = list( slot_l_hand_str = 'icons/mob/items/lefthand_melee.dmi', slot_r_hand_str = 'icons/mob/items/righthand_melee.dmi', ) - var/active = 0.0 + var/active = 0 w_class = ITEMSIZE_SMALL attack_verb = list("attacked", "struck", "hit") @@ -269,22 +271,54 @@ if (src.active) user << "You extend the plastic blade with a quick flick of your wrist." playsound(user, 'sound/weapons/saberon.ogg', 50, 1) - src.icon_state = "swordblue" + src.item_state = "[icon_state]_blade" src.w_class = ITEMSIZE_LARGE else user << "You push the plastic blade back down into the handle." playsound(user, 'sound/weapons/saberoff.ogg', 50, 1) - src.icon_state = "sword0" + src.item_state = "[icon_state]" src.w_class = ITEMSIZE_SMALL - - if(istype(user,/mob/living/carbon/human)) - var/mob/living/carbon/human/H = user - H.update_inv_l_hand() - H.update_inv_r_hand() - + update_icon() src.add_fingerprint(user) return +/obj/item/toy/sword/update_icon() + . = ..() + var/mutable_appearance/blade_overlay = mutable_appearance(icon, "[icon_state]_blade") + blade_overlay.color = lcolor + cut_overlays() //So that it doesn't keep stacking overlays non-stop on top of each other + if(active) + add_overlay(blade_overlay) + if(istype(usr,/mob/living/carbon/human)) + var/mob/living/carbon/human/H = usr + H.update_inv_l_hand() + H.update_inv_r_hand() + +/obj/item/toy/sword/AltClick(mob/living/user) + if(!in_range(src, user)) //Basic checks to prevent abuse + return + if(user.incapacitated() || !istype(user)) + to_chat(user, "You can't do that right now!") + return + + if(alert("Are you sure you want to recolor your blade?", "Confirm Recolor", "Yes", "No") == "Yes") + var/energy_color_input = input(usr,"","Choose Energy Color",lcolor) as color|null + if(energy_color_input) + lcolor = sanitize_hexcolor(energy_color_input) + update_icon() + +/obj/item/toy/sword/examine(mob/user) + ..() + to_chat(user, "Alt-click to recolor it.") + +/obj/item/toy/sword/attackby(obj/item/weapon/W, mob/user) + if(istype(W, /obj/item/device/multitool) && !active) + if(!rainbow) + rainbow = TRUE + else + rainbow = FALSE + to_chat(user, "You manipulate the color controller in [src].") + update_icon() /obj/item/toy/katana name = "replica katana" desc = "Woefully underpowered in D20." @@ -322,6 +356,12 @@ qdel(src) /obj/item/toy/snappop/Crossed(H as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = H + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if((ishuman(H))) //i guess carp and shit shouldn't set them off var/mob/living/carbon/M = H if(M.m_intent == "run") @@ -938,7 +978,7 @@ /obj/item/toy/plushie/mouse name = "mouse plush" desc = "A plushie of a delightful mouse! What was once considered a vile rodent is now your very best friend." - icon_state = "mouseplushie" + icon_state = "mouseplushie" //TFF 12/11/19 - updated icon to show a sprite that doesn't replicate a dead mouse. Heck you for that! >:C pokephrase = "Squeak!" /obj/item/toy/plushie/kitten diff --git a/code/game/objects/items/weapons/RCD.dm b/code/game/objects/items/weapons/RCD.dm index f7f22d7611..034063c453 100644 --- a/code/game/objects/items/weapons/RCD.dm +++ b/code/game/objects/items/weapons/RCD.dm @@ -243,6 +243,13 @@ electric_cost_coefficent = 41.66 // Twice as efficent, out of pity. toolspeed = 0.5 // Twice as fast, since borg versions typically have this. +/obj/item/weapon/rcd/electric/mounted/borg/swarm + can_remove_rwalls = FALSE + name = "Rapid Assimilation Device" + ranged = TRUE + toolspeed = 0.7 + material_to_use = MAT_STEELHULL + /obj/item/weapon/rcd/electric/mounted/borg/lesser can_remove_rwalls = FALSE diff --git a/code/game/objects/items/weapons/clown_items.dm b/code/game/objects/items/weapons/clown_items.dm index cb6a4e4a42..890e557f50 100644 --- a/code/game/objects/items/weapons/clown_items.dm +++ b/code/game/objects/items/weapons/clown_items.dm @@ -9,6 +9,12 @@ * Banana Peals */ /obj/item/weapon/bananapeel/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if (istype(AM, /mob/living)) var/mob/living/M = AM M.slip("the [src.name]",4) @@ -24,6 +30,12 @@ reagents.add_reagent("cleaner", 5) /obj/item/weapon/soap/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if (istype(AM, /mob/living)) var/mob/living/M = AM M.slip("the [src.name]",3) diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm index 12ed2459c6..6c5f2ced83 100644 --- a/code/game/objects/items/weapons/handcuffs.dm +++ b/code/game/objects/items/weapons/handcuffs.dm @@ -197,6 +197,9 @@ var/last_chew = 0 breakouttime = 200 cuff_type = "duct tape" +/obj/item/weapon/handcuffs/cable/tape/cyborg + dispenser = TRUE + //Legcuffs. Not /really/ handcuffs, but its close enough. /obj/item/weapon/handcuffs/legcuffs name = "legcuffs" diff --git a/code/game/objects/items/weapons/id cards/station_ids.dm b/code/game/objects/items/weapons/id cards/station_ids.dm index 4d37f154b3..7a2e39014c 100644 --- a/code/game/objects/items/weapons/id cards/station_ids.dm +++ b/code/game/objects/items/weapons/id cards/station_ids.dm @@ -23,8 +23,6 @@ var/primary_color = rgb(0,0,0) // Obtained by eyedroppering the stripe in the middle of the card var/secondary_color = rgb(0,0,0) // Likewise for the oval in the top-left corner - var/datum/job/job_access_type = /datum/job/assistant // Job type to acquire access rights from, if any - //alt titles are handled a bit weirdly in order to unobtrusively integrate into existing ID system var/assignment = null //can be alt title or the actual job var/rank = null //actual job @@ -134,16 +132,6 @@ icon_state = "silver" item_state = "silver_id" -/obj/item/weapon/card/id/silver/secretary - assignment = "Command Secretary" - rank = "Command Secretary" - job_access_type = /datum/job/secretary - -/obj/item/weapon/card/id/silver/hop - assignment = "Head of Personnel" - rank = "Head of Personnel" - job_access_type = /datum/job/hop - /obj/item/weapon/card/id/gold name = "identification card" desc = "A golden card which shows power and might." @@ -154,13 +142,11 @@ /obj/item/weapon/card/id/gold/captain assignment = "Colony Director" rank = "Colony Director" - job_access_type = /datum/job/captain /obj/item/weapon/card/id/gold/captain/spare name = "\improper Colony Director's spare ID" desc = "The spare ID of the High Lord himself." registered_name = "Colony Director" - job_access_type = /datum/job/captain /obj/item/weapon/card/id/synthetic name = "\improper Synthetic ID" @@ -205,31 +191,6 @@ primary_color = rgb(189,237,237) secondary_color = rgb(223,255,255) -/obj/item/weapon/card/id/medical/doctor - assignment = "Medical Doctor" - rank = "Medical Doctor" - job_access_type = /datum/job/doctor - -/obj/item/weapon/card/id/medical/chemist - assignment = "Chemist" - rank = "Chemist" - job_access_type = /datum/job/chemist - -/obj/item/weapon/card/id/medical/geneticist - assignment = "Geneticist" - rank = "Geneticist" - job_access_type = /datum/job/doctor //geneticist - -/obj/item/weapon/card/id/medical/psychiatrist - assignment = "Psychiatrist" - rank = "Psychiatrist" - job_access_type = /datum/job/psychiatrist - -/obj/item/weapon/card/id/medical/paramedic - assignment = "Paramedic" - rank = "Paramedic" - job_access_type = /datum/job/paramedic - /obj/item/weapon/card/id/medical/head name = "identification card" desc = "A card which represents care and compassion." @@ -238,7 +199,6 @@ secondary_color = rgb(255,223,127) assignment = "Chief Medical Officer" rank = "Chief Medical Officer" - job_access_type = /datum/job/cmo /obj/item/weapon/card/id/security name = "identification card" @@ -247,21 +207,6 @@ primary_color = rgb(189,47,0) secondary_color = rgb(223,127,95) -/obj/item/weapon/card/id/security/officer - assignment = "Security Officer" - rank = "Security Officer" - job_access_type = /datum/job/officer - -/obj/item/weapon/card/id/security/detective - assignment = "Detective" - rank = "Detective" - job_access_type = /datum/job/detective - -/obj/item/weapon/card/id/security/warden - assignment = "Warden" - rank = "Warden" - job_access_type = /datum/job/warden - /obj/item/weapon/card/id/security/head name = "identification card" desc = "A card which represents honor and protection." @@ -270,7 +215,6 @@ secondary_color = rgb(255,223,127) assignment = "Head of Security" rank = "Head of Security" - job_access_type = /datum/job/hos /obj/item/weapon/card/id/engineering name = "identification card" @@ -279,16 +223,6 @@ primary_color = rgb(189,94,0) secondary_color = rgb(223,159,95) -/obj/item/weapon/card/id/engineering/engineer - assignment = "Station Engineer" - rank = "Station Engineer" - job_access_type = /datum/job/engineer - -/obj/item/weapon/card/id/engineering/atmos - assignment = "Atmospheric Technician" - rank = "Atmospheric Technician" - job_access_type = /datum/job/atmos - /obj/item/weapon/card/id/engineering/head name = "identification card" desc = "A card which represents creativity and ingenuity." @@ -297,7 +231,6 @@ secondary_color = rgb(255,223,127) assignment = "Chief Engineer" rank = "Chief Engineer" - job_access_type = /datum/job/chief_engineer /obj/item/weapon/card/id/science name = "identification card" @@ -306,21 +239,6 @@ primary_color = rgb(142,47,142) secondary_color = rgb(191,127,191) -/obj/item/weapon/card/id/science/scientist - assignment = "Scientist" - rank = "Scientist" - job_access_type = /datum/job/scientist - -/obj/item/weapon/card/id/science/xenobiologist - assignment = "Xenobiologist" - rank = "Xenobiologist" - job_access_type = /datum/job/xenobiologist - -/obj/item/weapon/card/id/science/roboticist - assignment = "Roboticist" - rank = "Roboticist" - job_access_type = /datum/job/roboticist - /obj/item/weapon/card/id/science/head name = "identification card" desc = "A card which represents knowledge and reasoning." @@ -329,7 +247,6 @@ secondary_color = rgb(255,223,127) assignment = "Research Director" rank = "Research Director" - job_access_type = /datum/job/rd /obj/item/weapon/card/id/cargo name = "identification card" @@ -338,16 +255,6 @@ primary_color = rgb(142,94,0) secondary_color = rgb(191,159,95) -/obj/item/weapon/card/id/cargo/cargo_tech - assignment = "Cargo Technician" - rank = "Cargo Technician" - job_access_type = /datum/job/cargo_tech - -/obj/item/weapon/card/id/cargo/mining - assignment = "Shaft Miner" - rank = "Shaft Miner" - job_access_type = /datum/job/mining - /obj/item/weapon/card/id/cargo/head name = "identification card" desc = "A card which represents service and planning." @@ -356,12 +263,10 @@ secondary_color = rgb(255,223,127) assignment = "Quartermaster" rank = "Quartermaster" - job_access_type = /datum/job/qm /obj/item/weapon/card/id/assistant assignment = USELESS_JOB //VOREStation Edit - Visitor not Assistant rank = USELESS_JOB //VOREStation Edit - Visitor not Assistant - job_access_type = /datum/job/assistant /obj/item/weapon/card/id/civilian name = "identification card" @@ -371,42 +276,6 @@ secondary_color = rgb(95,159,191) assignment = "Civilian" rank = "Assistant" - job_access_type = /datum/job/assistant - -/obj/item/weapon/card/id/civilian/bartender - assignment = "Bartender" - rank = "Bartender" - job_access_type = /datum/job/bartender - -/obj/item/weapon/card/id/civilian/botanist - assignment = "Botanist" - rank = "Botanist" - job_access_type = /datum/job/hydro - -/obj/item/weapon/card/id/civilian/chaplain - assignment = "Chaplain" - rank = "Chaplain" - job_access_type = /datum/job/chaplain - -/obj/item/weapon/card/id/civilian/chef - assignment = "Chef" - rank = "Chef" - job_access_type = /datum/job/chef - -/obj/item/weapon/card/id/civilian/internal_affairs_agent - assignment = "Internal Affairs Agent" - rank = "Internal Affairs Agent" - job_access_type = /datum/job/lawyer - -/obj/item/weapon/card/id/civilian/janitor - assignment = "Janitor" - rank = "Janitor" - job_access_type = /datum/job/janitor - -/obj/item/weapon/card/id/civilian/librarian - assignment = "Librarian" - rank = "Librarian" - job_access_type = /datum/job/librarian /obj/item/weapon/card/id/civilian/head //This is not the HoP. There's no position that uses this right now. name = "identification card" diff --git a/code/game/objects/items/weapons/material/material_weapons.dm b/code/game/objects/items/weapons/material/material_weapons.dm index a911d1e137..3f2b1978d3 100644 --- a/code/game/objects/items/weapons/material/material_weapons.dm +++ b/code/game/objects/items/weapons/material/material_weapons.dm @@ -86,10 +86,13 @@ health-- check_health() -/obj/item/weapon/material/attackby(obj/item/weapon/W, mob/user as mob) +/obj/item/weapon/material/attackby(obj/item/weapon/W, mob/user) if(istype(W, /obj/item/weapon/whetstone)) var/obj/item/weapon/whetstone/whet = W repair(whet.repair_amount, whet.repair_time, user) + if(istype(W, /obj/item/weapon/material/sharpeningkit)) + var/obj/item/weapon/material/sharpeningkit/SK = W + repair(SK.repair_amount, SK.repair_time, user) ..() /obj/item/weapon/material/proc/check_health(var/consumed) @@ -134,7 +137,19 @@ to_chat(user, "You can't repair \the [src].") return - +/obj/item/weapon/material/proc/sharpen(var/material, var/sharpen_time, var/kit, mob/living/M) + if(!fragile) + if(health < initial(health)) + to_chat(M, "You should repair [src] first. Try using [kit] on it.") + return FALSE + M.visible_message("[M] begins to replace parts of [src] with [kit].", "You begin to replace parts of [src] with [kit].") + if(do_after(usr, sharpen_time)) + M.visible_message("[M] has finished replacing parts of [src].", "You finish replacing parts of [src].") + src.set_material(material) + return TRUE + else + to_chat(M, "You can't sharpen and re-edge [src].") + return FALSE /* Commenting this out pending rebalancing of radiation based on small objects. @@ -162,4 +177,4 @@ Commenting this out pending rebalancing of radiation based on small objects. TemperatureAct(150) else return ..() -*/ \ No newline at end of file +*/ diff --git a/code/game/objects/items/weapons/material/shards.dm b/code/game/objects/items/weapons/material/shards.dm index 7d7d78eeba..8df81e434c 100644 --- a/code/game/objects/items/weapons/material/shards.dm +++ b/code/game/objects/items/weapons/material/shards.dm @@ -108,6 +108,12 @@ /obj/item/weapon/material/shard/Crossed(AM as mob|obj) ..() + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(isliving(AM)) var/mob/M = AM diff --git a/code/game/objects/items/weapons/material/whetstone.dm b/code/game/objects/items/weapons/material/whetstone.dm index e312680d1b..628f450e3d 100644 --- a/code/game/objects/items/weapons/material/whetstone.dm +++ b/code/game/objects/items/weapons/material/whetstone.dm @@ -8,4 +8,69 @@ force = 3 w_class = ITEMSIZE_SMALL var/repair_amount = 5 - var/repair_time = 40 \ No newline at end of file + 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 + if(M.amount >= 5) + to_chat(user, "You begin to refine the [src] with [M]...") + if(do_after(user, 70)) + M.use(5) + var/obj/item/SK + SK = new /obj/item/weapon/material/sharpeningkit(get_turf(user), M.material.name) + to_chat(user, "You sharpen and refine the [src] into \a [SK].") + qdel(src) + if(SK) + user.put_in_hands(SK) + else + to_chat(user, "You need 5 [src] to refine it into a sharpening kit.") + +/obj/item/weapon/material/sharpeningkit + name = "sharpening kit" + desc = "A refined, fine grit whetstone, useful for sharpening dull edges, polishing out dents, and, with extra material, replacing an edge." + icon = 'icons/obj/kitchen.dmi' + icon_state = "sharpener" + hitsound = 'sound/weapons/genhit3.ogg' + force_divisor = 0.7 + thrown_force_divisor = 1 + var/repair_amount = 5 + var/repair_time = 40 + var/sharpen_time = 100 + var/uses = 0 + +/obj/item/weapon/material/sharpeningkit/examine(mob/user, distance) + . = ..() + to_chat(user, "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() + . = ..() + setrepair() + +/obj/item/weapon/material/sharpeningkit/proc/setrepair() + repair_amount = material.hardness * 0.1 + repair_time = material.weight * 0.5 + sharpen_time = material.weight * 3 + +/obj/item/weapon/material/sharpeningkit/attackby(obj/item/weapon/W, mob/user) + if(istype(W, /obj/item/stack/material)) + var/obj/item/stack/material/S = W + if(S.material == material) + S.use(1) + uses += 1 + to_chat(user, "You add a [S.material.name] [S.material.sheet_singular_name] to [src].") + return + + if(istype(W, /obj/item/weapon/material)) + if(istype(W, /obj/item/weapon/material/sharpeningkit)) + to_chat(user, "Really? Sharpening a [W] with [src]? You goofball.") + return + var/obj/item/weapon/material/M = W + if(uses >= M.w_class*2) + if(M.sharpen(src.material.name, sharpen_time, src, user)) + uses -= M.w_class*2 + return + else + to_chat(user, "Not enough material 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]!") diff --git a/code/game/objects/items/weapons/melee/energy.dm b/code/game/objects/items/weapons/melee/energy.dm index 2c4fd9949b..17d7bc4621 100644 --- a/code/game/objects/items/weapons/melee/energy.dm +++ b/code/game/objects/items/weapons/melee/energy.dm @@ -23,6 +23,26 @@ slot_r_hand_str = 'icons/mob/items/righthand_melee.dmi', ) +/obj/item/weapon/melee/energy/sword/green/New() + colorable = FALSE + lcolor = "#008000" + +/obj/item/weapon/melee/energy/sword/red/New() + colorable = FALSE + lcolor = "#FF0000" + +/obj/item/weapon/melee/energy/sword/blue/New() + colorable = FALSE + lcolor = "#0000FF" + +/obj/item/weapon/melee/energy/sword/purple/New() + colorable = FALSE + lcolor = "#800080" + +/obj/item/weapon/melee/energy/sword/white/New() + colorable = FALSE + lcolor = "#FFFFFF" + /obj/item/weapon/melee/energy/proc/activate(mob/living/user) if(active) return @@ -147,11 +167,12 @@ /obj/item/weapon/melee/energy/update_icon() . = ..() var/mutable_appearance/blade_overlay = mutable_appearance(icon, "[icon_state]_blade") - if(colorable) - blade_overlay.color = lcolor - if(rainbow || !colorable) + blade_overlay.color = lcolor + color = lcolor + if(rainbow) blade_overlay = mutable_appearance(icon, "[icon_state]_blade_rainbow") blade_overlay.color = "FFFFFF" + color = "FFFFFF" cut_overlays() //So that it doesn't keep stacking overlays non-stop on top of each other if(active) add_overlay(blade_overlay) @@ -368,6 +389,13 @@ target.taunt(user) target.adjustFireLoss(force * 6) // 30 Burn, for 50 total. +/obj/item/weapon/melee/energy/sword/ionic_rapier/lance + name = "zero-point lance" + desc = "Designed specifically for disrupting electronics at relatively close range, however it is still capable of dealing some damage to living beings." + active_force = 20 + armor_penetration = 15 + reach = 2 + /* * Charge blade. Uses a cell, and costs energy per strike. */ diff --git a/code/game/objects/items/weapons/melee/energy_vr.dm b/code/game/objects/items/weapons/melee/energy_vr.dm index 34fa761211..1d188d03ca 100644 --- a/code/game/objects/items/weapons/melee/energy_vr.dm +++ b/code/game/objects/items/weapons/melee/energy_vr.dm @@ -1,10 +1,8 @@ /obj/item/weapon/melee/energy/sword/imperial name = "energy gladius" desc = "A broad, short energy blade. You'll be glad to have this in a fight." - icon_state = "sword0" + icon_state = "impsword" icon = 'icons/obj/weapons_vr.dmi' item_icons = list(slot_l_hand_str = 'icons/mob/items/lefthand_melee_vr.dmi', slot_r_hand_str = 'icons/mob/items/righthand_melee_vr.dmi') - -/obj/item/weapon/melee/energy/sword/imperial/activate(mob/living/user) - ..() - icon_state = "sword1" \ No newline at end of file + colorable = FALSE + lcolor = "#FFFFFF" \ No newline at end of file diff --git a/code/game/objects/items/weapons/paint.dm b/code/game/objects/items/weapons/paint.dm index d3f269abaf..8e1699c800 100644 --- a/code/game/objects/items/weapons/paint.dm +++ b/code/game/objects/items/weapons/paint.dm @@ -27,7 +27,7 @@ var/global/list/cached_icons = list() return ..() New() - if(paint_type && lentext(paint_type) > 0) + if(paint_type && length(paint_type) > 0) name = paint_type + " " + name ..() reagents.add_reagent("water", volume*3/5) diff --git a/code/game/objects/items/weapons/shields_vr.dm b/code/game/objects/items/weapons/shields_vr.dm index 4d0440e564..ceab877d4a 100644 --- a/code/game/objects/items/weapons/shields_vr.dm +++ b/code/game/objects/items/weapons/shields_vr.dm @@ -2,7 +2,7 @@ name = "energy scutum" desc = "It's really easy to mispronounce the name of this shield if you've only read it in books." icon = 'icons/obj/weapons_vr.dmi' - icon_state = "eshield0" // eshield1 for expanded + icon_state = "impshield" // eshield1 for expanded item_icons = list(slot_l_hand_str = 'icons/mob/items/lefthand_melee_vr.dmi', slot_r_hand_str = 'icons/mob/items/righthand_melee_vr.dmi') /obj/item/weapon/shield/fluff/wolfgirlshield diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm index eea992ec41..29e86dbbd4 100644 --- a/code/game/objects/items/weapons/storage/bags.dm +++ b/code/game/objects/items/weapons/storage/bags.dm @@ -373,3 +373,17 @@ max_w_class = ITEMSIZE_NORMAL w_class = ITEMSIZE_SMALL can_hold = list(/obj/item/weapon/reagent_containers/food/snacks,/obj/item/weapon/reagent_containers/food/condiment) + + // ----------------------------- + // Evidence Bag + // ----------------------------- +/obj/item/weapon/storage/bag/detective + name = "secure satchel" + icon = 'icons/obj/storage.dmi' + icon_state = "detbag" + desc = "A bag for storing investigation things. You know, securely." + max_storage_space = ITEMSIZE_COST_NORMAL * 15 + max_w_class = ITEMSIZE_NORMAL + w_class = ITEMSIZE_SMALL + can_hold = list(/obj/item/weapon/forensics/swab,/obj/item/weapon/sample/print,/obj/item/weapon/sample/fibers,/obj/item/weapon/evidencebag) + diff --git a/code/game/objects/items/weapons/storage/bags_vr.dm b/code/game/objects/items/weapons/storage/bags_vr.dm new file mode 100644 index 0000000000..6f9d0a0b15 --- /dev/null +++ b/code/game/objects/items/weapons/storage/bags_vr.dm @@ -0,0 +1,2 @@ +/obj/item/weapon/storage/bag/chemistry + slot_flags = null diff --git a/code/game/objects/items/weapons/storage/boxes_vr.dm b/code/game/objects/items/weapons/storage/boxes_vr.dm index f2cbd06aed..8feee76bdd 100644 --- a/code/game/objects/items/weapons/storage/boxes_vr.dm +++ b/code/game/objects/items/weapons/storage/boxes_vr.dm @@ -33,7 +33,7 @@ starts_with = list(/obj/item/device/encryptionkey/headset_com = 7) /obj/item/weapon/storage/box/servicekeys - name = "box of command keys" + name = "box of service keys" desc = "A box full of service keys, for the HoP to give out as necessary." starts_with = list(/obj/item/device/encryptionkey/headset_service = 7) diff --git a/code/game/objects/items/weapons/teleportation.dm b/code/game/objects/items/weapons/teleportation.dm index 137eadb60d..ba5ca0a9a2 100644 --- a/code/game/objects/items/weapons/teleportation.dm +++ b/code/game/objects/items/weapons/teleportation.dm @@ -76,7 +76,7 @@ Frequency: direct = "very weak" src.temp += "[W.code]-[dir2text(get_dir(sr, tr))]-[direct]
" - src.temp += "Extranneous Signals:
" + src.temp += "Extraneous Signals:
" for (var/obj/item/weapon/implant/tracking/W in all_tracking_implants) if (!W.implanted || !(istype(W.loc,/obj/item/organ/external) || ismob(W.loc) || W.malfunction)) continue diff --git a/code/game/objects/items/weapons/traps.dm b/code/game/objects/items/weapons/traps.dm index 1e63201f4e..1febf6b1ae 100644 --- a/code/game/objects/items/weapons/traps.dm +++ b/code/game/objects/items/weapons/traps.dm @@ -106,6 +106,12 @@ can_buckle = initial(can_buckle) /obj/item/weapon/beartrap/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(deployed && isliving(AM)) var/mob/living/L = AM if(L.m_intent == "run") diff --git a/code/game/objects/structures/catwalk.dm b/code/game/objects/structures/catwalk.dm index 20fd025ea9..5c606422d7 100644 --- a/code/game/objects/structures/catwalk.dm +++ b/code/game/objects/structures/catwalk.dm @@ -87,6 +87,12 @@ return ..() /obj/structure/catwalk/Crossed() + //VOREStation Edit begin: SHADEKIN + var/mob/SK = usr + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN . = ..() if(isliving(usr)) playsound(src, pick('sound/effects/footstep/catwalk1.ogg', 'sound/effects/footstep/catwalk2.ogg', 'sound/effects/footstep/catwalk3.ogg', 'sound/effects/footstep/catwalk4.ogg', 'sound/effects/footstep/catwalk5.ogg'), 25, 1) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/personal.dm b/code/game/objects/structures/crates_lockers/closets/secure/personal.dm index 454fab779d..d5f5da1c40 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/personal.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/personal.dm @@ -4,14 +4,18 @@ req_access = list(access_all_personal_lockers) var/registered_name = null + /* //VOREStation Removal starts_with = list( /obj/item/device/radio/headset) + */ /obj/structure/closet/secure_closet/personal/Initialize() + /* //VOREStation Removal if(prob(50)) starts_with += /obj/item/weapon/storage/backpack else starts_with += /obj/item/weapon/storage/backpack/satchel/norm + */ return ..() /obj/structure/closet/secure_closet/personal/patient diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index 350e9dc514..b4162c6ac8 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -113,7 +113,7 @@ /obj/item/weapon/storage/belt/security, /obj/item/device/flash, /obj/item/weapon/melee/baton/loaded, - /obj/item/weapon/gun/energy/gun, + /obj/item/weapon/gun/magnetic/railgun/heater/pistol/hos, /obj/item/weapon/cell/device/weapon, /obj/item/clothing/accessory/holster/waist, /obj/item/weapon/melee/telebaton, @@ -223,6 +223,8 @@ starts_with += /obj/item/weapon/storage/backpack/satchel/sec if(prob(50)) starts_with += /obj/item/weapon/storage/backpack/dufflebag/sec + if(prob(30)) + starts_with += /obj/item/weapon/contraband/poster/nanotrasen return ..() /obj/structure/closet/secure_closet/security/cargo/Initialize() @@ -271,6 +273,7 @@ /obj/item/weapon/reagent_containers/food/drinks/flask/detflask, /obj/item/weapon/storage/briefcase/crimekit, /obj/item/device/taperecorder, + /obj/item/weapon/storage/bag/detective, /obj/item/device/tape/random = 3) /obj/structure/closet/secure_closet/detective/update_icon() @@ -305,6 +308,17 @@ GLOBAL_LIST_BOILERPLATE(all_brig_closets, /obj/structure/closet/secure_closet/br /obj/item/clothing/under/color/prison, /obj/item/clothing/shoes/orange) +/obj/structure/closet/secure_closet/posters + name = "morale storage" + req_access = list(access_security) + anchored = 1 + + starts_with = list( + /obj/item/weapon/contraband/poster/nanotrasen, + /obj/item/weapon/contraband/poster/nanotrasen, + /obj/item/weapon/contraband/poster/nanotrasen, + /obj/item/weapon/contraband/poster/nanotrasen, + /obj/item/weapon/contraband/poster/nanotrasen) /obj/structure/closet/secure_closet/courtroom name = "courtroom locker" diff --git a/code/game/objects/structures/ghost_pods/ghost_pods.dm b/code/game/objects/structures/ghost_pods/ghost_pods.dm index 811fc47736..970b1d2fff 100644 --- a/code/game/objects/structures/ghost_pods/ghost_pods.dm +++ b/code/game/objects/structures/ghost_pods/ghost_pods.dm @@ -83,4 +83,13 @@ to_chat(user, "Another spirit appears to have gotten to \the [src] before you. Sorry.") return - create_occupant(user) \ No newline at end of file + var/choice = input(user, "Are you certain you wish to activate this pod?", "Control Pod") as null|anything in list("Yes", "No") + + if(!choice || choice == "No") + return + + else if(used) + to_chat(user, "Another spirit appears to have gotten to \the [src] before you. Sorry.") + return + + create_occupant(user) diff --git a/code/game/objects/structures/ghost_pods/human.dm b/code/game/objects/structures/ghost_pods/human.dm new file mode 100644 index 0000000000..2eda9b6c37 --- /dev/null +++ b/code/game/objects/structures/ghost_pods/human.dm @@ -0,0 +1,246 @@ +// Ghost variant. + +/obj/structure/ghost_pod/ghost_activated/human + name = "mysterious cryopod" + desc = "This is a pod which appears to contain a body." + description_info = "This contains a body, which may wake at any time. The external controls\ + seem to be malfunctioning." + icon = 'icons/obj/Cryogenic2.dmi' + icon_state = "sleeper_1" + icon_state_opened = "sleeper_0" + density = TRUE + ghost_query_type = /datum/ghost_query/stowaway + anchored = FALSE + + var/occupant_type = "stowaway" + + var/allow_appearance_change = TRUE + + var/make_antag = MODE_STOWAWAY + + var/start_injured = FALSE + var/spawn_with_emag = TRUE + + var/list/clothing_possibilities + +/obj/structure/ghost_pod/ghost_activated/human/Initialize() + ..() + + handle_clothing_setup() + +/obj/structure/ghost_pod/ghost_activated/human/proc/handle_clothing_setup() + clothing_possibilities = list() + + clothing_possibilities |= subtypesof(/obj/item/clothing/under/color) + clothing_possibilities |= subtypesof(/obj/item/clothing/head/soft) + clothing_possibilities |= /obj/item/clothing/shoes/black + clothing_possibilities |= /obj/item/device/radio/headset + +/obj/structure/ghost_pod/ghost_activated/human/create_occupant(var/mob/M) + ..() + var/turf/T = get_turf(src) + var/mob/living/carbon/human/H = new(src) + + H.adjustCloneLoss(rand(1,5)) + if(M.mind) + M.mind.transfer_to(H) + to_chat(M, "You are a [occupant_type]!") + if(make_antag) + to_chat(M, "Your intent may not be completely beneficial.") + H.ckey = M.ckey + visible_message("As \the [src] opens, the pipes on \the [src] surge, before it grows dark.") + log_and_message_admins("successfully opened \a [src] and became a [occupant_type].") + + var/list/uniform_options + var/list/shoe_options + var/list/head_options + var/list/headset_options + + if(clothing_possibilities && clothing_possibilities.len) + for(var/path in clothing_possibilities) + if(ispath(path, /obj/item/clothing/under)) + if(!uniform_options) + uniform_options = list() + uniform_options |= path + if(ispath(path, /obj/item/clothing/shoes)) + if(!shoe_options) + shoe_options = list() + shoe_options |= path + if(ispath(path, /obj/item/clothing/head)) + if(!head_options) + head_options = list() + head_options |= path + if(ispath(path, /obj/item/device/radio/headset)) + if(!headset_options) + headset_options = list() + headset_options |= path + + if(uniform_options && uniform_options.len) + var/newpath = pick(uniform_options) + var/obj/item/clothing/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + if(shoe_options && shoe_options.len) + var/newpath = pick(shoe_options) + var/obj/item/clothing/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + if(head_options && head_options.len) + var/newpath = pick(head_options) + var/obj/item/clothing/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + if(headset_options && headset_options.len) + var/newpath = pick(headset_options) + var/obj/item/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + if(spawn_with_emag) + var/obj/item/weapon/card/emag/E = new(H) + E.name = "broken card" + E.description_antag = "This is a 'disguised' emag, to make your escape from wherever you happen to be trapped." + H.equip_to_appropriate_slot(E) + + var/newname = sanitize(input(H, "Your mind feels foggy, and you recall your name might be [H.real_name]. Would you like to change your name?", "Name change") as null|text, MAX_NAME_LEN) + if (newname) + H.real_name = newname + + icon_state = icon_state_opened + + H.forceMove(T) + + if(make_antag) + var/datum/antagonist/antag = all_antag_types[make_antag] + if(antag) + if(antag.add_antagonist(H.mind, 1, 1, 0, 1, 1)) + log_admin("\The [src] made [key_name(src)] into a [antag.role_text].") + + if(start_injured) // Done 3 different times to disperse damage. + H.adjustBruteLoss(rand(1,20)) + H.adjustBruteLoss(rand(1,20)) + H.adjustBruteLoss(rand(1,20)) + + if(allow_appearance_change) + H.change_appearance(APPEARANCE_ALL, H.loc, check_species_whitelist = 1) + + visible_message("\The [src] [pick("gurgles", "seizes", "clangs")] before releasing \the [H]!") + +// Manual Variant +// This one lacks the emag option due to the fact someone has to activate it, and they will probably help the person. +/obj/structure/ghost_pod/manual/human + name = "mysterious cryopod" + desc = "This is a pod which appears to contain a body." + description_info = "This contains a body, which may wake at any time. The external controls\ + seem to be functioning, though the warning lights that flash give no solace.." + icon = 'icons/obj/Cryogenic2.dmi' + icon_state = "sleeper_1" + icon_state_opened = "sleeper_0" + density = TRUE + ghost_query_type = /datum/ghost_query/lost_passenger + anchored = FALSE + + var/occupant_type = "lost passenger" + + var/allow_appearance_change = TRUE + + var/make_antag = MODE_STOWAWAY + + var/start_injured = TRUE + + var/list/clothing_possibilities + +/obj/structure/ghost_pod/manual/human/Initialize() + ..() + + handle_clothing_setup() + +/obj/structure/ghost_pod/manual/human/proc/handle_clothing_setup() + clothing_possibilities = list() + + clothing_possibilities |= subtypesof(/obj/item/clothing/under/utility) + clothing_possibilities |= subtypesof(/obj/item/clothing/head/beret) + clothing_possibilities |= /obj/item/clothing/shoes/black + clothing_possibilities |= /obj/item/device/radio/headset + +/obj/structure/ghost_pod/manual/human/create_occupant(var/mob/M) + ..() + var/turf/T = get_turf(src) + var/mob/living/carbon/human/H = new(src) + + H.adjustCloneLoss(rand(1,5)) + if(M.mind) + M.mind.transfer_to(H) + to_chat(M, "You are a [occupant_type]!") + if(make_antag) + to_chat(M, "Your intent may not be completely beneficial.") + H.ckey = M.ckey + visible_message("As \the [src] opens, the pipes on \the [src] surge, before it grows dark.") + log_and_message_admins("successfully opened \a [src] and got a [occupant_type].") + + var/list/uniform_options + var/list/shoe_options + var/list/head_options + var/list/headset_options + + if(clothing_possibilities && clothing_possibilities.len) + for(var/path in clothing_possibilities) + if(ispath(path, /obj/item/clothing/under)) + if(!uniform_options) + uniform_options = list() + uniform_options |= path + if(ispath(path, /obj/item/clothing/shoes)) + if(!shoe_options) + shoe_options = list() + shoe_options |= path + if(ispath(path, /obj/item/clothing/head)) + if(!head_options) + head_options = list() + head_options |= path + if(ispath(path, /obj/item/device/radio/headset)) + if(!headset_options) + headset_options = list() + headset_options |= path + + if(uniform_options && uniform_options.len) + var/newpath = pick(uniform_options) + var/obj/item/clothing/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + if(shoe_options && shoe_options.len) + var/newpath = pick(shoe_options) + var/obj/item/clothing/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + if(head_options && head_options.len) + var/newpath = pick(head_options) + var/obj/item/clothing/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + if(headset_options && headset_options.len) + var/newpath = pick(headset_options) + var/obj/item/C = new newpath(H) + H.equip_to_appropriate_slot(C) + + var/newname = sanitize(input(H, "Your mind feels foggy, and you recall your name might be [H.real_name]. Would you like to change your name?", "Name change") as null|text, MAX_NAME_LEN) + if (newname) + H.real_name = newname + + icon_state = icon_state_opened + + H.forceMove(T) + + if(make_antag) + var/datum/antagonist/antag = all_antag_types[make_antag] + if(antag) + if(antag.add_antagonist(H.mind, 1, 1, 0, 1, 1)) + log_admin("\The [src] made [key_name(src)] into a [antag.role_text].") + + if(start_injured) // Done 3 different times to disperse damage. + H.adjustBruteLoss(rand(1,20)) + H.adjustBruteLoss(rand(1,20)) + H.adjustBruteLoss(rand(1,20)) + + if(allow_appearance_change) + H.change_appearance(APPEARANCE_ALL, H.loc, check_species_whitelist = 1) + + visible_message("\The [src] [pick("gurgles", "seizes", "clangs")] before releasing \the [H]!") diff --git a/code/game/objects/structures/ghost_pods/silicon.dm b/code/game/objects/structures/ghost_pods/silicon.dm index 8fd3fcea7c..32a26ce479 100644 --- a/code/game/objects/structures/ghost_pods/silicon.dm +++ b/code/game/objects/structures/ghost_pods/silicon.dm @@ -58,4 +58,50 @@ R.ckey = M.ckey visible_message("As \the [src] opens, the eyes of the robot flicker as it is activated.") R.Namepick() - ..() \ No newline at end of file + ..() + +/obj/structure/ghost_pod/ghost_activated/swarm_drone + name = "drone shell" + desc = "A heavy metallic ball." + icon = 'icons/mob/swarmbot.dmi' + icon_state = "swarmer_unactivated" + density = FALSE + anchored = FALSE + + var/drone_class = "general" + var/drone_type = /mob/living/silicon/robot/drone/swarm + +/obj/structure/ghost_pod/ghost_activated/swarm_drone/create_occupant(var/mob/M) + var/mob/living/silicon/robot/drone/swarm/R = new drone_type(get_turf(src)) + if(M.mind) + M.mind.transfer_to(R) + to_chat(M, "You are [R], the remnant of some distant species, mechanical or flesh, living or dead.") + R.ckey = M.ckey + visible_message("As \the [src] shudders, it glows before lifting itself with three shimmering limbs!") + spawn(3 SECONDS) + to_chat(R,"Many of your tools are standard drone devices, however others provide you with particular benefits.") + to_chat(R,"Unlike standard drones, you are capable of utilizing 'zero point wells', found in your 'spells' tab.") + to_chat(R,"Here you will also find your replication ability(s), depending on the type of drone you are.") + to_chat(R,"Gunners have a special anti-personnel gun capable of shocking or punching through armor with low damage.") + to_chat(R,"Impalers have an energy-lance.") + to_chat(R,"General drones have the unique ability to produce one of each of these two types of shells per generation.") + if(!QDELETED(src)) + qdel(src) + +/obj/structure/ghost_pod/ghost_activated/swarm_drone/event/Initialize() + ..() + + var/turf/T = get_turf(src) + say_dead_object("A [drone_class] swarm drone shell is now available in \the [T.loc].", src) + +/obj/structure/ghost_pod/ghost_activated/swarm_drone/event/gunner + name = "gunner shell" + + drone_class = "gunner" + drone_type = /mob/living/silicon/robot/drone/swarm/gunner + +/obj/structure/ghost_pod/ghost_activated/swarm_drone/event/melee + name = "impaler shell" + + drone_class = "impaler" + drone_type = /mob/living/silicon/robot/drone/swarm/melee diff --git a/code/game/objects/structures/girders.dm b/code/game/objects/structures/girders.dm index 2648723385..aab0ecf7f0 100644 --- a/code/game/objects/structures/girders.dm +++ b/code/game/objects/structures/girders.dm @@ -62,7 +62,7 @@ /obj/structure/girder/update_icon() if(anchored) - icon_state = "girder" + icon_state = initial(icon_state) else icon_state = "displaced" @@ -320,6 +320,7 @@ name = "column" icon= 'icons/obj/cult.dmi' icon_state= "cultgirder" + max_health = 250 health = 250 cover = 70 girder_material = "cult" @@ -354,6 +355,13 @@ new /obj/effect/decal/remains/human(get_turf(src)) dismantle() +/obj/structure/girder/resin + name = "soft girder" + icon_state = "girder_resin" + max_health = 225 + health = 225 + cover = 60 + girder_material = "resin" /obj/structure/girder/rcd_values(mob/living/user, obj/item/weapon/rcd/the_rcd, passed_mode) var/turf/simulated/T = get_turf(src) diff --git a/code/game/objects/structures/musician.dm b/code/game/objects/structures/musician.dm index ff1826116a..39eea11236 100644 --- a/code/game/objects/structures/musician.dm +++ b/code/game/objects/structures/musician.dm @@ -103,12 +103,12 @@ if(!playing || shouldStopPlaying(user))//If the instrument is playing, or special case playing = 0 return - if(lentext(note) == 0) + if(length(note) == 0) continue var/cur_note = text2ascii(note) - 96 if(cur_note < 1 || cur_note > 7) continue - for(var/i=2 to lentext(note)) + for(var/i=2 to length(note)) var/ni = copytext(note,i,i+1) if(!text2num(ni)) if(ni == "#" || ni == "b" || ni == "n") @@ -196,11 +196,11 @@ t = html_encode(input(usr, "Please paste the entire song, formatted:", text("[]", name), t) as message) if(!in_range(instrumentObj, usr)) return - if(lentext(t) >= INSTRUMENT_MAX_LINE_LENGTH*INSTRUMENT_MAX_LINE_NUMBER) + if(length(t) >= INSTRUMENT_MAX_LINE_LENGTH*INSTRUMENT_MAX_LINE_NUMBER) var/cont = input(usr, "Your message is too long! Would you like to continue editing it?", "", "yes") in list("yes", "no") if(cont == "no") break - while(lentext(t) > INSTRUMENT_MAX_LINE_LENGTH*INSTRUMENT_MAX_LINE_NUMBER) + while(length(t) > INSTRUMENT_MAX_LINE_LENGTH*INSTRUMENT_MAX_LINE_NUMBER) //split into lines spawn() lines = splittext(t, "\n") @@ -214,7 +214,7 @@ lines.Cut(INSTRUMENT_MAX_LINE_NUMBER+1) var/linenum = 1 for(var/l in lines) - if(lentext(l) > INSTRUMENT_MAX_LINE_LENGTH) + if(length(l) > INSTRUMENT_MAX_LINE_LENGTH) to_chat(usr, "Line [linenum] too long!") lines.Remove(l) else @@ -244,7 +244,7 @@ return if(lines.len > INSTRUMENT_MAX_LINE_NUMBER) return - if(lentext(newline) > INSTRUMENT_MAX_LINE_LENGTH) + if(length(newline) > INSTRUMENT_MAX_LINE_LENGTH) newline = copytext(newline, 1, INSTRUMENT_MAX_LINE_LENGTH) lines.Add(newline) else if(href_list["deleteline"]) @@ -257,7 +257,7 @@ var/content = html_encode(input("Enter your line: ", instrumentObj.name, lines[num]) as text|null) if(!content || !in_range(instrumentObj, usr)) return - if(lentext(content) > INSTRUMENT_MAX_LINE_LENGTH) + if(length(content) > INSTRUMENT_MAX_LINE_LENGTH) content = copytext(content, 1, INSTRUMENT_MAX_LINE_LENGTH) if(num > lines.len || num < 1) return diff --git a/code/game/objects/structures/props/swarm.dm b/code/game/objects/structures/props/swarm.dm new file mode 100644 index 0000000000..8419f7086a --- /dev/null +++ b/code/game/objects/structures/props/swarm.dm @@ -0,0 +1,150 @@ +/obj/structure/cult/pylon/swarm + name = "Swarm Construct" + desc = "A small pod." + icon = 'icons/mob/swarmbot.dmi' + icon_state = "pod" + light_color = "#00B2B2" + + shatter_message = "The energetic field shatters!" + impact_sound = 'sound/effects/Glasshit.ogg' + shatter_sound = 'sound/effects/phasein.ogg' + + var/list/active_beams + +/obj/structure/cult/pylon/swarm/CanPass(atom/movable/mover, turf/target) + if(istype(mover, /mob/living)) + var/mob/living/L = mover + if(L.faction == "swarmer") + return TRUE + else if(istype(mover, /obj/item/projectile)) + var/obj/item/projectile/P = mover + if(istype(P.firer) && P.firer.faction == "swarmer") + return TRUE + return ..() + +/obj/structure/cult/pylon/swarm/Initialize() + ..() + active_beams = list() + +/obj/structure/cult/pylon/swarm/Destroy() + for(var/datum/beam/B in active_beams) + QDEL_NULL(B) + active_beams = null + ..() + +/obj/structure/cult/pylon/swarm/pylonhit(var/damage) + if(!isbroken) + if(prob(1 + damage * 3)) + visible_message("[shatter_message]") + STOP_PROCESSING(SSobj, src) + playsound(get_turf(src),shatter_sound, 75, 1) + isbroken = 1 + density = 0 + icon_state = "[initial(icon_state)]-broken" + set_light(0) + +/obj/structure/cult/pylon/swarm/attackpylon(mob/user as mob, var/damage) + if(!isbroken) + if(prob(1 + damage * 3)) + user.visible_message( + "[user] smashed \the [src]!", + "You hit \the [src], and its crystal breaks apart!", + "You hear a tinkle of crystalline shards." + ) + STOP_PROCESSING(SSobj, src) + user.do_attack_animation(src) + playsound(get_turf(src),shatter_sound, 75, 1) + isbroken = 1 + density = 0 + icon_state = "[initial(icon_state)]-broken" + set_light(0) + else + to_chat(user, "You hit \the [src]!") + playsound(get_turf(src),impact_sound, 75, 1) + else + if(prob(damage * 2)) + to_chat(user, "You pulverize what was left of \the [src]!") + qdel(src) + else + to_chat(user, "You hit \the [src]!") + playsound(get_turf(src),impact_sound, 75, 1) + +/obj/structure/cult/pylon/swarm/pylon_unique() + . = ..() + + return . + +/obj/structure/cult/pylon/swarm/zp_well + name = "Zero Point Well" + desc = "Infinite cosmic power, itty bitty usability." + + icon_state = "trap" + + description_info = "An infinitely small point in space that may or may not be used to supply power to some form of advanced machine." + + activation_cooldown = 0 // These things run constantly. + +/obj/structure/cult/pylon/swarm/zp_well/pylon_unique() + . = ..() + + for(var/mob/living/silicon/robot/drone/swarm/S in view(3, src)) + var/has_beam = FALSE + for(var/datum/beam/B in active_beams) + if(B.target == S) + has_beam = TRUE + break + + if(!has_beam) + active_beams |= Beam(S,icon='icons/effects/beam.dmi',icon_state="holo_beam",time=3 SECONDS,maxdistance=3,beam_type = /obj/effect/ebeam,beam_sleep_time=2) + + if(S.cell) + S.cell.give(rand(5, 30)) + + . = TRUE + + return . + +/obj/structure/cult/pylon/swarm/defender + name = "Zero Point Wall" + desc = "Infinite cosmic power, itty bitty passability." + + icon_state = "barricade" + + description_info = "An infinitely small point in space spread upon infinitely many finitely-bounded points in space. Nice." + +/obj/structure/cult/pylon/swarm/defender/pylonhit(var/damage) + if(!isbroken) + if(prob(1 + damage * 3) && round(damage * 0.8) >= 30) + visible_message("[shatter_message]") + STOP_PROCESSING(SSobj, src) + playsound(get_turf(src),shatter_sound, 75, 1) + isbroken = 1 + density = 0 + icon_state = "[initial(icon_state)]-broken" + set_light(0) + +/obj/structure/cult/pylon/swarm/defender/attackpylon(mob/user as mob, var/damage) + if(!isbroken) + if(prob(1 + damage * 3) && round(damage * 0.8) >= 25) + user.visible_message( + "[user] smashed \the [src]!", + "You hit \the [src], and its crystal breaks apart!", + "You hear a tinkle of crystalline shards." + ) + STOP_PROCESSING(SSobj, src) + user.do_attack_animation(src) + playsound(get_turf(src),shatter_sound, 75, 1) + isbroken = 1 + density = 0 + icon_state = "[initial(icon_state)]-broken" + set_light(0) + else + to_chat(user, "You hit \the [src]!") + playsound(get_turf(src),impact_sound, 75, 1) + else + if(prob(damage * 2)) + to_chat(user, "You pulverize what was left of \the [src]!") + qdel(src) + else + to_chat(user, "You hit \the [src]!") + playsound(get_turf(src),impact_sound, 75, 1) diff --git a/code/game/turfs/simulated/wall_attacks.dm b/code/game/turfs/simulated/wall_attacks.dm index 8599def4a5..676ad392f0 100644 --- a/code/game/turfs/simulated/wall_attacks.dm +++ b/code/game/turfs/simulated/wall_attacks.dm @@ -93,8 +93,9 @@ if(..()) return 1 if(!can_open) - to_chat(user, "You push the wall, but nothing happens.") - playsound(src, 'sound/weapons/Genhit.ogg', 25, 1) + if(!material.wall_touch_special(src, user)) + to_chat(user, "You push the wall, but nothing happens.") + playsound(src, 'sound/weapons/Genhit.ogg', 25, 1) else toggle_open(user) return 0 diff --git a/code/game/turfs/simulated/wall_types.dm b/code/game/turfs/simulated/wall_types.dm index 37bf0d7541..bff82d6e0e 100644 --- a/code/game/turfs/simulated/wall_types.dm +++ b/code/game/turfs/simulated/wall_types.dm @@ -59,6 +59,9 @@ /turf/simulated/wall/snowbrick/New(var/newloc) ..(newloc,"packed snow") +/turf/simulated/wall/resin/New(var/newloc) + ..(newloc,"resin",null,"resin") + // Kind of wondering if this is going to bite me in the butt. /turf/simulated/wall/skipjack/New(var/newloc) ..(newloc,"alienalloy") diff --git a/code/game/verbs/ooc.dm b/code/game/verbs/ooc.dm index 0c6fa0fed7..b75de6685e 100644 --- a/code/game/verbs/ooc.dm +++ b/code/game/verbs/ooc.dm @@ -9,28 +9,28 @@ if(!mob) return if(IsGuestKey(key)) - src << "Guests may not use OOC." + to_chat(src, "Guests may not use OOC.") return msg = sanitize(msg) if(!msg) return if(!is_preference_enabled(/datum/client_preference/show_ooc)) - src << "You have OOC muted." + to_chat(src, "You have OOC muted.") return if(!holder) if(!config.ooc_allowed) - src << "OOC is globally muted." + to_chat(src, "OOC is globally muted.") return if(!config.dooc_allowed && (mob.stat == DEAD)) usr << "OOC for dead mobs has been turned off." return if(prefs.muted & MUTE_OOC) - src << "You cannot use OOC (muted)." + to_chat(src, "You cannot use OOC (muted).") return if(findtext(msg, "byond://")) - src << "Advertising other servers is not allowed." + to_chat(src, "Advertising other servers is not allowed.") log_admin("[key_name(src)] has attempted to advertise in OOC: [msg]") message_admins("[key_name_admin(src)] has attempted to advertise in OOC: [msg]") return @@ -86,7 +86,7 @@ return if(IsGuestKey(key)) - src << "Guests may not use OOC." + to_chat(src, "Guests may not use OOC.") return msg = sanitize(msg) @@ -94,21 +94,21 @@ return if(!is_preference_enabled(/datum/client_preference/show_looc)) - src << "You have LOOC muted." + to_chat(src, "You have LOOC muted.") return if(!holder) if(!config.looc_allowed) - src << "LOOC is globally muted." + to_chat(src, "LOOC is globally muted.") return if(!config.dooc_allowed && (mob.stat == DEAD)) usr << "OOC for dead mobs has been turned off." return if(prefs.muted & MUTE_OOC) - src << "You cannot use OOC (muted)." + to_chat(src, "You cannot use OOC (muted).") return if(findtext(msg, "byond://")) - src << "Advertising other servers is not allowed." + to_chat(src, "Advertising other servers is not allowed.") log_admin("[key_name(src)] has attempted to advertise in OOC: [msg]") message_admins("[key_name_admin(src)] has attempted to advertise in OOC: [msg]") return diff --git a/code/game/verbs/suicide.dm b/code/game/verbs/suicide.dm index 4a40ea97cb..5a6bfefdb4 100644 --- a/code/game/verbs/suicide.dm +++ b/code/game/verbs/suicide.dm @@ -4,27 +4,27 @@ set hidden = 1 if (stat == DEAD) - src << "You're already dead!" + to_chat(src, "You're already dead!") return if (!ticker) - src << "You can't commit suicide before the game starts!" + to_chat(src, "You can't commit suicide before the game starts!") return if(!player_is_antag(mind)) message_admins("[ckey] has tried to suicide, but they were not permitted due to not being antagonist as human.", 1) - src << "No. Adminhelp if there is a legitimate reason." + to_chat(src, "No. Adminhelp if there is a legitimate reason.") return if (suiciding) - src << "You're already committing suicide! Be patient!" + to_chat(src, "You're already committing suicide! Be patient!") return var/confirm = alert("Are you sure you want to commit suicide?", "Confirm Suicide", "Yes", "No") if(confirm == "Yes") if(!canmove || restrained()) //just while I finish up the new 'fun' suiciding verb. This is to prevent metagaming via suicide - src << "You can't commit suicide whilst restrained! ((You can type Ghost instead however.))" + to_chat(src, "You can't commit suicide whilst restrained! ((You can type Ghost instead however.))") return suiciding = 15 does_not_breathe = 0 //Prevents ling-suicide zombies, or something @@ -92,15 +92,15 @@ set hidden = 1 if (stat == 2) - src << "You're already dead!" + to_chat(src, "You're already dead!") return if (!ticker) - src << "You can't commit suicide before the game starts!" + to_chat(src, "You can't commit suicide before the game starts!") return if (suiciding) - src << "You're already committing suicide! Be patient!" + to_chat(src, "You're already committing suicide! Be patient!") return var/confirm = alert("Are you sure you want to commit suicide?", "Confirm Suicide", "Yes", "No") @@ -116,11 +116,11 @@ set hidden = 1 if (stat == 2) - src << "You're already dead!" + to_chat(src, "You're already dead!") return if (suiciding) - src << "You're already committing suicide! Be patient!" + to_chat(src, "You're already committing suicide! Be patient!") return var/confirm = alert("Are you sure you want to commit suicide?", "Confirm Suicide", "Yes", "No") @@ -136,11 +136,11 @@ set hidden = 1 if (stat == 2) - src << "You're already dead!" + to_chat(src, "You're already dead!") return if (suiciding) - src << "You're already committing suicide! Be patient!" + to_chat(src, "You're already committing suicide! Be patient!") return var/confirm = alert("Are you sure you want to commit suicide?", "Confirm Suicide", "Yes", "No") @@ -165,4 +165,4 @@ M.show_message("[src] flashes a message across its screen, \"Wiping core files. Please acquire a new personality to continue using pAI device functions.\"", 3, "[src] bleeps electronically.", 2) death(0) else - src << "Aborting suicide attempt." + to_chat(src, "Aborting suicide attempt.") diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm index c030e25649..a8100038a8 100644 --- a/code/game/verbs/who.dm +++ b/code/game/verbs/who.dm @@ -171,7 +171,7 @@ num_event_managers_online++ if(config.admin_irc) - src << "Adminhelps are also sent to IRC. If no admins are available in game try anyway and an admin on IRC may see it and respond." + to_chat(src, "Adminhelps are also sent to IRC. If no admins are available in game try anyway and an admin on IRC may see it and respond.") msg = "Current Admins ([num_admins_online]):\n" + msg if(config.show_mods) diff --git a/code/game/world.dm b/code/game/world.dm index b611c884b0..9e97aaf610 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -57,8 +57,8 @@ populate_robolimb_list() //Must be done now, otherwise ZAS zones and lighting overlays need to be recreated. - createRandomZlevel() - + //createRandomZlevel() //VOREStation Removal: Deprecated + processScheduler = new master_controller = new /datum/controller/game_controller() diff --git a/code/modules/admin/DB ban/functions.dm b/code/modules/admin/DB ban/functions.dm index d9e1efc972..dd52884833 100644 --- a/code/modules/admin/DB ban/functions.dm +++ b/code/modules/admin/DB ban/functions.dm @@ -377,13 +377,13 @@ datum/admins/proc/DB_ban_unban_by_id(var/id) if(playercid) cidsearch = "AND computerid = '[playercid]' " else - if(adminckey && lentext(adminckey) >= 3) + if(adminckey && length(adminckey) >= 3) adminsearch = "AND a_ckey LIKE '[adminckey]%' " - if(playerckey && lentext(playerckey) >= 3) + if(playerckey && length(playerckey) >= 3) playersearch = "AND ckey LIKE '[playerckey]%' " - if(playerip && lentext(playerip) >= 3) + if(playerip && length(playerip) >= 3) ipsearch = "AND ip LIKE '[playerip]%' " - if(playercid && lentext(playercid) >= 7) + if(playercid && length(playercid) >= 7) cidsearch = "AND computerid LIKE '[playercid]%' " if(dbbantype) diff --git a/code/modules/admin/ToRban.dm b/code/modules/admin/ToRban.dm index d127bfe6f4..f4ddd3e3f2 100644 --- a/code/modules/admin/ToRban.dm +++ b/code/modules/admin/ToRban.dm @@ -72,16 +72,16 @@ var/choice = input(src,"Please select an IP address to remove from the ToR banlist:","Remove ToR ban",null) as null|anything in F.dir if(choice) F.dir.Remove(choice) - src << "Address removed" + to_chat(src, "Address removed") if("remove all") - src << "[TORFILE] was [fdel(TORFILE)?"":"not "]removed." + to_chat(src, "[TORFILE] was [fdel(TORFILE)?"":"not "]removed.") if("find") var/input = input(src,"Please input an IP address to search for:","Find ToR ban",null) as null|text if(input) if(ToRban_isbanned(input)) - src << "Address is a known ToR address" + to_chat(src, "Address is a known ToR address") else - src << "Address is not a known ToR address" + to_chat(src, "Address is not a known ToR address") return #undef TORFILE diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 8daa899692..671520fbf8 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -1305,7 +1305,7 @@ var/datum/announcement/minor/admin_min_announcer = new set desc = "Should fix any mob sprite update errors." if (!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(istype(H)) diff --git a/code/modules/admin/admin_investigate.dm b/code/modules/admin/admin_investigate.dm index 1c90383f40..12a84346b3 100644 --- a/code/modules/admin/admin_investigate.dm +++ b/code/modules/admin/admin_investigate.dm @@ -34,7 +34,7 @@ if("singulo", "telesci") //general one-round-only stuff var/F = investigate_subject2file(subject) if(!F) - src << "Error: admin_investigate: [INVESTIGATE_DIR][subject] is an invalid path or cannot be accessed." + to_chat(src, "Error: admin_investigate: [INVESTIGATE_DIR][subject] is an invalid path or cannot be accessed.") return src << browse(F,"window=investigate[subject];size=800x300") @@ -43,8 +43,8 @@ if(href_logfile) src << browse(href_logfile,"window=investigate[subject];size=800x300") else - src << "Error: admin_investigate: No href logfile found." + to_chat(src, "Error: admin_investigate: No href logfile found.") return else - src << "Error: admin_investigate: Href Logging is not on." + to_chat(src, "Error: admin_investigate: Href Logging is not on.") return diff --git a/code/modules/admin/admin_memo.dm b/code/modules/admin/admin_memo.dm index 4bcaf10d9c..24ecba7c01 100644 --- a/code/modules/admin/admin_memo.dm +++ b/code/modules/admin/admin_memo.dm @@ -22,7 +22,7 @@ return if("") F.dir.Remove(ckey) - src << "Memo removed" + to_chat(src, "Memo removed") return if( findtext(memo,"Admin Memo by [F[ckey]]" + to_chat(src, "
Admin Memo by [F[ckey]]
") //delete your own or somebody else's memo /client/proc/admin_memo_delete() @@ -48,7 +48,7 @@ ckey = src.ckey if(ckey) F.dir.Remove(ckey) - src << "Removed Memo created by [ckey]." + to_chat(src, "Removed Memo created by [ckey].") #undef MEMOFILE #undef ENABLE_MEMOS \ No newline at end of file diff --git a/code/modules/admin/admin_report.dm b/code/modules/admin/admin_report.dm index c5cff737ee..40a96cb100 100644 --- a/code/modules/admin/admin_report.dm +++ b/code/modules/admin/admin_report.dm @@ -149,7 +149,8 @@ client/proc/mark_report_done(ID as num) for(var/datum/admin_report/N in reports) if(N.ID == ID) found = N - if(!found) src << "* An error occured, sorry." + if(!found) + to_chat(src, "* An error occured, sorry.") found.done = 1 @@ -158,7 +159,7 @@ client/proc/mark_report_done(ID as num) client/proc/edit_report(ID as num) if(!src.holder || src.holder.level < 0) - src << "You tried to modify the news, but you're not an admin!" + to_chat(src, "You tried to modify the news, but you're not an admin!") return var/savefile/Reports = new("data/reports.sav") @@ -170,7 +171,8 @@ client/proc/edit_report(ID as num) for(var/datum/admin_report/N in reports) if(N.ID == ID) found = N - if(!found) src << "* An error occured, sorry." + if(!found) + to_chat(src, "* An error occured, sorry.") var/body = input(src.mob, "Enter a body for the news", "Body") as null|message if(!body) return diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 9f8e6271f3..cb111adc9c 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -451,7 +451,7 @@ var/list/admin_verbs_event_manager = list( verbs.Remove(/client/proc/hide_most_verbs, admin_verbs_hideable) verbs += /client/proc/show_verbs - src << "Most of your adminverbs have been hidden." + to_chat(src, "Most of your adminverbs have been hidden.") feedback_add_details("admin_verb","HMV") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! return @@ -462,7 +462,7 @@ var/list/admin_verbs_event_manager = list( remove_admin_verbs() verbs += /client/proc/show_verbs - src << "Almost all of your adminverbs have been hidden." + to_chat(src, "Almost all of your adminverbs have been hidden.") feedback_add_details("admin_verb","TAVVH") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! return @@ -473,7 +473,7 @@ var/list/admin_verbs_event_manager = list( verbs -= /client/proc/show_verbs add_admin_verbs() - src << "All of your adminverbs are now visible." + to_chat(src, "All of your adminverbs are now visible.") feedback_add_details("admin_verb","TAVVS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! @@ -493,7 +493,7 @@ var/list/admin_verbs_event_manager = list( feedback_add_details("admin_verb","P") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! else if(istype(mob,/mob/new_player)) - src << "Error: Aghost: Can't admin-ghost whilst in the lobby. Join or Observe first." + to_chat(src, "Error: Aghost: Can't admin-ghost whilst in the lobby. Join or Observe first.") else //ghostize var/mob/body = mob @@ -655,7 +655,7 @@ var/list/admin_verbs_event_manager = list( else D = preferences_datums[warned_ckey] if(!D) - src << "Error: warn(): No such ckey found." + to_chat(src, "Error: warn(): No such ckey found.") return if(++D.warns >= MAX_WARNS) //uh ohhhh...you'reee iiiiin trouuuubble O:) @@ -818,7 +818,7 @@ var/list/admin_verbs_event_manager = list( deadmin_holder.reassociate() log_admin("[src] re-admined themself.") message_admins("[src] re-admined themself.", 1) - src << "You now have the keys to control the planet, or atleast a small space station" + to_chat(src, "You now have the keys to control the planet, or atleast a small space station") verbs -= /client/proc/readmin_self /client/proc/deadmin_self() @@ -830,7 +830,7 @@ var/list/admin_verbs_event_manager = list( log_admin("[src] deadmined themself.") message_admins("[src] deadmined themself.", 1) deadmin() - src << "You are now a normal player." + to_chat(src, "You are now a normal player.") verbs |= /client/proc/readmin_self feedback_add_details("admin_verb","DAS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! @@ -841,10 +841,10 @@ var/list/admin_verbs_event_manager = list( if(config) if(config.log_hrefs) config.log_hrefs = 0 - src << "Stopped logging hrefs" + to_chat(src, "Stopped logging hrefs") else config.log_hrefs = 1 - src << "Started logging hrefs" + to_chat(src, "Started logging hrefs") /client/proc/check_ai_laws() set name = "Check AI Laws" @@ -1039,11 +1039,11 @@ var/list/admin_verbs_event_manager = list( if(config) if(config.cult_ghostwriter) config.cult_ghostwriter = 0 - src << "Disallowed ghost writers." + to_chat(src, "Disallowed ghost writers.") message_admins("Admin [key_name_admin(usr)] has disabled ghost writers.", 1) else config.cult_ghostwriter = 1 - src << "Enabled ghost writers." + to_chat(src, "Enabled ghost writers.") message_admins("Admin [key_name_admin(usr)] has enabled ghost writers.", 1) /client/proc/toggledrones() @@ -1053,11 +1053,11 @@ var/list/admin_verbs_event_manager = list( if(config) if(config.allow_drone_spawn) config.allow_drone_spawn = 0 - src << "Disallowed maint drones." + to_chat(src, "Disallowed maint drones.") message_admins("Admin [key_name_admin(usr)] has disabled maint drones.", 1) else config.allow_drone_spawn = 1 - src << "Enabled maint drones." + to_chat(src, "Enabled maint drones.") message_admins("Admin [key_name_admin(usr)] has enabled maint drones.", 1) /client/proc/man_up(mob/T as mob in mob_list) diff --git a/code/modules/admin/ckey_vr.dm b/code/modules/admin/ckey_vr.dm index 90463eafcc..a46a4cdc07 100644 --- a/code/modules/admin/ckey_vr.dm +++ b/code/modules/admin/ckey_vr.dm @@ -4,7 +4,7 @@ set name = "Set CKey" set desc = "Mob to teleport" if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/list/keys = list() diff --git a/code/modules/admin/verbs/adminjump.dm b/code/modules/admin/verbs/adminjump.dm index 56af4e7e15..642aa456cb 100644 --- a/code/modules/admin/verbs/adminjump.dm +++ b/code/modules/admin/verbs/adminjump.dm @@ -91,7 +91,7 @@ keys += M.client var/selection = input("Please, select a player!", "Admin Jumping", null, null) as null|anything in sortKey(keys) if(!selection) - src << "No keys found." + to_chat(src, "No keys found.") return var/mob/M = selection:mob log_admin("[key_name(usr)] jumped to [key_name(M)]") diff --git a/code/modules/admin/verbs/atmosdebug.dm b/code/modules/admin/verbs/atmosdebug.dm index 083789e550..cc77c43cd0 100644 --- a/code/modules/admin/verbs/atmosdebug.dm +++ b/code/modules/admin/verbs/atmosdebug.dm @@ -3,7 +3,7 @@ set name = "Check Piping" set background = 1 if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return feedback_add_details("admin_verb","CP") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! @@ -44,7 +44,7 @@ set category = "Mapping" set name = "Check Power" if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return feedback_add_details("admin_verb","CPOW") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! diff --git a/code/modules/admin/verbs/custom_event.dm b/code/modules/admin/verbs/custom_event.dm index 35931f8e54..987eb89c29 100644 --- a/code/modules/admin/verbs/custom_event.dm +++ b/code/modules/admin/verbs/custom_event.dm @@ -4,7 +4,7 @@ set name = "Change Custom Event" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/input = sanitize(input(usr, "Enter the description of the custom event. Be descriptive. To cancel the event, make this blank or hit cancel.", "Custom Event", custom_event_msg) as message|null, MAX_PAPER_MESSAGE_LEN, extra = 0) @@ -30,11 +30,11 @@ set name = "Custom Event Info" if(!custom_event_msg || custom_event_msg == "") - src << "There currently is no known custom event taking place." - src << "Keep in mind: it is possible that an admin has not properly set this." + to_chat(src, "There currently is no known custom event taking place.") + to_chat(src, "Keep in mind: it is possible that an admin has not properly set this.") return - src << "

Custom Event

" - src << "

A custom event is taking place. OOC Info:

" - src << "[custom_event_msg]" - src << "
" + to_chat(src, "

Custom Event

") + to_chat(src, "

A custom event is taking place. OOC Info:

") + to_chat(src, "[custom_event_msg]") + to_chat(src, "
") diff --git a/code/modules/admin/verbs/deadsay.dm b/code/modules/admin/verbs/deadsay.dm index 08eda6bb34..6099fd5e29 100644 --- a/code/modules/admin/verbs/deadsay.dm +++ b/code/modules/admin/verbs/deadsay.dm @@ -3,16 +3,16 @@ set name = "Dsay" //Gave this shit a shorter name so you only have to time out "dsay" rather than "dead say" to use it --NeoFite set hidden = 1 if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(!src.mob) return if(prefs.muted & MUTE_DEADCHAT) - src << "You cannot send DSAY messages (muted)." + to_chat(src, "You cannot send DSAY messages (muted).") return if(!is_preference_enabled(/datum/client_preference/show_dsay)) - src << "You have deadchat muted." + to_chat(src, "You have deadchat muted.") return var/stafftype = uppertext(holder.rank) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 11541128c5..6a9405fef6 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -562,7 +562,7 @@ SMES.output_level = 75000 if(!found_the_pump && response == "Setup Completely") - src << "Unable to locate air supply to fill up with coolant, adding some coolant around the supermatter" + to_chat(src, "Unable to locate air supply to fill up with coolant, adding some coolant around the supermatter") var/turf/simulated/T = SM.loc T.zone.air.gas["nitrogen"] += 450 T.zone.air.temperature = 50 diff --git a/code/modules/admin/verbs/diagnostics.dm b/code/modules/admin/verbs/diagnostics.dm index 9fdf39c0d1..5199f8455f 100644 --- a/code/modules/admin/verbs/diagnostics.dm +++ b/code/modules/admin/verbs/diagnostics.dm @@ -124,7 +124,7 @@ set category = "Debug" /* if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(!air_master) @@ -146,7 +146,7 @@ set category = "Debug" /* if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(!air_master) diff --git a/code/modules/admin/verbs/getlogs.dm b/code/modules/admin/verbs/getlogs.dm index 9e9ad67027..7215c8dd32 100644 --- a/code/modules/admin/verbs/getlogs.dm +++ b/code/modules/admin/verbs/getlogs.dm @@ -24,12 +24,12 @@ set category = null if(!src.holder) - src << "Only Admins may use this command." + to_chat(src, "Only Admins may use this command.") return var/client/target = input(src,"Choose somebody to grant access to the server's runtime logs (permissions expire at the end of each round):","Grant Permissions",null) as null|anything in GLOB.clients if(!istype(target,/client)) - src << "Error: giveruntimelog(): Client not found." + to_chat(src, "Error: giveruntimelog(): Client not found.") return target.verbs |= /client/proc/getruntimelog @@ -53,7 +53,7 @@ message_admins("[key_name_admin(src)] accessed file: [path]") src << run( file(path) ) - src << "Attempting to send file, this may take a fair few minutes if the file is very large." + to_chat(src, "Attempting to send file, this may take a fair few minutes if the file is very large.") return @@ -73,7 +73,7 @@ message_admins("[key_name_admin(src)] accessed file: [path]") src << run( file(path) ) - src << "Attempting to send file, this may take a fair few minutes if the file is very large." + to_chat(src, "Attempting to send file, this may take a fair few minutes if the file is very large.") return @@ -89,7 +89,7 @@ if( fexists(path) ) src << run( file(path) ) else - src << "Error: view_txt_log(): File not found/Invalid path([path])." + to_chat(src, "Error: view_txt_log(): File not found/Invalid path([path]).") return feedback_add_details("admin_verb","VTL") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! return @@ -107,7 +107,7 @@ if( fexists(path) ) src << run( file(path) ) else - src << "Error: view_atk_log(): File not found/Invalid path([path])." + to_chat(src, "Error: view_atk_log(): File not found/Invalid path([path]).") return usr << run( file(path) ) feedback_add_details("admin_verb","SSAL") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 3ffd76878e..1a3fbfe76f 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -2,7 +2,7 @@ set category = null set name = "Drop Everything" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/confirm = alert(src, "Make [M] drop everything?", "Message", "Yes", "No") @@ -20,7 +20,7 @@ set category = "Admin" set name = "Prison" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if (ismob(M)) if(istype(M, /mob/living/silicon/ai)) @@ -48,7 +48,7 @@ set category = "Admin" set name = "Check new Players" if(!holder) - src << "Only staff members may use this command." + to_chat(src, "Only staff members may use this command.") var/age = alert(src, "Age check", "Show accounts yonger then _____ days","7", "30" , "All") @@ -70,12 +70,12 @@ msg += "[key_name(C, 1, 1, highlight_special_characters)]: account is [C.player_age] days old
" if(missing_ages) - src << "Some accounts did not have proper ages set in their clients. This function requires database to be present." + to_chat(src, "Some accounts did not have proper ages set in their clients. This function requires database to be present.") if(msg != "") src << browse(msg, "window=Player_age_check") else - src << "No matches for that age range found." + to_chat(src, "No matches for that age range found.") /client/proc/cmd_admin_subtle_message(mob/M as mob in mob_list) set category = "Special Verbs" @@ -83,7 +83,7 @@ if(!ismob(M)) return if (!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/msg = sanitize(input("Message:", text("Subtle PM to [M.key]")) as text) @@ -106,7 +106,7 @@ set name = "Global Narrate" if (!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/msg = sanitize(input("Message:", text("Enter the text you wish to appear to everyone:")) as text) @@ -123,7 +123,7 @@ set name = "Direct Narrate" if(!holder) - src << "Only administrators and moderators may use this command." + to_chat(src, "Only administrators and moderators may use this command.") return if(!M) @@ -148,7 +148,7 @@ set category = "Special Verbs" set name = "Godmode" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return M.status_flags ^= GODMODE usr << " Toggled [(M.status_flags & GODMODE) ? "ON" : "OFF"]" @@ -216,7 +216,7 @@ proc/cmd_admin_mute(mob/M as mob, mute_type, automute = 0) set category = "Fun" set name = "Add Random AI Law" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/confirm = alert(src, "You sure?", "Confirm", "Yes", "No") if(confirm != "Yes") return @@ -248,7 +248,7 @@ Ccomp's first proc. any = 1 //if no ghosts show up, any will just be 0 if(!any) if(notify) - src << "There doesn't appear to be any ghosts for you to select." + to_chat(src, "There doesn't appear to be any ghosts for you to select.") return for(var/mob/M in mobs) @@ -265,12 +265,12 @@ Ccomp's first proc. set name = "Allow player to respawn" set desc = "Let's the player bypass the wait to respawn or allow them to re-enter their corpse." if(!holder) - src << "Only administrators and moderators may use this command." + to_chat(src, "Only administrators and moderators may use this command.") var/list/ghosts= get_ghosts(1,1) var/target = input("Please, select a ghost!", "COME BACK TO LIFE!", null, null) as null|anything in ghosts if(!target) - src << "Hrm, appears you didn't select a ghost" // Sanity check, if no ghosts in the list we don't want to edit a null variable and cause a runtime error. + to_chat(src, "Hrm, appears you didn't select a ghost") // Sanity check, if no ghosts in the list we don't want to edit a null variable and cause a runtime error. return var/mob/observer/dead/G = ghosts[target] @@ -295,7 +295,7 @@ Ccomp's first proc. set desc = "Toggles antagHUD usage for observers" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") var/action="" if(config.antag_hud_allowed) for(var/mob/observer/dead/g in get_ghosts()) @@ -306,7 +306,7 @@ Ccomp's first proc. g.has_enabled_antagHUD = 2 // We'll allow them to respawn g << "The Administrator has disabled AntagHUD " config.antag_hud_allowed = 0 - src << "AntagHUD usage has been disabled" + to_chat(src, "AntagHUD usage has been disabled") action = "disabled" else for(var/mob/observer/dead/g in get_ghosts()) @@ -315,7 +315,7 @@ Ccomp's first proc. g << "The Administrator has enabled AntagHUD " // Notify all observers they can now use AntagHUD config.antag_hud_allowed = 1 action = "enabled" - src << "AntagHUD usage has been enabled" + to_chat(src, "AntagHUD usage has been enabled") log_admin("[key_name(usr)] has [action] antagHUD usage for observers") @@ -328,14 +328,14 @@ Ccomp's first proc. set name = "Toggle antagHUD Restrictions" set desc = "Restricts players that have used antagHUD from being able to join this round." if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") var/action="" if(config.antag_hud_restricted) for(var/mob/observer/dead/g in get_ghosts()) g << "The administrator has lifted restrictions on joining the round if you use AntagHUD" action = "lifted restrictions" config.antag_hud_restricted = 0 - src << "AntagHUD restrictions have been lifted" + to_chat(src, "AntagHUD restrictions have been lifted") else for(var/mob/observer/dead/g in get_ghosts()) g << "The administrator has placed restrictions on joining the round if you use AntagHUD" @@ -344,7 +344,7 @@ Ccomp's first proc. g.has_enabled_antagHUD = 0 action = "placed restrictions" config.antag_hud_restricted = 1 - src << "AntagHUD restrictions have been enabled" + to_chat(src, "AntagHUD restrictions have been enabled") log_admin("[key_name(usr)] has [action] on joining the round if they use AntagHUD") message_admins("Admin [key_name_admin(usr)] has [action] on joining the round if they use AntagHUD", 1) @@ -359,7 +359,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set name = "Spawn Character" set desc = "(Re)Spawn a client's loaded character." if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return //I frontload all the questions so we don't have a half-done process while you're reading. @@ -443,7 +443,7 @@ Traitors and the like can also be revived with the previous role mostly intact. switch(location) if("Right Here") //Spawn them on your turf if(!src.mob) - src << "You can't use 'Right Here' when you are not 'Right Anywhere'!" + to_chat(src, "You can't use 'Right Here' when you are not 'Right Anywhere'!") return spawnloc = get_turf(src.mob) @@ -452,19 +452,19 @@ Traitors and the like can also be revived with the previous role mostly intact. spawnloc = pick(latejoin) else //I have no idea how you're here - src << "Invalid spawn location choice." + to_chat(src, "Invalid spawn location choice.") return //Did we actually get a loc to spawn them? if(!spawnloc) - src << "Couldn't get valid spawn location." + to_chat(src, "Couldn't get valid spawn location.") return new_character = new(spawnloc) //We were able to spawn them, right? if(!new_character) - src << "Something went wrong and spawning failed." + to_chat(src, "Something went wrong and spawning failed.") return //Write the appearance and whatnot out to the character @@ -517,7 +517,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set category = "Fun" set name = "Add Custom AI law" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/input = sanitize(input(usr, "Please enter anything you want the AI to do. Anything. Serious.", "What?", "") as text|null) if(!input) @@ -545,7 +545,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set category = "Special Verbs" set name = "Rejuvenate" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(!mob) return @@ -567,7 +567,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set category = "Special Verbs" set name = "Create Command Report" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/input = sanitize(input(usr, "Please enter anything you want. Anything. Serious.", "What?", "") as message|null, extra = 0) var/customname = sanitizeSafe(input(usr, "Pick a title for the report.", "Title") as text|null) @@ -595,7 +595,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set name = "Delete" if (!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return admin_delete(O) @@ -604,11 +604,11 @@ Traitors and the like can also be revived with the previous role mostly intact. set name = "List free slots" if (!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(job_master) for(var/datum/job/job in job_master.occupations) - src << "[job.title]: [job.total_positions]" + to_chat(src, "[job.title]: [job.total_positions]") feedback_add_details("admin_verb","LFS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/proc/cmd_admin_explosion(atom/O as obj|mob|turf in world) @@ -705,7 +705,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set name = "Manual Ban" set category = "Special Verbs" if(!authenticated || !holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/mob/M = null switch(alert("How would you like to ban someone today?", "Manual Ban", "Key List", "Enter Manually", "Cancel")) @@ -777,7 +777,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set category = "Debug" set name = "Stabilize Atmos." if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return feedback_add_details("admin_verb","STATM") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! // DEFERRED diff --git a/code/modules/admin/verbs/striketeam.dm b/code/modules/admin/verbs/striketeam.dm index 37fc52eda8..65d954fbc9 100644 --- a/code/modules/admin/verbs/striketeam.dm +++ b/code/modules/admin/verbs/striketeam.dm @@ -7,7 +7,7 @@ var/const/commandos_possible = 6 //if more Commandos are needed in the future set desc = "Spawns a strike team if you want to run an admin event." if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(!ticker) diff --git a/code/modules/admin/verbs/ticklag.dm b/code/modules/admin/verbs/ticklag.dm index ab5693878a..3c34f0f35a 100644 --- a/code/modules/admin/verbs/ticklag.dm +++ b/code/modules/admin/verbs/ticklag.dm @@ -19,6 +19,6 @@ if("Yes") config.Tickcomp = 1 else config.Tickcomp = 0 else - src << "Error: ticklag(): Invalid world.ticklag value. No changes made." + to_chat(src, "Error: ticklag(): Invalid world.ticklag value. No changes made.") diff --git a/code/modules/admin/view_variables/modify_variables.dm b/code/modules/admin/view_variables/modify_variables.dm index b964339aa9..8878318fd6 100644 --- a/code/modules/admin/view_variables/modify_variables.dm +++ b/code/modules/admin/view_variables/modify_variables.dm @@ -55,11 +55,11 @@ GLOBAL_PROTECT(VVpixelmovement) // the type with the base type removed from the begaining var/fancytype = types[D.type] if (findtext(fancytype, types[type])) - fancytype = copytext(fancytype, lentext(types[type])+1) - var/shorttype = copytext("[D.type]", lentext("[type]")+1) - if (lentext(shorttype) > lentext(fancytype)) + fancytype = copytext(fancytype, length(types[type])+1) + var/shorttype = copytext("[D.type]", length("[type]")+1) + if (length(shorttype) > length(fancytype)) shorttype = fancytype - if (!lentext(shorttype)) + if (!length(shorttype)) shorttype = "/" .["[D]([shorttype])\ref[D]#[i]"] = D diff --git a/code/modules/ai/ai_holder_disabled.dm b/code/modules/ai/ai_holder_disabled.dm index 8b296b2d10..dc3717fe18 100644 --- a/code/modules/ai/ai_holder_disabled.dm +++ b/code/modules/ai/ai_holder_disabled.dm @@ -5,6 +5,9 @@ // If our holder is able to do anything. /datum/ai_holder/proc/can_act() + if(!holder) // Holder missing. + SSai.processing -= src + return FALSE if(holder.stat) // Dead or unconscious. ai_log("can_act() : Stat was non-zero ([holder.stat]).", AI_LOG_TRACE) return FALSE @@ -95,4 +98,4 @@ holder.IMove(get_step(holder,moving_to)) wander_delay = base_wander_delay ai_log("handle_wander_movement() : Exited.", AI_LOG_DEBUG) -*/ \ No newline at end of file +*/ diff --git a/code/modules/assembly/holder.dm b/code/modules/assembly/holder.dm index 930329fd93..7db2d4e827 100644 --- a/code/modules/assembly/holder.dm +++ b/code/modules/assembly/holder.dm @@ -104,6 +104,12 @@ /obj/item/device/assembly_holder/Crossed(atom/movable/AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(a_left) a_left.Crossed(AM) if(a_right) diff --git a/code/modules/assembly/infrared.dm b/code/modules/assembly/infrared.dm index a76dae8ec7..afec31665d 100644 --- a/code/modules/assembly/infrared.dm +++ b/code/modules/assembly/infrared.dm @@ -25,7 +25,7 @@ /obj/item/device/assembly/infra/toggle_secure() secured = !secured if(secured) - START_PROCESSING(SSobj, src) + START_PROCESSING(SSobj, src) else on = 0 if(first) qdel(first) @@ -242,6 +242,12 @@ return /obj/effect/beam/i_beam/Crossed(atom/movable/AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(istype(AM, /obj/effect/beam)) return spawn(0) diff --git a/code/modules/assembly/mousetrap.dm b/code/modules/assembly/mousetrap.dm index 7d1c5346c0..b54df46b54 100644 --- a/code/modules/assembly/mousetrap.dm +++ b/code/modules/assembly/mousetrap.dm @@ -83,6 +83,12 @@ /obj/item/device/assembly/mousetrap/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(armed) if(ishuman(AM)) var/mob/living/carbon/H = AM diff --git a/code/modules/awaymissions/gateway.dm b/code/modules/awaymissions/gateway.dm index cee8fb73b0..b6695e39cb 100644 --- a/code/modules/awaymissions/gateway.dm +++ b/code/modules/awaymissions/gateway.dm @@ -168,6 +168,7 @@ obj/machinery/gateway/centerstation/process() update_icon() stationgate = locate(/obj/machinery/gateway/centerstation) . = ..() + density = 1 //VOREStation Add /obj/machinery/gateway/centeraway/update_icon() diff --git a/code/modules/catalogue/catalogue_data_vr.dm b/code/modules/catalogue/catalogue_data_vr.dm index ff370bca92..861e22afe9 100644 --- a/code/modules/catalogue/catalogue_data_vr.dm +++ b/code/modules/catalogue/catalogue_data_vr.dm @@ -60,6 +60,11 @@ desc = "" value = CATALOGUER_REWARD_TRIVIAL +/datum/category_item/catalogue/fauna/shadekin + name = "Sapients - Shadekin" + desc = "" + value = CATALOGUER_REWARD_EASY + /datum/category_item/catalogue/fauna/custom_species name = "Sapients - Other" desc = "Remote frontiers require people of all sorts of life...\ diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index e13573e305..7321e96a23 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -77,13 +77,13 @@ //This stops files larger than UPLOAD_LIMIT being sent from client to server via input(), client.Import() etc. /client/AllowUpload(filename, filelength) if(filelength > UPLOAD_LIMIT) - src << "Error: AllowUpload(): File Upload too large. Upload Limit: [UPLOAD_LIMIT/1024]KiB." + to_chat(src, "Error: AllowUpload(): File Upload too large. Upload Limit: [UPLOAD_LIMIT/1024]KiB.") return 0 /* //Don't need this at the moment. But it's here if it's needed later. //Helps prevent multiple files being uploaded at once. Or right after eachother. var/time_to_wait = fileaccess_timer - world.time if(time_to_wait > 0) - src << "Error: AllowUpload(): Spam prevention. Please wait [round(time_to_wait/10)] seconds." + to_chat(src, "Error: AllowUpload(): Spam prevention. Please wait [round(time_to_wait/10)] seconds.") return 0 fileaccess_timer = world.time + FTPDELAY */ return 1 @@ -105,7 +105,7 @@ del(src) return - src << "If the title screen is black, resources are still downloading. Please be patient until the title screen appears." + to_chat(src, "If the title screen is black, resources are still downloading. Please be patient until the title screen appears.") GLOB.clients += src @@ -131,10 +131,10 @@ prefs.sanitize_preferences() if(custom_event_msg && custom_event_msg != "") - src << "

Custom Event

" - src << "

A custom event is taking place. OOC Info:

" - src << "[custom_event_msg]" - src << "
" + to_chat(src, "

Custom Event

") + to_chat(src, "

A custom event is taking place. OOC Info:

") + to_chat(src, "[custom_event_msg]") + to_chat(src, "
") if(holder) @@ -160,7 +160,7 @@ screen += void if(prefs.lastchangelog != changelog_hash) //bolds the changelog button on the interface so we know there are updates. - src << "You have unread updates in the changelog." + to_chat(src, "You have unread updates in the changelog.") winset(src, "rpane.changelog", "background-color=#eaeaea;font-style=bold") if(config.aggressive_changelog) src.changes() diff --git a/code/modules/client/preference_setup/global/03_pai.dm b/code/modules/client/preference_setup/global/03_pai.dm index 8e0b4ea8a5..01c5f7a850 100644 --- a/code/modules/client/preference_setup/global/03_pai.dm +++ b/code/modules/client/preference_setup/global/03_pai.dm @@ -7,11 +7,16 @@ /datum/category_item/player_setup_item/player_global/pai/load_preferences(var/savefile/S) if(!candidate) candidate = new() - - if(!preference_mob()) + var/preference_mob = preference_mob() + if(!preference_mob)// No preference mob - this happens when we're called from client/New() before it calls ..() (via datum/preferences/New()) + spawn() + preference_mob = preference_mob() + if(!preference_mob) + return + candidate.savefile_load(preference_mob) return - candidate.savefile_load(preference_mob()) + candidate.savefile_load(preference_mob) /datum/category_item/player_setup_item/player_global/pai/save_preferences(var/savefile/S) if(!candidate) diff --git a/code/modules/client/preference_setup/loadout/gear_tweaks_vr.dm b/code/modules/client/preference_setup/loadout/gear_tweaks_vr.dm new file mode 100644 index 0000000000..488a62fbc9 --- /dev/null +++ b/code/modules/client/preference_setup/loadout/gear_tweaks_vr.dm @@ -0,0 +1,14 @@ +/datum/gear_tweak/collar_tag/get_contents(var/metadata) + return "Tag: [metadata]" + +/datum/gear_tweak/collar_tag/get_default() + return "" + +/datum/gear_tweak/collar_tag/get_metadata(var/user, var/metadata) + return sanitize( input(user, "Choose the tag text", "Character Preference", metadata) as text , MAX_NAME_LEN ) + +/datum/gear_tweak/collar_tag/tweak_item(var/obj/item/clothing/accessory/collar/C, var/metadata) + if(metadata == "") + return ..() + else + C.initialize_tag(metadata) \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout.dm b/code/modules/client/preference_setup/loadout/loadout.dm index c2e1dc52a1..285856d0cf 100644 --- a/code/modules/client/preference_setup/loadout/loadout.dm +++ b/code/modules/client/preference_setup/loadout/loadout.dm @@ -70,10 +70,13 @@ var/list/gear_datums = list() continue if(max_cost && G.cost > max_cost) continue - if(G.ckeywhitelist && !(preference_mob.ckey in G.ckeywhitelist)) //Vorestation Edit - continue //Vorestation Edit - if(G.character_name && !(preference_mob.client.prefs.real_name in G.character_name)) //Vorestation Edit - continue //Vorestation Edit + //VOREStation Edit Start + if(preference_mob && preference_mob.client) + if(G.ckeywhitelist && !(preference_mob.ckey in G.ckeywhitelist)) + continue + if(G.character_name && !(preference_mob.client.prefs.real_name in G.character_name)) + continue + //VOREStation Edit End . += gear_name /datum/category_item/player_setup_item/loadout/sanitize_character() @@ -150,10 +153,13 @@ var/list/gear_datums = list() . += "
" for(var/gear_name in LC.gear) var/datum/gear/G = LC.gear[gear_name] - if(G.ckeywhitelist && !(preference_mob.ckey in G.ckeywhitelist)) //Vorestation Edit - continue //Vorestation Edit - if(G.character_name && !(preference_mob.client.prefs.real_name in G.character_name)) //Vorestation Edit - continue //Vorestation Edit + //VOREStation Edit Start + if(preference_mob && preference_mob.client) + if(G.ckeywhitelist && !(preference_mob.ckey in G.ckeywhitelist)) + continue + if(G.character_name && !(preference_mob.client.prefs.real_name in G.character_name)) + continue + //VOREStation Edit End var/ticked = (G.display_name in pref.gear) . += "[G.display_name]" . += "[G.cost]" diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm index 63b32a2707..74b2c49557 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -6,6 +6,10 @@ slot = slot_tie sort_category = "Accessories" +/datum/gear/collar/New() + ..() + gear_tweaks = list(gear_tweak_collar_tag) + /datum/gear/collar/golden display_name = "collar, golden" path = /obj/item/clothing/accessory/collar/gold 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 13c81b63e1..c0dc19841f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -34,6 +34,12 @@ ckeywhitelist = list("aegisoa") character_name = list("Xander Bevin") +/datum/gear/fluff/xander_medal + path = /obj/item/clothing/accessory/medal/conduct + display_name = "Xander's Conduct Medal" + ckeywhitelist = list("aegisoa") + character_name = list("Xander Bevin") + /datum/gear/fluff/lynn_penlight path = /obj/item/device/flashlight/pen/fluff/lynn display_name = "Lynn's Penlight" @@ -85,6 +91,12 @@ ckeywhitelist = list("beyondmylife") character_name = list("Ne'tra Ky'ram") +/datum/gear/fluff/nolan_medal + path = /obj/item/clothing/accessory/medal/silver/unity + display_name = "Nolan's Unity Medal" + ckeywhitelist = list("blakeryan") + character_name = list("Nolan Conaway") + /datum/gear/fluff/xin_sovietuniform path = /obj/item/clothing/under/soviet display_name = "Xin's Soviet Uniform" @@ -98,6 +110,24 @@ ckeywhitelist = list("bwoincognito") character_name = list("Tasald Corlethian") +/datum/gear/fluff/tasald_cartographer_jumpsuit + path = /obj/item/clothing/under/solgov/utility/sifguard/officer/exploration + display_name = "Tasald's Cartographer's uniform - jumpsuit" + ckeywhitelist = list("bwoincognito") + character_name = list("Tasald Corlethian") + +/datum/gear/fluff/tasald_cartographer_jacket + path = /obj/item/clothing/suit/storage/service/sifguard/command + display_name = "Tasald's Cartographer's uniform - jacket" + ckeywhitelist = list("bwoincognito") + character_name = list("Tasald Corlethian") + +/datum/gear/fluff/tasald_cartographer_beret + path = /obj/item/clothing/head/beret/sol/expedition/command + display_name = "Tasald's Cartographer's uniform - beret" + ckeywhitelist = list("bwoincognito") + character_name = list("Tasald Corlethian") + /datum/gear/fluff/octavius_box path = /obj/item/weapon/storage/box/fluff/octavious display_name = "Octavious' Box" @@ -210,6 +240,12 @@ ckeywhitelist = list("epigraphzero") character_name = list("Verd Woodrow") +/datum/gear/fluff/erik_medal + path = /obj/item/clothing/accessory/medal/silver/unity + display_name = "Erik's Unity Medal" + ckeywhitelist = list("erikthedog") + character_name = list("Erik Ramadwood") + // F CKEYS // G CKEYS @@ -301,6 +337,8 @@ ckeywhitelist = list("jemli") character_name = list("Jemli") +//TFF 28/11/19 - Expired permit removal +/* /datum/gear/fluff/jeremiah_permit path = /obj/item/clothing/accessory/permit/gun/fluff/ace display_name = "Ace's Gun Permit" @@ -321,6 +359,7 @@ ckeywhitelist = list("jertheace") character_name = list("Jeremiah Acacius") allowed_roles = list("Colony Director", "Warden", "Head of Security") +*/ /datum/gear/fluff/jeremiah_holster path = /obj/item/clothing/accessory/holster/armpit @@ -432,7 +471,7 @@ path = /obj/item/clothing/accessory/medal/silver/unity display_name = "Rana's Unity Medal" ckeywhitelist = list("kitchifox") - character_name = list("Rana Uma") + character_name = list("Rana Starsong-Uma") /datum/gear/fluff/taiga_uniform path = /obj/item/clothing/under/fluff/taiga @@ -708,6 +747,12 @@ ckeywhitelist = list("techtypes") character_name = list("Lasshseeki Korss") +/datum/gear/fluff/nick_medal + path = /obj/item/clothing/accessory/medal/conduct + display_name = "Nick's Conduct Medal" + ckeywhitelist = list("thedavestdave") + character_name = list("Nick Sloan") + /datum/gear/fluff/konor_medal path = /obj/item/clothing/accessory/medal/silver/unity display_name = "Konor's Unity Medal" @@ -842,27 +887,30 @@ path = /obj/item/clothing/glasses/omnihud/med/fluff/wickedtemphud display_name = "Tempest's Medical Hud" ckeywhitelist = list("wickedtemp") - character_name = list("Chakat Tempest Venesare") + character_name = list("Chakat Tempest Venosare") allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic") + slot = slot_glasses /datum/gear/fluff/tempest_hypospray path = /obj/item/weapon/reagent_containers/hypospray/vial/tempest display_name = "Tempest's Hypospray" ckeywhitelist = list("wickedtemp") - character_name = list("Chakat Tempest Venesare") + character_name = list("Chakat Tempest Venosare") allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic") + slot = slot_belt /datum/gear/fluff/tempest_backpack path = /obj/item/weapon/storage/backpack/saddlebag/tempest display_name = "Tempest's Saddlebag" ckeywhitelist = list("wickedtemp") - character_name = list("Chakat Tempest Venesare") + character_name = list("Chakat Tempest Venosare") + slot = slot_back /datum/gear/fluff/tempest_implant path = /obj/item/weapon/implanter/reagent_generator/tempest display_name = "Tempest's Implant" ckeywhitelist = list("wickedtemp") - character_name = list("Chakat Tempest Venesare") + character_name = list("Chakat Tempest Venosare") // X CKEYS /datum/gear/fluff/penelope_box @@ -897,3 +945,9 @@ display_name = "Nehi's Radio" ckeywhitelist = list("zodiacshadow") character_name = list("Nehi Maximus") + +/datum/gear/fluff/star_sweater + path = /obj/item/clothing/accessory/sweater/fluff/star + display_name = "Star Sweater" + ckeywhitelist = list("bacon12366") + character_name = list("Elly Brown") 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 8733c16023..6c7f506073 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno_vr.dm @@ -34,6 +34,11 @@ sort_category = "Xenowear" whitelisted = "Vox" +/datum/gear/mask/transparent + display_name = "transparent breath mask" + path = /obj/item/clothing/mask/breath/transparent + sort_category = "Xenowear" + /datum/gear/uniform/loincloth display_name = "loincloth" path = /obj/item/clothing/suit/storage/fluff/loincloth diff --git a/code/modules/client/preference_setup/vore/01_ears.dm b/code/modules/client/preference_setup/vore/01_ears.dm index 91ae5f41c9..51e100ec9e 100644 --- a/code/modules/client/preference_setup/vore/01_ears.dm +++ b/code/modules/client/preference_setup/vore/01_ears.dm @@ -89,10 +89,19 @@ pref.b_wing = sanitize_integer(pref.b_wing, 0, 255, initial(pref.b_wing)) if(pref.ear_style) pref.ear_style = sanitize_inlist(pref.ear_style, ear_styles_list, initial(pref.ear_style)) + var/datum/sprite_accessory/temp_ear_style = ear_styles_list[pref.ear_style] + if(temp_ear_style.apply_restrictions && (!(pref.species in temp_ear_style.species_allowed))) + pref.ear_style = initial(pref.ear_style) if(pref.tail_style) pref.tail_style = sanitize_inlist(pref.tail_style, tail_styles_list, initial(pref.tail_style)) + var/datum/sprite_accessory/temp_tail_style = tail_styles_list[pref.tail_style] + if(temp_tail_style.apply_restrictions && (!(pref.species in temp_tail_style.species_allowed))) + pref.tail_style = initial(pref.tail_style) if(pref.wing_style) pref.wing_style = sanitize_inlist(pref.wing_style, wing_styles_list, initial(pref.wing_style)) + var/datum/sprite_accessory/temp_wing_style = wing_styles_list[pref.wing_style] + if(temp_wing_style.apply_restrictions && (!(pref.species in temp_wing_style.species_allowed))) + pref.wing_style = initial(pref.wing_style) /datum/category_item/player_setup_item/vore/ears/copy_to_mob(var/mob/living/carbon/human/character) character.ear_style = ear_styles_list[pref.ear_style] @@ -182,7 +191,7 @@ var/list/pretty_ear_styles = list("Normal" = null) for(var/path in ear_styles_list) var/datum/sprite_accessory/ears/instance = ear_styles_list[path] - if((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) + if(((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) && ((!instance.apply_restrictions) || (pref.species in instance.species_allowed))) pretty_ear_styles[instance.name] = path // Present choice to user @@ -215,7 +224,7 @@ var/list/pretty_tail_styles = list("Normal" = null) for(var/path in tail_styles_list) var/datum/sprite_accessory/tail/instance = tail_styles_list[path] - if((!instance.ckeys_allowed) || (user.ckey in instance.ckeys_allowed)) + if(((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) && ((!instance.apply_restrictions) || (pref.species in instance.species_allowed))) pretty_tail_styles[instance.name] = path // Present choice to user @@ -248,7 +257,7 @@ var/list/pretty_wing_styles = list("Normal" = null) for(var/path in wing_styles_list) var/datum/sprite_accessory/wing/instance = wing_styles_list[path] - if((!instance.ckeys_allowed) || (user.ckey in instance.ckeys_allowed)) + if(((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) && ((!instance.apply_restrictions) || (pref.species in instance.species_allowed))) pretty_wing_styles[instance.name] = path // Present choice to user diff --git a/code/modules/client/preferences_toggle_procs.dm b/code/modules/client/preferences_toggle_procs.dm index 0bf770e76c..d016029b23 100644 --- a/code/modules/client/preferences_toggle_procs.dm +++ b/code/modules/client/preferences_toggle_procs.dm @@ -203,7 +203,7 @@ toggle_preference(pref_path) - src << "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear jukebox music." + to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear jukebox music.") SScharacter_setup.queue_preferences_save(prefs) diff --git a/code/modules/client/preferences_vr.dm b/code/modules/client/preferences_vr.dm index 5c8171ce27..746a95d6db 100644 --- a/code/modules/client/preferences_vr.dm +++ b/code/modules/client/preferences_vr.dm @@ -13,7 +13,7 @@ datum/preferences toggle_preference(pref_path) - src << "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear eating related vore noises." + to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear eating related vore noises.") SScharacter_setup.queue_preferences_save(prefs) @@ -29,7 +29,7 @@ datum/preferences toggle_preference(pref_path) - src << "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear digestion related vore noises." + to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear digestion related vore noises.") SScharacter_setup.queue_preferences_save(prefs) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 8af9f36d53..21c59ee115 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -80,6 +80,16 @@ return 0 return 1 +/obj/item/clothing/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack") + . = ..() + if((. == 0) && LAZYLEN(accessories)) + for(var/obj/item/I in accessories) + var/check = I.handle_shield(user, damage, damage_source, attacker, def_zone, attack_text) + + if(check != 0) // Projectiles sometimes use negatives IIRC, 0 is only returned if something is not blocked. + . = check + break + /obj/item/clothing/proc/refit_for_species(var/target_species) if(!species_restricted) return //this item doesn't use the species_restricted system diff --git a/code/modules/clothing/clothing_vr.dm b/code/modules/clothing/clothing_vr.dm index 3e8d2d45ad..f81dd53c18 100644 --- a/code/modules/clothing/clothing_vr.dm +++ b/code/modules/clothing/clothing_vr.dm @@ -180,4 +180,4 @@ sprite_sheets = list( SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi', SPECIES_VOX = 'icons/mob/species/vox/head.dmi', - SPECIES_WEREBEAST = 'icons/mob/species/werebeast/head.dmi') \ No newline at end of file + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/head.dmi') diff --git a/code/modules/clothing/gloves/arm_guards.dm b/code/modules/clothing/gloves/arm_guards.dm index 21e7a99b35..84ebecdc1e 100644 --- a/code/modules/clothing/gloves/arm_guards.dm +++ b/code/modules/clothing/gloves/arm_guards.dm @@ -12,6 +12,10 @@ if(H.wear_suit.body_parts_covered & ARMS) to_chat(H, "You can't wear \the [src] with \the [H.wear_suit], it's in the way.") return 0 + for(var/obj/item/clothing/accessory/A in H.wear_suit) + if(A.body_parts_covered & ARMS) + to_chat(H, "You can't wear \the [src] with \the [H.wear_suit]'s [A], it's in the way.") + return 0 return 1 /obj/item/clothing/gloves/arm_guard/laserproof diff --git a/code/modules/clothing/masks/breath_vr.dm b/code/modules/clothing/masks/breath_vr.dm new file mode 100644 index 0000000000..9f6016d948 --- /dev/null +++ b/code/modules/clothing/masks/breath_vr.dm @@ -0,0 +1,4 @@ +/obj/item/clothing/mask/breath/transparent + name = "transparent breath mask" + item_state = "golem" //This is dumb and hacky but was here when I got here. + sprite_sheets = list() diff --git a/code/modules/clothing/shoes/leg_guards.dm b/code/modules/clothing/shoes/leg_guards.dm index fba1c2cd3f..14e24dad92 100644 --- a/code/modules/clothing/shoes/leg_guards.dm +++ b/code/modules/clothing/shoes/leg_guards.dm @@ -14,6 +14,10 @@ if(H.wear_suit.body_parts_covered & LEGS) H << "You can't wear \the [src] with \the [H.wear_suit], it's in the way." return 0 + for(var/obj/item/clothing/accessory/A in H.wear_suit) + if(A.body_parts_covered & LEGS) + to_chat(H, "You can't wear \the [src] with \the [H.wear_suit]'s [A], it's in the way.") + return 0 return 1 /obj/item/clothing/shoes/leg_guard/laserproof diff --git a/code/modules/clothing/spacesuits/rig/rig.dm b/code/modules/clothing/spacesuits/rig/rig.dm index a7c3287133..7cf9084435 100644 --- a/code/modules/clothing/spacesuits/rig/rig.dm +++ b/code/modules/clothing/spacesuits/rig/rig.dm @@ -1016,7 +1016,7 @@ M.stop_pulling() if(wearer.pinned.len) - src << "Your host is pinned to a wall by [wearer.pinned[1]]!" + to_chat(src, "Your host is pinned to a wall by [wearer.pinned[1]]!") return 0 // AIs are a bit slower than regular and ignore move intent. diff --git a/code/modules/clothing/spacesuits/rig/suits/pmc.dm b/code/modules/clothing/spacesuits/rig/suits/pmc.dm index 7b609be4e8..b10e559977 100644 --- a/code/modules/clothing/spacesuits/rig/suits/pmc.dm +++ b/code/modules/clothing/spacesuits/rig/suits/pmc.dm @@ -99,7 +99,7 @@ ) /obj/item/weapon/rig/pmc/security - name = "ERT-S suit control module" + name = "PMC-S suit control module" desc = "A suit worn by private military contractors. This one is setup for security. Armoured and space ready." suit_type = "PMC security" icon_state = "pmc_securitygrey_rig" diff --git a/code/modules/clothing/spacesuits/void/zaddat.dm b/code/modules/clothing/spacesuits/void/zaddat.dm index 103cf39c12..3162265e54 100644 --- a/code/modules/clothing/spacesuits/void/zaddat.dm +++ b/code/modules/clothing/spacesuits/void/zaddat.dm @@ -38,7 +38,7 @@ to_chat(M, "This Shroud has already been customized!") return 0 - suit_style = input(M, "Which suit style would you like?") in list("Engineer", "Spacer", "Knight", "Fashion", "Bishop", "Hegemony", "Rugged") + suit_style = input(M, "Which suit style would you like?") in list("Engineer", "Spacer", "Knight", "Fashion", "Bishop", "Hegemony", "Rugged", "Soft") switch(suit_style) if("Engineer") name = "\improper Engineer's Guild Shroud" @@ -106,6 +106,17 @@ helmet.desc = "Supposedly, this helmet should make humans more comfortable and familiar with the Zaddat." helmet.icon_state = "zaddat_rugged" helmet.item_state = "zaddat_rugged" + if("Soft") + name = "\improper soft Shroud" + base_name = "\improper soft Shroud" + desc = "Material and design is chosen for practical reasons, making it take as little space as possible when stowed whilst also providing reasonable comfort when worn for long periods." + icon_state = "zaddat_soft" + item_state = "zaddat_soft" + if(helmet) + helmet.name = "\improper soft Shroud hood" + helmet.desc = "Not as solid as a proper helmet, but works nonetheless." + helmet.icon_state = "zaddat_soft" + helmet.item_state = "zaddat_soft" to_chat(M, "You finish customizing your Shroud. Looking good!") has_been_customized = TRUE diff --git a/code/modules/clothing/suits/armor.dm b/code/modules/clothing/suits/armor.dm index 9df94753e6..107bea3be6 100644 --- a/code/modules/clothing/suits/armor.dm +++ b/code/modules/clothing/suits/armor.dm @@ -520,6 +520,22 @@ |ACCESSORY_SLOT_ARMOR_M) blood_overlay_type = "armor" +/obj/item/clothing/suit/armor/pcarrier/mob_can_equip(var/mob/living/carbon/human/H, slot) + if(..()) //This will only run if no other problems occured when equiping. + if(H.gloves) + if(H.gloves.body_parts_covered & ARMS) + for(var/obj/item/clothing/accessory/A in src) + if(A.body_parts_covered & ARMS) + to_chat(H, "You can't wear \the [A] with \the [H.gloves], they're in the way.") + return 0 + if(H.shoes) + if(H.shoes.body_parts_covered & LEGS) + for(var/obj/item/clothing/accessory/A in src) + if(A.body_parts_covered & LEGS) + to_chat(H, "You can't wear \the [A] with \the [H.shoes], they're in the way.") + return 0 + return 1 + /obj/item/clothing/suit/armor/pcarrier/light starting_accessories = list(/obj/item/clothing/accessory/armor/armorplate) @@ -549,6 +565,11 @@ desc = "A lightweight blue plate carrier vest. It can be equipped with armor plates, but provides no protection of its own." icon_state = "pcarrier_blue" +/obj/item/clothing/suit/armor/pcarrier/press + name = "light blue plate carrier" + desc = "A lightweight light blue plate carrier vest. It can be equipped with armor plates, but provides no protection of its own." + icon_state = "pcarrier_press" + /obj/item/clothing/suit/armor/pcarrier/blue/sol name = "peacekeeper plate carrier" desc = "A lightweight plate carrier vest in SCG Peacekeeper colors. It can be equipped with armor plates, but provides no protection of its own." diff --git a/code/modules/clothing/under/accessories/accessory_vr.dm b/code/modules/clothing/under/accessories/accessory_vr.dm index 5dc05b44c8..9f1e33f457 100644 --- a/code/modules/clothing/under/accessories/accessory_vr.dm +++ b/code/modules/clothing/under/accessories/accessory_vr.dm @@ -211,13 +211,17 @@ desc = initial(desc) else to_chat(user,"You set the [name]'s tag to '[str]'.") - name = initial(name) + " ([str])" - if(istype(src,/obj/item/clothing/accessory/collar/holo)) - desc = initial(desc) + " The tag says \"[str]\"." - else - desc = initial(desc) + " \"[str]\" has been engraved on the tag." + initialize_tag(str) + +/obj/item/clothing/accessory/collar/proc/initialize_tag(var/tag) + name = initial(name) + " ([tag])" + desc = initial(desc) + " \"[tag]\" has been engraved on the tag." writtenon = 1 +/obj/item/clothing/accessory/collar/holo/initialize_tag(var/tag) + ..() + desc = initial(desc) + " The tag says \"[tag]\"." + /obj/item/clothing/accessory/collar/attackby(obj/item/I, mob/user) if(istype(src,/obj/item/clothing/accessory/collar/holo)) return diff --git a/code/modules/clothing/under/accessories/armor.dm b/code/modules/clothing/under/accessories/armor.dm index c6abaa6015..f05b96183d 100644 --- a/code/modules/clothing/under/accessories/armor.dm +++ b/code/modules/clothing/under/accessories/armor.dm @@ -10,6 +10,24 @@ icon_state = "pouches" w_class = ITEMSIZE_NORMAL +/obj/item/clothing/accessory/armor/on_attached(var/obj/item/clothing/S, var/mob/user) + if(ishuman(user)) + var/mob/living/carbon/human/H = user + if(H.wear_suit == S) + if((body_parts_covered & ARMS) && istype(H.gloves, /obj/item/clothing)) + var/obj/item/clothing/G = H.gloves + if(G.body_parts_covered & ARMS) + to_chat(H, "You can't wear \the [src] with \the [G], it's in the way.") + S.accessories -= src + return + else if((body_parts_covered & LEGS) && istype(H.shoes, /obj/item/clothing)) + var/obj/item/clothing/Sh = H.shoes + if(Sh.body_parts_covered & LEGS) + to_chat(H, "You can't wear \the [src] with \the [Sh], it's in the way.") + S.accessories -= src + return + ..() + /////////// //Pouches /////////// @@ -74,6 +92,13 @@ armor = list(melee = 30, bullet = 15, laser = 40, energy = 10, bomb = 25, bio = 0, rad = 0) slot = ACCESSORY_SLOT_ARMOR_C +/obj/item/clothing/accessory/armor/armorplate/stab + name = "mesh armor plate" + desc = "A mesh armor plate made of steel-reinforced synthetic fibers, great for dealing with small blades. Attaches to a plate carrier." + icon_state = "armor_stab" + armor = list(melee = 25, bullet = 5, laser = 20, energy = 10, bomb = 15, bio = 0, rad = 0) + armorsoak = list(melee = 7, bullet = 5, laser = 0, energy = 0, bomb = 0, bio = 0, rad = 0) + /obj/item/clothing/accessory/armor/armorplate/medium name = "medium armor plate" desc = "A plasteel-reinforced synthetic armor plate, providing good protection. Attaches to a plate carrier." @@ -92,6 +117,56 @@ icon_state = "armor_merc" armor = list(melee = 60, bullet = 60, laser = 60, energy = 40, bomb = 40, bio = 0, rad = 0) +/obj/item/clothing/accessory/armor/armorplate/bulletproof + name = "ballistic armor plate" + desc = "A woven armor plate with additional plating, providing good protection against high-velocity trauma. Attaches to a plate carrier." + icon_state = "armor_ballistic" + slowdown = 0.6 + armor = list(melee = 10, bullet = 70, laser = 10, energy = 10, bomb = 0, bio = 0, rad = 0) + armorsoak = list(melee = 0, bullet = 10, laser = 0, energy = 5, bomb = 0, bio = 0, rad = 0) + siemens_coefficient = 0.7 + +/obj/item/clothing/accessory/armor/armorplate/riot + name = "riot armor plate" + desc = "A thick armor plate with additional padding, providing good protection against low-velocity trauma. Attaches to a plate carrier." + icon_state = "armor_riot" + slowdown = 0.6 + armor = list(melee = 70, bullet = 10, laser = 10, energy = 10, bomb = 0, bio = 0, rad = 0) + armorsoak = list(melee = 10, bullet = 0, laser = 0, energy = 5, bomb = 0, bio = 0, rad = 0) + siemens_coefficient = 0.7 + +/obj/item/clothing/accessory/armor/armorplate/laserproof + name = "ablative armor plate" + desc = "A durasteel-scaled synthetic armor plate, providing good protection against lasers. Attaches to a plate carrier." + icon_state = "armor_medium" + slowdown = 0.6 + armor = list(melee = 10, bullet = 10, laser = 70, energy = 50, bomb = 0, bio = 0, rad = 0) + armorsoak = list(melee = 0, bullet = 0, laser = 10, energy = 15, bomb = 0, bio = 0, rad = 0) + siemens_coefficient = 0.1 + +/obj/item/clothing/accessory/armor/armorplate/ablative/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack") + if(istype(damage_source, /obj/item/projectile/energy) || istype(damage_source, /obj/item/projectile/beam)) + var/obj/item/projectile/P = damage_source + + if(P.reflected) + return ..() + + var/reflectchance = 40 - round(damage/3) + if(!(def_zone in list(BP_TORSO, BP_GROIN))) + reflectchance /= 2 + if(P.starting && prob(reflectchance)) + visible_message("\The [user]'s [src.name] reflects [attack_text]!") + + + var/new_x = P.starting.x + pick(0, 0, 0, 0, 0, -1, 1, -2, 2) + var/new_y = P.starting.y + pick(0, 0, 0, 0, 0, -1, 1, -2, 2) + var/turf/curloc = get_turf(user) + + P.redirect(new_x, new_y, curloc, user) + P.reflected = 1 + + return PROJECTILE_CONTINUE + ////////////// //Arm guards ////////////// diff --git a/code/modules/detectivework/microscope/dnascanner.dm b/code/modules/detectivework/microscope/dnascanner.dm index 413fe14d01..80fb43e91c 100644 --- a/code/modules/detectivework/microscope/dnascanner.dm +++ b/code/modules/detectivework/microscope/dnascanner.dm @@ -12,7 +12,7 @@ var/closed = 0 var/scanning = 0 var/scanner_progress = 0 - var/scanner_rate = 2.50 + var/scanner_rate = 5 var/last_process_worldtime = 0 var/report_num = 0 diff --git a/code/modules/detectivework/microscope/microscope.dm b/code/modules/detectivework/microscope/microscope.dm index 3bc596fb57..33f6da65af 100644 --- a/code/modules/detectivework/microscope/microscope.dm +++ b/code/modules/detectivework/microscope/microscope.dm @@ -32,7 +32,7 @@ user << "The microscope whirrs as you examine \the [sample]." - if(!do_after(user, 25) || !sample) + if(!do_after(user, 2 SECONDS) || !sample) user << "You stop examining \the [sample]." return @@ -71,8 +71,8 @@ report.info += "Surface analysis has determined unique fingerprint strings:

" for(var/prints in card.evidence) report.info += "Fingerprint string: " - if(!is_complete_print(prints)) - report.info += "INCOMPLETE PRINT" + if(!is_complete_print(card.evidence[prints])) + report.info += "INCOMPLETE PRINT:[card.evidence[prints]]" else report.info += "[prints]" report.info += "
" diff --git a/code/modules/detectivework/tools/scanner.dm b/code/modules/detectivework/tools/scanner.dm new file mode 100644 index 0000000000..21006bb2e0 --- /dev/null +++ b/code/modules/detectivework/tools/scanner.dm @@ -0,0 +1,201 @@ +/obj/item/device/detective_scanner + name = "forensic scanner" + desc = "Used to scan objects for DNA and fingerprints." + icon_state = "forensic" + var/list/stored = list() + w_class = ITEMSIZE_SMALL + item_state = "electronic" + flags = NOBLUDGEON + slot_flags = SLOT_BELT + + var/reveal_fingerprints = TRUE + var/reveal_incompletes = FALSE + var/reveal_blood = TRUE + var/reveal_fibers = FALSE + +/obj/item/device/detective_scanner/attack(mob/living/carbon/human/M as mob, mob/user as mob) + if (!ishuman(M)) + to_chat(user, "\The [M] does not seem to be compatible with this device.") + flick("[icon_state]0",src) + return 0 + + if(reveal_fingerprints) + if((!( istype(M.dna, /datum/dna) ) || M.gloves)) + to_chat(user, "No fingerprints found on [M]") + flick("[icon_state]0",src) + return 0 + else if(user.zone_sel.selecting == "r_hand" || user.zone_sel.selecting == "l_hand") + var/obj/item/weapon/sample/print/P = new /obj/item/weapon/sample/print(user.loc) + P.attack(M, user) + to_chat(user,"Done printing.") + // user << "[M]'s Fingerprints: [md5(M.dna.uni_identity)]" + + if(reveal_blood && M.blood_DNA && M.blood_DNA.len) + to_chat(user,"Blood found on [M]. Analysing...") + spawn(15) + for(var/blood in M.blood_DNA) + to_chat(user,"Blood type: [M.blood_DNA[blood]]\nDNA: [blood]") + return + +/obj/item/device/detective_scanner/afterattack(atom/A as obj|turf, mob/user, proximity) + if(!proximity) return + if(ismob(A)) + return + +/* + if(istype(A,/obj/machinery/computer/forensic_scanning)) + user.visible_message("[user] takes a cord out of [src] and hooks its end into [A]" ,\ + "You download data from [src] to [A]") + var/obj/machinery/computer/forensic_scanning/F = A + F.sync_data(stored) + return +*/ + + if(istype(A,/obj/item/weapon/sample/print)) + to_chat(user,"The scanner displays on the screen: \"ERROR 43: Object on Excluded Object List.\"") + flick("[icon_state]0",src) + return + + add_fingerprint(user) + + if(!(do_after(user, 1 SECOND))) + to_chat(user,"You must remain still for the device to complete its work.") + return 0 + + //General + if ((!A.fingerprints || !A.fingerprints.len) && !A.suit_fibers && !A.blood_DNA) + user.visible_message("\The [user] scans \the [A] with \a [src], the air around [user.gender == MALE ? "him" : "her"] humming[prob(70) ? " gently." : "."]" ,\ + "Unable to locate any fingerprints, materials, fibers, or blood on [A]!",\ + "You hear a faint hum of electrical equipment.") + flick("[icon_state]0",src) + return 0 + + if(add_data(A)) + to_chat(user,"Object already in internal memory. Consolidating data...") + flick("[icon_state]2",src) + return + + //PRINTS + if(A.fingerprints && A.fingerprints.len) + to_chat(user,"Isolated [A.fingerprints.len] fingerprints:") + if(!reveal_incompletes) + to_chat(user,"Rapid Analysis Imperfect: Scan samples with H.R.F.S. equipment to determine nature of incomplete prints.") + var/list/complete_prints = list() + var/list/incomplete_prints = list() + for(var/i in A.fingerprints) + var/print = A.fingerprints[i] + if(stringpercent(print) <= FINGERPRINT_COMPLETE) + complete_prints += print + else + incomplete_prints += print + if(complete_prints.len < 1) + to_chat(user,"No intact prints found") + else + to_chat(user,"Found [complete_prints.len] intact prints") + if(reveal_fingerprints) + for(var/i in complete_prints) + to_chat(user,"    [i]") + + to_chat(user,"Found [incomplete_prints.len] incomplete prints") + if(reveal_incompletes) + for(var/i in incomplete_prints) + to_chat(user,"    [i]") + + + //FIBERS + if(A.suit_fibers && A.suit_fibers.len) + to_chat(user,"Fibers/Materials detected.[reveal_fibers ? " Analysing..." : " Acquisition of fibers for H.R.F.S. analysis advised."]") + flick("[icon_state]2",src) + if(reveal_fibers && do_after(user, 5 SECONDS)) + to_chat(user,"Apparel samples scanned:") + for(var/sample in A.suit_fibers) + to_chat(user," - [sample]") + + //Blood + if (A.blood_DNA && A.blood_DNA.len) + to_chat(user,"Blood detected.[reveal_blood ? " Analysing..." : " Acquisition of swab for H.R.F.S. analysis advised."]") + if(reveal_blood && do_after(user, 5 SECONDS)) + flick("[icon_state]2",src) + for(var/blood in A.blood_DNA) + to_chat(user,"Blood type: [A.blood_DNA[blood]] DNA: [blood]") + + user.visible_message("\The [user] scans \the [A] with \a [src], the air around [user.gender == MALE ? "him" : "her"] humming[prob(70) ? " gently." : "."]" ,\ + "You finish scanning \the [A].",\ + "You hear a faint hum of electrical equipment.") + flick("[icon_state]2",src) + return 0 + +/obj/item/device/detective_scanner/proc/add_data(atom/A as mob|obj|turf|area) + var/datum/data/record/forensic/old = stored["\ref [A]"] + var/datum/data/record/forensic/fresh = new(A) + + if(old) + fresh.merge(old) + . = 1 + stored["\ref [A]"] = fresh + +/obj/item/device/detective_scanner/verb/examine_data() + set name = "Examine Forensic Data" + set category = "Object" + set src in view(1) + + world << "usr is [usr]" + display_data(usr) + +/obj/item/device/detective_scanner/proc/display_data(var/mob/user) + if(user && stored && stored.len) + for(var/objref in stored) + if(!do_after(user, 1 SECOND)) // So people can move and stop the spam, if they refuse to wipe data. + break + + var/datum/data/record/forensic/F = stored[objref] + var/list/fprints = F.fields["fprints"] + var/list/fibers = F.fields["fibers"] + var/list/bloods = F.fields["blood"] + + to_chat(user, "Data for: [F.fields["name"]]") + + if(reveal_fingerprints) + var/list/complete_prints = list() + var/list/incomplete_prints = list() + for(var/i in fprints) + var/print = fprints[i] + if(stringpercent(print) <= FINGERPRINT_COMPLETE) + complete_prints += print + to_chat(user, " - [print]") + else + incomplete_prints += print + + if(complete_prints.len < 1) + to_chat(user,"No intact prints found.") + + if(reveal_incompletes) + for(var/print in incomplete_prints) + to_chat(user, " - [print]") + + if(fibers && fibers.len) + to_chat(user, "[fibers.len] samples of material were present.") + if(reveal_fibers) + for(var/sample in fibers) + to_chat(user," - [sample]") + + if(bloods && bloods.len) + to_chat(user, "[bloods.len] samples of blood were present.") + if(reveal_blood) + for(var/bloodsample in bloods) + to_chat(user, " - [bloodsample] Type: [bloods[bloodsample]]") + +/obj/item/device/detective_scanner/verb/wipe() + set name = "Wipe Forensic Data" + set category = "Object" + set src in view(1) + + if (alert("Are you sure you want to wipe all data from [src]?",,"Yes","No") == "Yes") + stored = list() + to_chat(usr,"Forensic data erase complete.") + +/obj/item/device/detective_scanner/advanced + name = "advanced forensic scanner" + icon_state = "forensic_neo" + reveal_fibers = TRUE + reveal_incompletes = TRUE diff --git a/code/modules/events/event_container.dm b/code/modules/events/event_container.dm index a4c55b27ae..79c294c5ac 100644 --- a/code/modules/events/event_container.dm +++ b/code/modules/events/event_container.dm @@ -142,7 +142,6 @@ var/global/list/severity_to_string = list(EVENT_LEVEL_MUNDANE = "Mundane", EVENT new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Shipping Error", /datum/event/shipping_error , 30, list(ASSIGNMENT_ANY = 2), 0), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Space Dust", /datum/event/dust , 60, list(ASSIGNMENT_ENGINEER = 20), 0, 0, 50), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Trivial News", /datum/event/trivial_news, 400), - //new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Ian Storm", /datum/event/ianstorm, 50), //VORESTATION AI TEMPORARY REMOVAL new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lore News", /datum/event/lore_news, 400), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Vermin Infestation",/datum/event/infestation, 100, list(ASSIGNMENT_JANITOR = 100)), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Wallrot", /datum/event/wallrot, 0, list(ASSIGNMENT_ENGINEER = 30, ASSIGNMENT_GARDENER = 50)), diff --git a/code/modules/events/event_container_vr.dm b/code/modules/events/event_container_vr.dm index 0212435c71..6f5e8dada2 100644 --- a/code/modules/events/event_container_vr.dm +++ b/code/modules/events/event_container_vr.dm @@ -28,36 +28,38 @@ /datum/event_container/mundane/New() available_events = list( // Severity level, event name, even type, base weight, role weights, one shot, min weight, max weight. Last two only used if set and non-zero - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Nothing", /datum/event/nothing, 200), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Nothing", /datum/event/nothing, 400), // Bluescreens APCs, but they still work new /datum/event_meta(EVENT_LEVEL_MUNDANE, "APC Damage", /datum/event/apc_damage, 20, list(ASSIGNMENT_ENGINEER = 20)), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Brand Intelligence",/datum/event/brand_intelligence,20, list(ASSIGNMENT_JANITOR = 25), 1), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Camera Damage", /datum/event/camera_damage, 20, list(ASSIGNMENT_ENGINEER = 20)), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Canister Leak", /datum/event/canister_leak, 10, list(ASSIGNMENT_ENGINEER = 20)), - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Space Dust", /datum/event/dust, 0, list(ASSIGNMENT_ENGINEER = 20), 1, 0, 50), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Space Dust", /datum/event/dust, 0, list(ASSIGNMENT_ENGINEER = 20), 0, 0, 50), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Economic News", /datum/event/economic_event, 300), - //new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Ian Storm", /datum/event/ianstorm, 1, list(), 1), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lost Carp", /datum/event/carp_migration, 0, list(ASSIGNMENT_SECURITY = 10), 1), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Money Hacker", /datum/event/money_hacker, 0, list(ASSIGNMENT_ANY = 4), 1, 10, 25), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Money Lotto", /datum/event/money_lotto, 0, list(ASSIGNMENT_ANY = 1), 1, 5, 15), //new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Mundane News", /datum/event/mundane_news, 300), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "PDA Spam", /datum/event/pda_spam, 0, list(ASSIGNMENT_ANY = 4), 1, 25, 50), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Shipping Error", /datum/event/shipping_error , 30, list(ASSIGNMENT_ANY = 2), 0), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Trivial News", /datum/event/trivial_news, 400), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lore News", /datum/event/lore_news, 400), // Spawns mice, lizards, or dud spiderlings new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Vermin Infestation",/datum/event/infestation, 100, list(ASSIGNMENT_JANITOR = 100), 1), // Rot only weakens walls, not destroy them new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Wallrot", /datum/event/wallrot, 0, list(ASSIGNMENT_ENGINEER = 30, ASSIGNMENT_GARDENER = 50), 1), ) add_disabled_events(list( - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lost Carp", /datum/event/carp_migration, 20, list(ASSIGNMENT_SECURITY = 10), 1), - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Money Hacker", /datum/event/money_hacker, 0, list(ASSIGNMENT_ANY = 4), 1, 10, 25), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Ian Storm", /datum/event/ianstorm, 1, list(), 1), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1), )) /datum/event_container/moderate/New() available_events = list( - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Nothing", /datum/event/nothing, 800), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Nothing", /datum/event/nothing, 1600), // Leaks gas into an unoccupied room. new /datum/event_meta(EVENT_LEVEL_MODERATE, "Atmos Leak", /datum/event/atmos_leak, 30, list(ASSIGNMENT_ENGINEER = 25), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Carp School", /datum/event/carp_migration, 0, list(ASSIGNMENT_SECURITY = 30), 1), // Just disables comms for a short while. new /datum/event_meta(EVENT_LEVEL_MODERATE, "Communication Blackout", /datum/event/communications_blackout, 500, list(ASSIGNMENT_AI = 150, ASSIGNMENT_SECURITY = 120), 1), // Just blows out a few lights @@ -71,37 +73,36 @@ // Opens doors in brig. So just RP fun new /datum/event_meta(EVENT_LEVEL_MODERATE, "Prison Break", /datum/event/prison_break, 10, list(ASSIGNMENT_SECURITY = 100), 1), // Radiation, but only in space. + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Rogue Drones", /datum/event/rogue_drone, 0, list(ASSIGNMENT_SECURITY = 20), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Solar Storm", /datum/event/solar_storm, 30, list(ASSIGNMENT_ENGINEER = 40, ASSIGNMENT_SECURITY = 30), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Space Dust", /datum/event/dust, 0, list(ASSIGNMENT_ENGINEER = 20), 1, 0, 50), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Virology Breach", /datum/event/prison_break/virology, 0, list(ASSIGNMENT_MEDICAL = 100), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Xenobiology Breach", /datum/event/prison_break/xenobiology, 0, list(ASSIGNMENT_SCIENCE = 100), 1), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Grub Infestation", /datum/event/grub_infestation, 0, list(ASSIGNMENT_SECURITY = 20, ASSIGNMENT_ENGINEER = 30), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Spider Infestation", /datum/event/spider_infestation, 30, list(ASSIGNMENT_SECURITY = 30), 1), //Evil grubs that drain station power slightly + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Grub Infestation", /datum/event/grub_infestation, 0, list(ASSIGNMENT_SECURITY = 10, ASSIGNMENT_ENGINEER = 30), 1), ) add_disabled_events(list( new /datum/event_meta(EVENT_LEVEL_MODERATE, "Appendicitis", /datum/event/spontaneous_appendicitis, 0, list(ASSIGNMENT_MEDICAL = 30), 1), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Carp School", /datum/event/carp_migration, 100, list(ASSIGNMENT_ENGINEER = 20, ASSIGNMENT_SECURITY = 30), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Meteor Shower", /datum/event/meteor_wave, 30, list(ASSIGNMENT_ENGINEER = 20)), // Not bad (dorms are shielded) but inconvenient new /datum/event_meta(EVENT_LEVEL_MODERATE, "Radiation Storm", /datum/event/radiation_storm, 50, list(ASSIGNMENT_MEDICAL = 50), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Random Antagonist", /datum/event/random_antag, 2.5, list(ASSIGNMENT_SECURITY = 1), 1, 0, 5), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Rogue Drones", /datum/event/rogue_drone, 20, list(ASSIGNMENT_SECURITY = 60)), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Space Dust", /datum/event/dust, 80, list(ASSIGNMENT_ENGINEER = 30)), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Spider Infestation", /datum/event/spider_infestation, 100, list(ASSIGNMENT_SECURITY = 40), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1), )) /datum/event_container/major/New() available_events = list( - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Nothing", /datum/event/nothing, 900), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Nothing", /datum/event/nothing, 3600), new /datum/event_meta(EVENT_LEVEL_MAJOR, "Atmos Leak", /datum/event/atmos_leak, 30, list(ASSIGNMENT_ENGINEER = 25), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Strike", /datum/event/meteor_strike, 10, list(ASSIGNMENT_ENGINEER = 15) ,1) + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Strike", /datum/event/meteor_strike, 10, list(ASSIGNMENT_ENGINEER = 15), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Space Vines", /datum/event/spacevine, 20, list(ASSIGNMENT_ENGINEER = 7), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Carp Migration", /datum/event/carp_migration, 10, list(ASSIGNMENT_SECURITY = 5), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Containment Breach", /datum/event/prison_break/station,0, list(ASSIGNMENT_ANY = 5), 1), ) add_disabled_events(list( new /datum/event_meta(EVENT_LEVEL_MAJOR, "Blob", /datum/event/blob, 10, list(ASSIGNMENT_ENGINEER = 60), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Carp Migration", /datum/event/carp_migration, 10, list(ASSIGNMENT_SECURITY = 10), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Containment Breach", /datum/event/prison_break/station,0,list(ASSIGNMENT_ANY = 5)), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Wave", /datum/event/meteor_wave, 30, list(ASSIGNMENT_ENGINEER = 30), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Space Vines", /datum/event/spacevine, 20, list(ASSIGNMENT_ENGINEER = 15), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Wave", /datum/event/meteor_wave, 30, list(ASSIGNMENT_ENGINEER = 15), 1), new /datum/event_meta(EVENT_LEVEL_MAJOR, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1), )) diff --git a/code/modules/events/ian_storm_vr.dm b/code/modules/events/ian_storm_vr.dm index 2ddee490d9..574df331bb 100644 --- a/code/modules/events/ian_storm_vr.dm +++ b/code/modules/events/ian_storm_vr.dm @@ -23,7 +23,7 @@ for(var/i = 0, i < 3, i++) var/turf/target = get_step(T, pick(alldirs)) if(target && istype(target, /turf/simulated/floor)) - var/mob/living/simple_mob/corgi/Ian/doge = new(target) + var/mob/living/simple_mob/animal/passive/dog/corgi/Ian/doge = new(target) doge.name = "Ian " + pick("Alpha", "Beta", "Chi", "Delta", "Epsilon", "Phi", "Gamma", "Eta", "Iota", "Kappa", "Lambda", "Omicron", "Theta", "Rho", "Sigma", "Tau", "Upsilon", "Omega", "Psi", "Zeta") diff --git a/code/modules/events/spider_infestation.dm b/code/modules/events/spider_infestation.dm index 7eb0be92cc..6d0be161c5 100644 --- a/code/modules/events/spider_infestation.dm +++ b/code/modules/events/spider_infestation.dm @@ -23,6 +23,6 @@ while((spawncount >= 1) && vents.len) var/obj/vent = pick(vents) - new /obj/effect/spider/spiderling(vent.loc) + new /obj/effect/spider/spiderling/virgo(vent.loc) //VOREStation Edit - No nurses vents -= vent spawncount-- diff --git a/code/modules/flufftext/Dreaming.dm b/code/modules/flufftext/Dreaming.dm index 964ea8dbed..911931eda3 100644 --- a/code/modules/flufftext/Dreaming.dm +++ b/code/modules/flufftext/Dreaming.dm @@ -23,7 +23,7 @@ mob/living/carbon/proc/dream() spawn(0) for(var/i = rand(1,4),i > 0, i--) - src << "... [pick(dreams)] ..." + to_chat(src, "... [pick(dreams)] ...") sleep(rand(40,70)) if(paralysis <= 0) dreaming = 0 diff --git a/code/modules/flufftext/Hallucination.dm b/code/modules/flufftext/Hallucination.dm index f70873f226..cdd497c016 100644 --- a/code/modules/flufftext/Hallucination.dm +++ b/code/modules/flufftext/Hallucination.dm @@ -28,13 +28,13 @@ mob/living/carbon/proc/handle_hallucinations() switch(halpick) if(0 to 15) //Screwy HUD - //src << "Screwy HUD" + //to_chat(src, "Screwy HUD") hal_screwyhud = pick(1,2,3,3,4,4) spawn(rand(100,250)) hal_screwyhud = 0 if(16 to 25) //Strange items - //src << "Traitor Items" + //to_chat(src, "Traitor Items") if(!halitem) halitem = new var/list/slots_free = list(ui_lhand,ui_rhand) @@ -82,7 +82,7 @@ mob/living/carbon/proc/handle_hallucinations() halitem = null if(26 to 40) //Flashes of danger - //src << "Danger Flash" + //to_chat(src, "Danger Flash") if(!halimage) var/list/possible_points = list() for(var/turf/simulated/floor/F in view(src,world.view)) @@ -92,13 +92,13 @@ mob/living/carbon/proc/handle_hallucinations() switch(rand(1,3)) if(1) - //src << "Space" + //to_chat(src, "Space") halimage = image('icons/turf/space.dmi',target,"[rand(1,25)]",TURF_LAYER) if(2) - //src << "Fire" + //to_chat(src, "Fire") halimage = image('icons/effects/fire.dmi',target,"1",TURF_LAYER) if(3) - //src << "C4" + //to_chat(src, "C4") halimage = image('icons/obj/assemblies.dmi',target,"plastic-explosive2",OBJ_LAYER+0.01) @@ -110,7 +110,7 @@ mob/living/carbon/proc/handle_hallucinations() if(41 to 65) //Strange audio - //src << "Strange Audio" + //to_chat(src, "Strange Audio") switch(rand(1,12)) if(1) src << 'sound/machines/airlock.ogg' if(2) @@ -144,7 +144,7 @@ mob/living/carbon/proc/handle_hallucinations() src << pick(creepyasssounds) if(66 to 70) //Flashes of danger - //src << "Danger Flash" + //to_chat(src, "Danger Flash") if(!halbody) var/list/possible_points = list() for(var/turf/simulated/floor/F in view(src,world.view)) diff --git a/code/modules/flufftext/TextFilters.dm b/code/modules/flufftext/TextFilters.dm index 5a40ea1934..c7582fe952 100644 --- a/code/modules/flufftext/TextFilters.dm +++ b/code/modules/flufftext/TextFilters.dm @@ -2,8 +2,8 @@ proc/Intoxicated(phrase) phrase = html_decode(phrase) - var/leng=lentext(phrase) - var/counter=lentext(phrase) + var/leng=length(phrase) + var/counter=length(phrase) var/newphrase="" var/newletter="" while(counter>=1) diff --git a/code/modules/food/food/snacks_vr.dm b/code/modules/food/food/snacks_vr.dm index a283a6bafe..91b769696d 100644 --- a/code/modules/food/food/snacks_vr.dm +++ b/code/modules/food/food/snacks_vr.dm @@ -89,7 +89,7 @@ desc = "It's beef. It's roasted. It's been a staple of dining tradition for centuries." icon = 'icons/obj/food_vr.dmi' icon_state = "roastbeef" - trash = /obj/item/trash/waffles + trash = /obj/item/trash/plate //TFF 30/11/19 - Roast beef are put on plates, not waffle trays, you dunce~ nutriment_amt = 8 nutriment_desc = list("cooked meat" = 5) diff --git a/code/modules/food/recipe_dump.dm b/code/modules/food/recipe_dump.dm index a458a568cf..781ef7fc2f 100644 --- a/code/modules/food/recipe_dump.dm +++ b/code/modules/food/recipe_dump.dm @@ -214,4 +214,4 @@ html += "" src << browse(html, "window=recipes;file=recipes_drinks.html;display=0") - src << "In your byond cache, recipe-xxx.png files and recipes_drinks.html and recipes_food.html now exist. Place recipe-xxx.png files in a subfolder named 'imgrecipes' wherever you put them. The file will take a food.css or drinks.css file if in the same path." + to_chat(src, "In your byond cache, recipe-xxx.png files and recipes_drinks.html and recipes_food.html now exist. Place recipe-xxx.png files in a subfolder named 'imgrecipes' wherever you put them. The file will take a food.css or drinks.css file if in the same path.") diff --git a/code/modules/gamemaster/actions/drill_announcement.dm b/code/modules/gamemaster/actions/drill_announcement.dm new file mode 100644 index 0000000000..978d5a4ffd --- /dev/null +++ b/code/modules/gamemaster/actions/drill_announcement.dm @@ -0,0 +1,10 @@ +/datum/gm_action/security_drill + name = "security drills" + departments = list(ROLE_SECURITY, ROLE_EVERYONE) + +/datum/gm_action/security_drill/announce() + spawn(rand(1 MINUTE, 2 MINUTES)) + command_announcement.Announce("[pick("A NanoTrasen security director", "A Vir-Gov correspondant", "Local Sif authoritiy")] has advised the enactment of [pick("a rampant wildlife", "a fire", "a hostile boarding", "a nonstandard", "a bomb", "an emergent intelligence")] drill with the personnel onboard \the [station_name()].", "Security Advisement") + +/datum/gm_action/security_drill/get_weight() + return max(-20, 10 + gm.staleness - (gm.danger * 2)) + (metric.count_people_in_department(ROLE_SECURITY) * 5) + (metric.count_people_in_department(ROLE_EVERYONE) * 1.5) diff --git a/code/modules/gamemaster/actions/dust.dm b/code/modules/gamemaster/actions/dust.dm index caecc51445..da08dc4f4c 100644 --- a/code/modules/gamemaster/actions/dust.dm +++ b/code/modules/gamemaster/actions/dust.dm @@ -14,4 +14,4 @@ /datum/gm_action/dust/start() ..() - dust_swarm("norm") \ No newline at end of file + dust_swarm("norm") diff --git a/code/modules/gamemaster/actions/infestation.dm b/code/modules/gamemaster/actions/infestation.dm new file mode 100644 index 0000000000..2c8ddac566 --- /dev/null +++ b/code/modules/gamemaster/actions/infestation.dm @@ -0,0 +1,116 @@ +#define LOC_KITCHEN 0 +#define LOC_ATMOS 1 +#define LOC_CHAPEL 2 +#define LOC_LIBRARY 3 +#define LOC_HYDRO 4 +#define LOC_VAULT 5 +#define LOC_CONSTR 6 +#define LOC_TECH 7 +#define LOC_GARDEN 8 + +#define VERM_MICE 0 +#define VERM_LIZARDS 1 +#define VERM_SPIDERS 2 + +/datum/gm_action/infestation + name = "animal infestation" + departments = list(ROLE_EVERYONE) + var/location + var/locstring + var/vermin + var/vermstring + + var/list/turf/simulated/floor/turfs = list() + + var/spawn_types + var/max_number + +/datum/gm_action/infestation/set_up() + location = rand(0,8) + turfs.Cut() + var/spawn_area_type + switch(location) + if(LOC_KITCHEN) + spawn_area_type = /area/crew_quarters/kitchen + locstring = "the kitchen" + if(LOC_ATMOS) + spawn_area_type = /area/engineering/atmos + locstring = "atmospherics" + if(LOC_CHAPEL) + spawn_area_type = /area/chapel/main + locstring = "the chapel" + if(LOC_LIBRARY) + spawn_area_type = /area/library + locstring = "the library" + if(LOC_HYDRO) + spawn_area_type = /area/hydroponics + locstring = "hydroponics" + if(LOC_VAULT) + spawn_area_type = /area/security/nuke_storage + locstring = "the vault" + if(LOC_CONSTR) + spawn_area_type = /area/construction + locstring = "the construction area" + if(LOC_TECH) + spawn_area_type = /area/storage/tech + locstring = "technical storage" + if(LOC_GARDEN) + spawn_area_type = /area/hydroponics/garden + locstring = "the public garden" + + for(var/areapath in typesof(spawn_area_type)) + var/area/A = locate(areapath) + for(var/turf/simulated/floor/F in A.contents) + if(turf_clear(F)) + turfs += F + + spawn_types = list() + max_number = 0 + vermin = rand(0,2) + switch(vermin) + if(VERM_MICE) + spawn_types = list(/mob/living/simple_mob/animal/passive/mouse/gray, /mob/living/simple_mob/animal/passive/mouse/brown, /mob/living/simple_mob/animal/passive/mouse/white, /mob/living/simple_mob/animal/passive/mouse/rat) + max_number = 12 + vermstring = "mice" + if(VERM_LIZARDS) + spawn_types = list(/mob/living/simple_mob/animal/passive/lizard, /mob/living/simple_mob/animal/passive/lizard, /mob/living/simple_mob/animal/passive/lizard/large, /mob/living/simple_mob/animal/passive/lizard/large/defensive) + max_number = 6 + vermstring = "lizards" + if(VERM_SPIDERS) + spawn_types = list(/obj/effect/spider/spiderling) + max_number = 3 + vermstring = "spiders" + +/datum/gm_action/infestation/start() + spawn() + var/num = rand(2,max_number) + while(turfs.len > 0 && num > 0) + var/turf/simulated/floor/T = pick(turfs) + turfs.Remove(T) + num-- + + if(vermin == VERM_SPIDERS) + var/obj/effect/spider/spiderling/S = new(T) + S.amount_grown = -1 + else + var/spawn_type = pick(spawn_types) + new spawn_type(T) + +/datum/gm_action/infestation/announce() + command_announcement.Announce("Bioscans indicate that [vermstring] have been breeding in [locstring]. Clear them out, before this starts to affect productivity.", "Vermin infestation") + +/datum/gm_action/infestation/get_weight() + return 5 + (metric.count_people_in_department(ROLE_EVERYONE) * 20) + +#undef LOC_KITCHEN +#undef LOC_ATMOS +#undef LOC_CHAPEL +#undef LOC_LIBRARY +#undef LOC_HYDRO +#undef LOC_VAULT +#undef LOC_TECH +#undef LOC_GARDEN + +#undef VERM_MICE +#undef VERM_LIZARDS +#undef VERM_SPIDERS \ No newline at end of file diff --git a/code/modules/gamemaster/actions/ion_storm.dm b/code/modules/gamemaster/actions/ion_storm.dm index e733bd4bd1..9285b2ad99 100644 --- a/code/modules/gamemaster/actions/ion_storm.dm +++ b/code/modules/gamemaster/actions/ion_storm.dm @@ -1,4 +1,6 @@ /datum/gm_action/ionstorm + name = "ion storm" + departments = list(ROLE_SYNTHETIC) var/botEmagChance = 0.5 var/list/players = list() var/active = FALSE @@ -41,3 +43,8 @@ spawn(rand(5000,8000)) if(prob(50)) ion_storm_announcement() + +/datum/gm_action/ionstorm/get_weight() + var/bots = metric.count_people_in_department(ROLE_SYNTHETIC) + var/weight = 5 + (bots * 20) + return weight diff --git a/code/modules/gamemaster/actions/manifest_malfunction.dm b/code/modules/gamemaster/actions/manifest_malfunction.dm new file mode 100644 index 0000000000..0ef9067671 --- /dev/null +++ b/code/modules/gamemaster/actions/manifest_malfunction.dm @@ -0,0 +1,52 @@ +/datum/gm_action/manifest_malfunction + name = "manifest malfunction" + enabled = TRUE + departments = list(ROLE_SECURITY, ROLE_SYNTHETIC, ROLE_EVERYONE) + chaotic = 3 + reusable = FALSE + length = 0 + + var/recordtype + +/datum/gm_action/manifest_malfunction/set_up() + severity = pickweight(EVENT_LEVEL_MUNDANE = 6, + EVENT_LEVEL_MODERATE = 2, + EVENT_LEVEL_MAJOR = 1 + ) + + recordtype = pickweight("medical" = 10,"security" = (severity * 15)) + + return + +/datum/gm_action/manifest_malfunction/get_weight() + . = -10 + + var/security = metric.count_people_in_department(ROLE_SECURITY) + + if(security && data_core) + . += (metric.count_people_in_department(ROLE_EVERYONE) * 5) - (metric.count_people_in_department(ROLE_SYNTHETIC) * 5) + + return . + +/datum/gm_action/manifest_malfunction/start() + ..() + + var/manifest_cut_count = 1 * severity + + for(var/I = 1 to manifest_cut_count) + var/datum/data/record/R + + switch(recordtype) + if("security") + R = pick(data_core.security) + + if("medical") + R = pick(data_core.medical) + + qdel(R) + +/datum/gm_action/manifest_malfunction/announce() + if(prob(30 * severity)) + spawn(rand(5 MINUTES, 10 MINUTES)) + command_announcement.Announce("An ongoing mass upload of malware for [recordtype] record cores has been detected onboard [station_name()]", "Data Breach Alert") + return diff --git a/code/modules/gamemaster/actions/meteor_defense.dm b/code/modules/gamemaster/actions/meteor_defense.dm index 5df197f160..d0a0d40a3f 100644 --- a/code/modules/gamemaster/actions/meteor_defense.dm +++ b/code/modules/gamemaster/actions/meteor_defense.dm @@ -2,18 +2,38 @@ /datum/gm_action/meteor_defense name = "meteor defense" - departments = list(ROLE_ENGINEERING) + departments = list(ROLE_ENGINEERING, ROLE_CARGO) chaotic = 50 var/direction = null var/dir_text = null var/waves = 0 + var/meteor_types + /datum/gm_action/meteor_defense/get_weight() var/engineers = metric.count_people_in_department(ROLE_ENGINEERING) - var/weight = (max(engineers - 1, 0) * 25) // If only one engineer exists, no meteors for now. + var/cargo = metric.count_people_in_department(ROLE_CARGO) + var/bots = metric.count_people_in_department(ROLE_SYNTHETIC) + var/weight = (max(engineers - 1, 0) * 20) // If only one engineer exists, no meteors for now. + + if(engineers >= 2) + weight += ((cargo - 1) * 10) + weight += (bots * 15) + return weight /datum/gm_action/meteor_defense/set_up() + severity = pickweight(EVENT_LEVEL_MUNDANE = 10, + EVENT_LEVEL_MODERATE = 3 + ) + + switch(severity) + if(EVENT_LEVEL_MUNDANE) + meteor_types = meteors_threatening.Copy() + + if(EVENT_LEVEL_MODERATE) + meteor_types = meteors_catastrophic.Copy() + direction = pick(cardinal) // alldirs doesn't work with current meteor code unfortunately. waves = rand(5, 8) switch(direction) @@ -27,17 +47,17 @@ dir_text = "starboard" /datum/gm_action/meteor_defense/announce() - var/announcement = "Alert! Two other asteroids have collided near [station_name()]. Chunks of it are expected to approach from the [dir_text] side. ETA to arrival is \ - approximately 10 minutes." + var/announcement = "Alert! Two asteroids have collided near [station_name()]. Chunks of it are expected to approach from the [dir_text] side. ETA to arrival is \ + approximately [round(5 * severity * 2)] minutes." command_announcement.Announce(announcement, "Meteor Alert", new_sound = 'sound/AI/meteors.ogg') /datum/gm_action/meteor_defense/start() ..() spawn(0) - sleep(5 MINUTES) - var/announcement = "The incoming debris are expected to approach from the [dir_text] side. ETA to arrival is approximately 5 minutes." + sleep(round(5 * severity) MINUTES) + var/announcement = "The incoming debris are expected to approach from the [dir_text] side. ETA to arrival is approximately [round(5 * severity)] minutes." command_announcement.Announce(announcement, "Meteor Alert - Update") - sleep(5 MINUTES) + sleep(round(5 * severity) MINUTES) announcement = "Incoming debris approaches from the [dir_text] side!" command_announcement.Announce(announcement, "Meteor Alert - Update") while(waves) @@ -46,6 +66,6 @@ spawn_meteors(rand(8, 12), meteors_threatening, reverse_dir[direction]) waves-- sleep(30 SECONDS) - announcement = "The colony has cleared the incoming debris." + announcement = "The station has cleared the incoming debris." command_announcement.Announce(announcement, "Meteor Alert - Update") - message_admins("Meteor defense event has ended.") \ No newline at end of file + message_admins("Meteor defense event has ended.") diff --git a/code/modules/gamemaster/actions/security_advisement.dm b/code/modules/gamemaster/actions/security_advisement.dm new file mode 100644 index 0000000000..b5c8d82912 --- /dev/null +++ b/code/modules/gamemaster/actions/security_advisement.dm @@ -0,0 +1,49 @@ +/datum/gm_action/security_screening + name = "security screening" + departments = list(ROLE_SECURITY, ROLE_EVERYONE) + + var/list/species_weights = list( + SPECIES_SKRELL = 9, + SPECIES_UNATHI = 15, + SPECIES_HUMAN_VATBORN = 6, + SPECIES_TESHARI = 2, + SPECIES_TAJ = 3, + SPECIES_DIONA = 1, + SPECIES_ZADDAT = 25, + SPECIES_HUMAN = 3, + SPECIES_PROMETHEAN = 30 + ) + + var/list/synth_weights = list( + "Cybernetic" = 15, + "Drone" = 30, + "Positronic" = 25 + ) + + var/list/end_weights = list() + +/datum/gm_action/security_screening/set_up() + for(var/species_name in species_weights) + var/giveweight = 0 + + for(var/datum/data/record/R in data_core.general) + if(R.fields["species"] == species_name) + giveweight += species_weights[species_name] + + end_weights[species_name] = giveweight + + for(var/bottype in synth_weights) + var/giveweight = 0 + + for(var/datum/data/record/R in data_core.general) + if(R.fields["brain_type"] == bottype) + giveweight += synth_weights[bottype] + + end_weights[bottype] = giveweight + +/datum/gm_action/security_screening/announce() + spawn(rand(1 MINUTE, 2 MINUTES)) + command_announcement.Announce("[pick("A nearby Navy vessel", "A Solar official", "A Vir-Gov official", "A NanoTrasen board director")] has requested the screening of [pick("every other", "every", "suspicious", "willing")] [pickweight(end_weights)] personnel onboard \the [station_name()].", "Security Advisement") + +/datum/gm_action/security_screening/get_weight() + return max(-20, 10 + round(gm.staleness * 1.5) - (gm.danger * 2)) + (metric.count_people_in_department(ROLE_SECURITY) * 10) + (metric.count_people_in_department(ROLE_EVERYONE) * 1.5) diff --git a/code/modules/gamemaster/actions/spider_infestation.dm b/code/modules/gamemaster/actions/spider_infestation.dm index baba49c2e3..c641c86167 100644 --- a/code/modules/gamemaster/actions/spider_infestation.dm +++ b/code/modules/gamemaster/actions/spider_infestation.dm @@ -7,21 +7,28 @@ var/spawncount = 1 -/datum/gm_action/spider_infestation/set_up() - spawn(rand(600, 6000)) - announce() + var/spawntype = /obj/effect/spider/spiderling - if(prob(40)) - severity = rand(2,3) - else - severity = 1 +/datum/gm_action/spider_infestation/set_up() + severity = pickweight(EVENT_LEVEL_MUNDANE = max(1,(12 - (3 * metric.count_people_in_department(ROLE_SECURITY)))), + EVENT_LEVEL_MODERATE = (7 + (2 * metric.count_people_in_department(ROLE_SECURITY))), + EVENT_LEVEL_MAJOR = (1 + (2 * metric.count_people_in_department(ROLE_SECURITY))) + ) + + switch(severity) + if(EVENT_LEVEL_MUNDANE) + spawntype = /obj/effect/spider/spiderling/stunted + if(EVENT_LEVEL_MODERATE) + spawntype = /obj/effect/spider/spiderling + if(EVENT_LEVEL_MAJOR) + spawntype = /obj/effect/spider/spiderling spawncount = rand(4 * severity, 6 * severity) /datum/gm_action/spider_infestation/announce() command_announcement.Announce("Unidentified lifesigns detected coming aboard [station_name()]. Secure any exterior access, including ducting and ventilation.", "Lifesign Alert", new_sound = 'sound/AI/aliens.ogg') - if(severity >= 3) + if(severity >= EVENT_LEVEL_MAJOR) spawn(rand(600, 3000)) command_announcement.Announce("Unidentified lifesigns previously detected coming aboard [station_name()] have been classified as a swarm of arachnids. Extreme caution is advised.", "Arachnid Alert") diff --git a/code/modules/gamemaster/actions/station_fundraise.dm b/code/modules/gamemaster/actions/station_fundraise.dm new file mode 100644 index 0000000000..2a516d178a --- /dev/null +++ b/code/modules/gamemaster/actions/station_fundraise.dm @@ -0,0 +1,14 @@ +/datum/gm_action/station_fund_raise + name = "local funding drive" + departments = list(ROLE_SECURITY, ROLE_CARGO, ROLE_EVERYONE) + +/datum/gm_action/station_fund_raise/announce() + spawn(rand(1 MINUTE, 2 MINUTES)) + command_announcement.Announce("Due to [pick("recent", "unfortunate", "possible future")] budget [pick("changes", "issues")], in-system stations are now advised to increase funding income.", "Security & Supply Advisement") + +/datum/gm_action/station_fund_raise/get_weight() + var/weight_modifier = 0.5 + if(station_account.money <= 80000) + weight_modifier = 1 + + return (max(-20, 10 + gm.staleness) + ((metric.count_people_in_department(ROLE_SECURITY) + (metric.count_people_in_department(ROLE_CARGO))) * 5) + (metric.count_people_in_department(ROLE_EVERYONE) * 3)) * weight_modifier diff --git a/code/modules/gamemaster/actions/stowaway.dm b/code/modules/gamemaster/actions/stowaway.dm new file mode 100644 index 0000000000..c75df494e2 --- /dev/null +++ b/code/modules/gamemaster/actions/stowaway.dm @@ -0,0 +1,80 @@ +/datum/gm_action/stowaway + name = "stowaway pod" + departments = list(ROLE_EVERYONE, ROLE_SECURITY) + chaotic = 10 + observers_used = TRUE + var/area/target_area // Chosen target area + var/area/target_turf // Chosen target turf in target_area + var/list/area/excluded = list( + /area/submap, + /area/shuttle, + /area/crew_quarters, + /area/holodeck, + /area/engineering/engine_room + ) + + var/list/area/included = list( + /area/maintenance + ) + +/datum/gm_action/stowaway/set_up() + severity = pickweight(EVENT_LEVEL_MUNDANE = 20, + EVENT_LEVEL_MODERATE = 5, + EVENT_LEVEL_MAJOR = 1 + ) + + var/list/area/grand_list_of_areas = get_station_areas(excluded) + + for(var/area/Incl in included) + for(var/area/A in grand_list_of_areas) + if(!istype(A, Incl)) + grand_list_of_areas -= A + + // Okay, now lets try and pick a target! Lets try 10 times, otherwise give up + for(var/i in 1 to 10) + var/area/A = pick(grand_list_of_areas) + if(is_area_occupied(A)) + log_debug("[name] event: Rejected [A] because it is occupied.") + continue + // A good area, great! Lets try and pick a turf + var/list/turfs = list() + for(var/turf/simulated/floor/F in A) + if(turf_clear(F)) + turfs += F + if(turfs.len == 0) + log_debug("[name] event: Rejected [A] because it has no clear turfs.") + continue + target_area = A + target_turf = pick(turfs) + + if(!target_area) + log_debug("[name] event: Giving up after too many failures to pick target area") + return + +/datum/gm_action/stowaway/start() + if(!target_turf) + return + ..() + + var/obj/structure/ghost_pod/ghost_activated/human/HP = new (target_turf) + + if(severity == EVENT_LEVEL_MUNDANE || istype(ticker.mode, /datum/game_mode/extended)) + HP.make_antag = MODE_STOWAWAY + + else if(severity == EVENT_LEVEL_MODERATE) + HP.make_antag = MODE_RENEGADE + HP.occupant_type = "renegade [HP.occupant_type]" + + else if(severity == EVENT_LEVEL_MAJOR) + HP.make_antag = MODE_INFILTRATOR + HP.occupant_type = "volatile [HP.occupant_type]" + + say_dead_object("A [HP.occupant_type] pod is now available in \the [target_area].", HP) + +/datum/gm_action/stowaway/get_weight() + return -20 + (metric.count_people_in_department(ROLE_SECURITY) * 15 + metric.count_people_in_department(ROLE_SYNTHETIC) * 5 + metric.count_people_in_department(ROLE_EVERYONE) * 1) + +/datum/gm_action/stowaway/announce() + spawn(rand(15 MINUTES, 30 MINUTES)) + if(prob(20) && severity >= EVENT_LEVEL_MODERATE && atc && !atc.squelched) + atc.msg("Attention civilian vessels in [using_map.starsys_name] shipping lanes, caution is advised as [pick("an unidentified vessel", "a known criminal's vessel", "a derelict vessel")] has been detected passing multiple local stations.") diff --git a/code/modules/gamemaster/actions/supply_conversion.dm b/code/modules/gamemaster/actions/supply_conversion.dm new file mode 100644 index 0000000000..5f05a8cb04 --- /dev/null +++ b/code/modules/gamemaster/actions/supply_conversion.dm @@ -0,0 +1,62 @@ +/datum/gm_action/nanotrasen_budget_allocation + name = "supply point to cargo budget" + enabled = TRUE + departments = list(ROLE_CARGO) + chaotic = 0 + reusable = TRUE + + var/datum/controller/supply/SC + var/running = FALSE + var/last_run + + var/thaler_earned + +/datum/gm_action/nanotrasen_budget_allocation/set_up() + SC = supply_controller + running = TRUE + return + +/datum/gm_action/nanotrasen_budget_allocation/get_weight() + . = round(SC.points / 15) + + var/cargo = metric.count_people_in_department(ROLE_CARGO) + var/personnel = metric.count_people_in_department(ROLE_EVERYONE) + if(cargo) + . = round(SC.points / (10 + personnel)) + cargo * 10 + + if(running || ( world.time < (last_run + 30 MINUTES))) + . = 0 + + return . + +/datum/gm_action/nanotrasen_budget_allocation/start() + . = ..() + + last_run = world.time + + var/point_difference = SC.points + + if(SC.points >= 1000) + SC.points = round(SC.points / 3) + point_difference -= SC.points + + else if(SC.points >= 500) + SC.points -= 100 * (rand(5, 20) / 10) + point_difference -= SC.points + + else + SC.points = round(SC.points / 1.25) + point_difference -= SC.points + + if(point_difference > 0) + thaler_earned = round(point_difference / SC.points_per_money) + +/datum/gm_action/nanotrasen_budget_allocation/end() + spawn(5 MINUTES) + running = FALSE + return + +/datum/gm_action/nanotrasen_budget_allocation/announce() + spawn(rand(1 MINUTE, 5 MINUTES)) + command_announcement.Announce("[station_name()] Supply Department has earned a converted thaler budget of [thaler_earned] due to their backlogged daily requisition tokens.", "Supply Budget Conversion") + return diff --git a/code/modules/gamemaster/actions/supplyrequest.dm b/code/modules/gamemaster/actions/supplyrequest.dm new file mode 100644 index 0000000000..ae2e597fcd --- /dev/null +++ b/code/modules/gamemaster/actions/supplyrequest.dm @@ -0,0 +1,11 @@ +/datum/gm_action/request + name = "general request" + departments = list(ROLE_CARGO) + +/datum/gm_action/request/announce() + spawn(rand(1 MINUTE, 2 MINUTES)) + command_announcement.Announce("[pick("A nearby vessel", "A Solar contractor", "A Skrellian contractor", "A NanoTrasen board director")] has requested the delivery of [pick("one","two","three","several")] [pick("medical","engineering","research","civilian")] supply packages. The [station_name()] has been tasked with completing this request.", "Supply Request") + +/datum/gm_action/request/get_weight() + return max(15, 15 + round(gm.staleness / 2) - gm.danger) + (metric.count_people_in_department(ROLE_CARGO) * 10) + diff --git a/code/modules/gamemaster/actions/swarmboarder.dm b/code/modules/gamemaster/actions/swarmboarder.dm new file mode 100644 index 0000000000..8bc436b3a7 --- /dev/null +++ b/code/modules/gamemaster/actions/swarmboarder.dm @@ -0,0 +1,75 @@ +/datum/gm_action/swarm_boarder + name = "swarmer shell" + departments = list(ROLE_EVERYONE, ROLE_SECURITY, ROLE_ENGINEERING) + chaotic = 30 + observers_used = TRUE + var/area/target_area // Chosen target area + var/area/target_turf // Chosen target turf in target_area + var/list/area/excluded = list( + /area/submap, + /area/shuttle, + /area/crew_quarters, + /area/holodeck, + /area/engineering/engine_room + ) + + var/list/area/included = list( + /area/maintenance + ) + +/datum/gm_action/swarm_boarder/set_up() + severity = pickweight(EVENT_LEVEL_MUNDANE = 30, + EVENT_LEVEL_MODERATE = 10, + EVENT_LEVEL_MAJOR = 1 + ) + + var/list/area/grand_list_of_areas = get_station_areas(excluded) + + for(var/area/Incl in included) + for(var/area/A in grand_list_of_areas) + if(!istype(A, Incl)) + grand_list_of_areas -= A + + // Okay, now lets try and pick a target! Lets try 10 times, otherwise give up + for(var/i in 1 to 10) + var/area/A = pick(grand_list_of_areas) + if(is_area_occupied(A)) + log_debug("[name] event: Rejected [A] because it is occupied.") + continue + // A good area, great! Lets try and pick a turf + var/list/turfs = list() + for(var/turf/simulated/floor/F in A) + if(turf_clear(F)) + turfs += F + if(turfs.len == 0) + log_debug("[name] event: Rejected [A] because it has no clear turfs.") + continue + target_area = A + target_turf = pick(turfs) + + if(!target_area) + log_debug("[name] event: Giving up after too many failures to pick target area") + return + +/datum/gm_action/swarm_boarder/start() + if(!target_turf) + return + ..() + + var/swarmertype = /obj/structure/ghost_pod/ghost_activated/swarm_drone/event + + if(severity == EVENT_LEVEL_MODERATE) + swarmertype = /obj/structure/ghost_pod/ghost_activated/swarm_drone/event/melee + + if(severity == EVENT_LEVEL_MAJOR) + swarmertype = /obj/structure/ghost_pod/ghost_activated/swarm_drone/event/gunner + + new swarmertype(target_turf) + +/datum/gm_action/swarm_boarder/get_weight() + return -60 + (metric.count_people_in_department(ROLE_SECURITY) * 20 + metric.count_people_in_department(ROLE_SYNTHETIC) * 5 + metric.count_people_in_department(ROLE_EVERYONE) * 1) + +/datum/gm_action/swarm_boarder/announce() + spawn(rand(5 MINUTES, 15 MINUTES)) + if(prob(80) && severity >= EVENT_LEVEL_MODERATE && atc && !atc.squelched) + atc.msg("Attention civilian vessels in [using_map.starsys_name] shipping lanes, caution is advised as [pick("an unidentified vessel", "a known criminal's vessel", "a derelict vessel")] has been detected passing multiple local stations.") diff --git a/code/modules/gamemaster/game_master.dm b/code/modules/gamemaster/game_master.dm index 16a6a03887..61a53f1854 100644 --- a/code/modules/gamemaster/game_master.dm +++ b/code/modules/gamemaster/game_master.dm @@ -15,13 +15,22 @@ var/next_action = 0 // Minimum amount of time of nothingness until the GM can pick something again. var/last_department_used = null // If an event was done for a specific department, it is written here, so it doesn't do it again. - /datum/game_master/New() ..() available_actions = init_subtypes(/datum/gm_action) for(var/datum/gm_action/action in available_actions) action.gm = src + var/config_setup_delay = TRUE + spawn(0) + while(config_setup_delay) + if(config) + config_setup_delay = FALSE + if(config.enable_game_master) + suspended = FALSE + else + sleep(30 SECONDS) + /datum/game_master/process() if(ticker && ticker.current_state == GAME_STATE_PLAYING && !suspended) adjust_staleness(1) diff --git a/code/modules/holodeck/HolodeckObjects.dm b/code/modules/holodeck/HolodeckObjects.dm index c1c7ebedaf..35012a262d 100644 --- a/code/modules/holodeck/HolodeckObjects.dm +++ b/code/modules/holodeck/HolodeckObjects.dm @@ -264,7 +264,9 @@ datum/unarmed_attack/holopugilism/unarmed_override(var/mob/living/carbon/human/u /obj/item/weapon/holo/esword desc = "May the force be within you. Sorta." - icon_state = "sword0" + icon_state = "esword" + var/lcolor + var/rainbow = FALSE item_icons = list( slot_l_hand_str = 'icons/mob/items/lefthand_melee.dmi', slot_r_hand_str = 'icons/mob/items/righthand_melee.dmi', @@ -276,15 +278,12 @@ datum/unarmed_attack/holopugilism/unarmed_override(var/mob/living/carbon/human/u w_class = ITEMSIZE_SMALL flags = NOBLOODY var/active = 0 - var/item_color -/obj/item/weapon/holo/esword/green - New() - item_color = "green" +/obj/item/weapon/holo/esword/green/New() + lcolor = "#008000" -/obj/item/weapon/holo/esword/red - New() - item_color = "red" +/obj/item/weapon/holo/esword/red/New() + lcolor = "#FF0000" /obj/item/weapon/holo/esword/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack") if(active && default_parry_check(user, attacker, damage_source) && prob(50)) @@ -297,32 +296,47 @@ datum/unarmed_attack/holopugilism/unarmed_override(var/mob/living/carbon/human/u return TRUE return FALSE -/obj/item/weapon/holo/esword/New() - item_color = pick("red","blue","green","purple") - /obj/item/weapon/holo/esword/attack_self(mob/living/user as mob) active = !active if (active) force = 30 - icon_state = "sword[item_color]" + item_state = "[icon_state]_blade" w_class = ITEMSIZE_LARGE playsound(user, 'sound/weapons/saberon.ogg', 50, 1) to_chat(user, "[src] is now active.") else force = 3 - icon_state = "sword0" + item_state = "[icon_state]" w_class = ITEMSIZE_SMALL playsound(user, 'sound/weapons/saberoff.ogg', 50, 1) to_chat(user, "[src] can now be concealed.") - if(istype(user,/mob/living/carbon/human)) - var/mob/living/carbon/human/H = user - H.update_inv_l_hand() - H.update_inv_r_hand() - + update_icon() add_fingerprint(user) return +/obj/item/weapon/holo/esword/attackby(obj/item/weapon/W, mob/user) + if(istype(W, /obj/item/device/multitool) && !active) + if(!rainbow) + rainbow = TRUE + else + rainbow = FALSE + to_chat(user, "You manipulate the color controller in [src].") + update_icon() + return ..() + +/obj/item/weapon/holo/esword/update_icon() + . = ..() + var/mutable_appearance/blade_overlay = mutable_appearance(icon, "[icon_state]_blade") + blade_overlay.color = lcolor + cut_overlays() //So that it doesn't keep stacking overlays non-stop on top of each other + if(active) + add_overlay(blade_overlay) + if(istype(usr,/mob/living/carbon/human)) + var/mob/living/carbon/human/H = usr + H.update_inv_l_hand() + H.update_inv_r_hand() + //BASKETBALL OBJECTS /obj/item/weapon/beach_ball/holoball diff --git a/code/modules/holomap/holomap_area.dm b/code/modules/holomap/holomap_area.dm index 2cc755dfa5..a9677c562e 100644 --- a/code/modules/holomap/holomap_area.dm +++ b/code/modules/holomap/holomap_area.dm @@ -33,7 +33,8 @@ /area/engineering holomap_color = HOLOMAP_AREACOLOR_ENGINEERING -/area/engineering/atmos/intake +//TFF 11/12/19 - Minor refactor, makes mice spawn only in Atmos. +/area/engineering/atmos_intake holomap_color = null /area/maintenance/substation/engineering holomap_color = HOLOMAP_AREACOLOR_ENGINEERING diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 303deb06e1..428f50e696 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -24,50 +24,50 @@ if(planttype) plantname = planttype - if(!plantname) - return - - if(!plant_controller) - sleep(250) // ugly hack, should mean roundstart plants are fine. - if(!plant_controller) - world << "Plant controller does not exist and [src] requires it. Aborting." - qdel(src) - return - - seed = plant_controller.seeds[plantname] - - if(!seed) - return - - name = "[seed.seed_name]" - trash = seed.get_trash_type() - - update_icon() - - if(!seed.chems) - return - - potency = seed.get_trait(TRAIT_POTENCY) - /obj/item/weapon/reagent_containers/food/snacks/grown/Initialize() ..() + spawn() + if(!plantname) + return - for(var/rid in seed.chems) - var/list/reagent_data = seed.chems[rid] - if(reagent_data && reagent_data.len) - var/rtotal = reagent_data[1] - var/list/data = list() - if(reagent_data.len > 1 && potency > 0) - rtotal += round(potency/reagent_data[2]) - if(rid == "nutriment") - data[seed.seed_name] = max(1,rtotal) + if(!plant_controller) + sleep(250) // ugly hack, should mean roundstart plants are fine. + if(!plant_controller) + world << "Plant controller does not exist and [src] requires it. Aborting." + qdel(src) + return - reagents.add_reagent(rid,max(1,rtotal),data) - update_desc() - if(reagents.total_volume > 0) - bitesize = 1+round(reagents.total_volume / 2, 1) - if(seed.get_trait(TRAIT_STINGS)) - force = 1 + seed = plant_controller.seeds[plantname] + + if(!seed) + return + + name = "[seed.seed_name]" + trash = seed.get_trash_type() + + update_icon() + + if(!seed.chems) + return + + potency = seed.get_trait(TRAIT_POTENCY) + + for(var/rid in seed.chems) + var/list/reagent_data = seed.chems[rid] + if(reagent_data && reagent_data.len) + var/rtotal = reagent_data[1] + var/list/data = list() + if(reagent_data.len > 1 && potency > 0) + rtotal += round(potency/reagent_data[2]) + if(rid == "nutriment") + data[seed.seed_name] = max(1,rtotal) + + reagents.add_reagent(rid,max(1,rtotal),data) + update_desc() + if(reagents.total_volume > 0) + bitesize = 1+round(reagents.total_volume / 2, 1) + if(seed.get_trait(TRAIT_STINGS)) + force = 1 /obj/item/weapon/reagent_containers/food/snacks/grown/proc/update_desc() @@ -157,6 +157,12 @@ overlays |= plant_icon /obj/item/weapon/reagent_containers/food/snacks/grown/Crossed(var/mob/living/M) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = M + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(seed && seed.get_trait(TRAIT_JUICY) == 2) if(istype(M)) diff --git a/code/modules/hydroponics/spreading/spreading_response.dm b/code/modules/hydroponics/spreading/spreading_response.dm index 8a8ceabfeb..1a2e46283e 100644 --- a/code/modules/hydroponics/spreading/spreading_response.dm +++ b/code/modules/hydroponics/spreading/spreading_response.dm @@ -20,6 +20,12 @@ manual_unbuckle(user) /obj/effect/plant/Crossed(atom/movable/O) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = O + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(isliving(O)) trodden_on(O) diff --git a/code/modules/integrated_electronics/subtypes/input.dm b/code/modules/integrated_electronics/subtypes/input.dm index 4ac81ea4cc..14faea70b0 100644 --- a/code/modules/integrated_electronics/subtypes/input.dm +++ b/code/modules/integrated_electronics/subtypes/input.dm @@ -423,7 +423,9 @@ desc = "Enables the sending and receiving of messages on the Exonet with the EPv2 protocol." extended_desc = "An EPv2 address is a string with the format of XXXX:XXXX:XXXX:XXXX. Data can be send or received using the \ second pin on each side, with additonal data reserved for the third pin. When a message is received, the second activaiton pin \ - will pulse whatever's connected to it. Pulsing the first activation pin will send a message." + will pulse whatever's connected to it. Pulsing the first activation pin will send a message.\ + \ + When messaging Communicators, you must set data to send to the string `text` to avoid errors in reception." icon_state = "signal" complexity = 4 inputs = list( diff --git a/code/modules/library/hardcode_library/_library.dm b/code/modules/library/hardcode_library/_library.dm new file mode 100644 index 0000000000..03364fea0a --- /dev/null +++ b/code/modules/library/hardcode_library/_library.dm @@ -0,0 +1,61 @@ +/* + * Home of the New (NOV 1st, 2019) library books. + */ + +/obj/item/weapon/book/custom_library + name = "Book" + desc = "A hardbound book." + description_info = "This book is printed from the custom repo. If you can see this, something went wrong." + + icon = 'icons/obj/custom_books.dmi' + icon_state = "book" + + // This is the ckey of the book's author. + var/origkey = null + author = "UNKNOWN" + +/obj/item/weapon/book/custom_library/fiction + libcategory = "Fiction" + +/obj/item/weapon/book/custom_library/nonfiction + libcategory = "Non-Fiction" + +/obj/item/weapon/book/custom_library/reference + libcategory = "Reference" + +/obj/item/weapon/book/custom_library/religious + libcategory = "Religious" +/* +/obj/item/weapon/book/custom_library/adult + libcategory = "Adult" +*/ +/obj/item/weapon/book/bundle/custom_library + name = "Book" + desc = "A hardbound book." + description_info = "This book is printed from the custom repo. If you can see this, something went wrong." + + icon = 'icons/obj/custom_books.dmi' + icon_state = "book" + + // This is the ckey of the book's author. + var/origkey = null + author = "UNKNOWN" + + page = 1 //current page + pages = list() //the contents of each page + +/obj/item/weapon/book/bundle/custom_library/fiction + libcategory = "Fiction" + +/obj/item/weapon/book/bundle/custom_library/nonfiction + libcategory = "Non-Fiction" + +/obj/item/weapon/book/bundle/custom_library/reference + libcategory = "Reference" + +/obj/item/weapon/book/bundle/custom_library/religious + libcategory = "Religious" +/* +/obj/item/weapon/book/bundle/custom_library/adult + libcategory = "Adult" +*/ diff --git a/code/modules/library/lib_items.dm b/code/modules/library/lib_items.dm index 3c7ebec377..9b9be0d6c8 100644 --- a/code/modules/library/lib_items.dm +++ b/code/modules/library/lib_items.dm @@ -147,6 +147,7 @@ var/dat // Actual page content var/due_date = 0 // Game time in 1/10th seconds var/author // Who wrote the thing, can be changed by pen or PC. It is not automatically assigned + var/libcategory = "Miscellaneous" // The library category this book sits in. "Fiction", "Non-Fiction", "Adult", "Reference", "Religion" var/unique = 0 // 0 - Normal book, 1 - Should not be treated as normal book, unable to be copied, unable to be modified var/title // The real name of the book. var/carved = 0 // Has the book been hollowed out for use as a secret storage item? @@ -260,6 +261,74 @@ M << browse("Penned by [author].
" + "[dat]", "window=book") user.setClickCooldown(DEFAULT_QUICK_COOLDOWN) //to prevent spam +/* +* Book Bundle (Multi-page book) +*/ + +/obj/item/weapon/book/bundle + var/page = 1 //current page + var/list/pages = list() //the contents of each page + +/obj/item/weapon/book/bundle/proc/show_content(mob/user as mob) + var/dat + var/obj/item/weapon/W = pages[page] + // first + if(page == 1) + dat+= "
Front
" + dat+= "
Next Page


" + // last + else if(page == pages.len) + dat+= "
Previous Page
" + dat+= "
Back


" + // middle pages + else + dat+= "
Previous Page
" + dat+= "
Next Page


" + if(istype(pages[page], /obj/item/weapon/paper)) + var/obj/item/weapon/paper/P = W + if(!(istype(usr, /mob/living/carbon/human) || isobserver(usr) || istype(usr, /mob/living/silicon))) + dat += "[P.name][stars(P.info)][P.stamps]" + else + dat += "[P.name][P.info][P.stamps]" + user << browse(dat, "window=[name]") + else if(istype(pages[page], /obj/item/weapon/photo)) + var/obj/item/weapon/photo/P = W + user << browse_rsc(P.img, "tmp_photo.png") + user << browse(dat + "[P.name]" \ + + "" \ + + "
Written on the back:
[P.scribble]" : ]"\ + + "", "window=[name]") + else if(!isnull(pages[page])) + if(!(istype(usr, /mob/living/carbon/human) || isobserver(usr) || istype(usr, /mob/living/silicon))) + dat += "Page [page][stars(pages[page])]" + else + dat += "Page [page][pages[page]]" + user << browse(dat, "window=[name]") + +/obj/item/weapon/book/bundle/attack_self(mob/user as mob) + src.show_content(user) + add_fingerprint(usr) + update_icon() + return + +/obj/item/weapon/book/bundle/Topic(href, href_list) + if(..()) + return 1 + if((src in usr.contents) || (istype(src.loc, /obj/item/weapon/folder) && (src.loc in usr.contents))) + usr.set_machine(src) + if(href_list["next_page"]) + if(page != pages.len) + page++ + playsound(src.loc, "pageturn", 50, 1) + if(href_list["prev_page"]) + if(page > 1) + page-- + playsound(src.loc, "pageturn", 50, 1) + src.attack_self(usr) + updateUsrDialog() + else + to_chat(usr, "You need to hold it in your hands!") /* * Barcode Scanner diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm index 716b85f2f1..e86ed026b7 100644 --- a/code/modules/library/lib_machines.dm +++ b/code/modules/library/lib_machines.dm @@ -113,7 +113,7 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f * Library Computer */ // TODO: Make this an actual /obj/machinery/computer that can be crafted from circuit boards and such -// It is August 22nd, 2012... This TODO has already been here for months.. I wonder how long it'll last before someone does something about it. +// It is August 22nd, 2012... This TODO has already been here for months.. I wonder how long it'll last before someone does something about it. // Nov 2019. Nope. /obj/machinery/librarycomp name = "Check-In/Out Computer" icon = 'icons/obj/library.dmi' @@ -133,6 +133,40 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f var/bibledelay = 0 // LOL NO SPAM (1 minute delay) -- Doohl + var/static/list/all_books + + var/static/list/base_genre_books + +/obj/machinery/librarycomp/Initialize() + ..() + + if(!base_genre_books || !base_genre_books.len) + base_genre_books = list( + /obj/item/weapon/book/custom_library/fiction, + /obj/item/weapon/book/custom_library/nonfiction, + /obj/item/weapon/book/custom_library/reference, + /obj/item/weapon/book/custom_library/religious, + /obj/item/weapon/book/bundle/custom_library/fiction, + /obj/item/weapon/book/bundle/custom_library/nonfiction, + /obj/item/weapon/book/bundle/custom_library/reference, + /obj/item/weapon/book/bundle/custom_library/religious + ) + + if(!all_books || !all_books.len) + all_books = list() + + for(var/path in subtypesof(/obj/item/weapon/book/codex/lore)) + var/obj/item/weapon/book/C = new path(null) + all_books[C.name] = C + + for(var/path in subtypesof(/obj/item/weapon/book/custom_library) - base_genre_books) + var/obj/item/weapon/book/B = new path(null) + all_books[B.title] = B + + for(var/path in subtypesof(/obj/item/weapon/book/bundle/custom_library) - base_genre_books) + var/obj/item/weapon/book/M = new path(null) + all_books[M.title] = M + /obj/machinery/librarycomp/attack_hand(var/mob/user as mob) usr.set_machine(src) var/dat = "Book Inventory Management\n" // @@ -144,7 +178,8 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f 3. Check out a Book
4. Connect to External Archive
5. Upload New Title to Archive
- 6. Print a Bible
"} + 6. Print a Bible
+ 8. Access NT Internal Archive
"} if(src.emagged) dat += "7. Access the Forbidden Lore Vault
" if(src.arcanecheckout) @@ -190,8 +225,11 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f (Commit Entry)
(Return to main menu)
"} if(4) - dat += "

External Archive

" + dat += "

External Archive

" //VOREStation Edit establish_old_db_connection() + + dat += "

Warning: System Administrator has slated this archive for removal. Personal uploads should be taken to the NT board of internal literature.

" + if(!dbcon_old.IsConnected()) dat += "ERROR: Unable to contact External Archive. Please contact your system administrator for assistance." else @@ -210,6 +248,10 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f dat += "" dat += "
(Return to main menu)
" if(5) + //dat += "

ERROR

" //VOREStation Removal + //dat+= "Library Database is in Secure Management Mode.
\ //VOREStation Removal + //Contact a System Administrator for more information.
" //VOREStation Removal + //VOREstation Edit Start dat += "

Upload a New Title

" if(!scanner) for(var/obj/machinery/libraryscanner/S in range(9)) @@ -227,12 +269,30 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f dat += {"Author: [scanner.cache.author]
Category: [upload_category]
\[Upload\]
"} + //VOREStation Edit End dat += "(Return to main menu)
" if(7) dat += {"

Accessing Forbidden Lore Vault v 1.3

Are you absolutely sure you want to proceed? EldritchTomes Inc. takes no responsibilities for loss of sanity resulting from this action.

Yes.
No.
"} + if(8) + dat += "

NT Internal Archive

" + if(!all_books || !all_books.len) + dat += "ERROR Something has gone seriously wrong. Contact System Administrator for more information." + else + dat += {" + " + dat += "
TITLE\[Order\]
" + dat += "
(Return to main menu)
" //dat += "Close

" user << browse(dat, "window=library") @@ -293,6 +353,8 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f if("7") screenstate = 7 + if("8") + screenstate = 8 if(href_list["arccheckout"]) if(src.emagged) src.arcanecheckout = 1 @@ -328,6 +390,8 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f var/newcategory = input("Choose a category: ") in list("Fiction", "Non-Fiction", "Adult", "Reference", "Religion") if(newcategory) upload_category = newcategory + + //VOREStation Edit Start if(href_list["upload"]) if(scanner) if(scanner.cache) @@ -356,6 +420,7 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f else log_game("[usr.name]/[usr.key] has uploaded the book titled [scanner.cache.name], [length(scanner.cache.dat)] signs") alert("Upload Complete.") + //VOREStation Edit End if(href_list["targetid"]) var/sqlid = sanitizeSQL(href_list["targetid"]) @@ -392,6 +457,10 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f spawn() src.Topic(nhref, params2list(nhref), src) if(href_list["sort"] in list("author", "title", "category")) sortby = href_list["sort"] + if(href_list["hardprint"]) + var/newpath = href_list["hardprint"] + var/obj/item/weapon/book/NewBook = new newpath(get_turf(src)) + NewBook.name = "Book: [NewBook.name]" src.add_fingerprint(usr) src.updateUsrDialog() return @@ -458,17 +527,34 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f density = 1 /obj/machinery/bookbinder/attackby(var/obj/O as obj, var/mob/user as mob) - if(istype(O, /obj/item/weapon/paper)) - user.drop_item() - O.loc = src - user.visible_message("[user] loads some paper into [src].", "You load some paper into [src].") - src.visible_message("[src] begins to hum as it warms up its printing drums.") - sleep(rand(200,400)) - src.visible_message("[src] whirs as it prints and binds a new book.") - var/obj/item/weapon/book/b = new(src.loc) - b.dat = O:info - b.name = "Print Job #" + "[rand(100, 999)]" - b.icon_state = "book[rand(1,7)]" - qdel(O) + if(istype(O, /obj/item/weapon/paper) || istype(O, /obj/item/weapon/paper_bundle)) + if(istype(O, /obj/item/weapon/paper)) + user.drop_item() + O.loc = src + user.visible_message("[user] loads some paper into [src].", "You load some paper into [src].") + src.visible_message("[src] begins to hum as it warms up its printing drums.") + sleep(rand(200,400)) + src.visible_message("[src] whirs as it prints and binds a new book.") + var/obj/item/weapon/book/b = new(src.loc) + b.dat = O:info + b.name = "Print Job #" + "[rand(100, 999)]" + b.icon_state = "book[rand(1,7)]" + qdel(O) + else + user.drop_item() + O.loc = src + user.visible_message("[user] loads some paper into [src].", "You load some paper into [src].") + src.visible_message("[src] begins to hum as it warms up its printing drums.") + sleep(rand(300,500)) + src.visible_message("[src] whirs as it prints and binds a new book.") + var/obj/item/weapon/book/bundle/b = new(src.loc) + b.pages = O:pages + for(var/obj/item/weapon/paper/P in O.contents) + P.forceMove(b) + for(var/obj/item/weapon/photo/P in O.contents) + P.forceMove(b) + b.name = "Print Job #" + "[rand(100, 999)]" + b.icon_state = "book[rand(1,7)]" + qdel(O) else ..() diff --git a/code/modules/lore_codex/codex.dm b/code/modules/lore_codex/codex.dm index 126c470de4..c1cf1b3200 100644 --- a/code/modules/lore_codex/codex.dm +++ b/code/modules/lore_codex/codex.dm @@ -24,13 +24,14 @@ has the words 'Don't Panic' in small, friendly letters on the cover." icon_state = "codex" root_type = /datum/lore/codex/category/main_virgo_lore + libcategory = "Reference" /obj/item/weapon/book/codex/lore/robutt name = "A Buyer's Guide to Artificial Bodies" desc = "Recommended reading for the newly cyborgified, new positronics, and the upwardly-mobile FBP." icon_state = "codex_robutt" root_type = /datum/lore/codex/category/main_robutts - + libcategory = "Reference" /obj/item/weapon/book/codex/lore/news name = "Daedalus Pocket Newscaster" @@ -38,6 +39,7 @@ icon_state = "newscodex" w_class = ITEMSIZE_SMALL root_type = /datum/lore/codex/category/main_news + libcategory = "Reference" /* //VORESTATION REMOVAL // Combines SOP/Regs/Law @@ -48,4 +50,5 @@ icon_state = "corp_regs" root_type = /datum/lore/codex/category/main_corp_regs throwforce = 5 // Throw the book at 'em. + libcategory = "Reference" */ diff --git a/code/modules/materials/material_recipes.dm b/code/modules/materials/material_recipes.dm index 48cbf116c4..d141f1c7af 100644 --- a/code/modules/materials/material_recipes.dm +++ b/code/modules/materials/material_recipes.dm @@ -225,3 +225,14 @@ recipes += new/datum/stack_recipe("baggy pants", /obj/item/clothing/under/pants/baggy/white, 8, time = 10 SECONDS, pass_stack_color = TRUE) recipes += new/datum/stack_recipe("belt pouch", /obj/item/weapon/storage/belt/fannypack/white, 25, time = 1 MINUTE, pass_stack_color = TRUE) recipes += new/datum/stack_recipe("crude bandage", /obj/item/stack/medical/crude_pack, 1, time = 2 SECONDS, pass_stack_color = TRUE) + +/material/resin/generate_recipes() + recipes = list() + recipes += new/datum/stack_recipe("[display_name] door", /obj/structure/simple_door/resin, 10, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] barricade", /obj/effect/alien/resin/wall, 5, time = 5 SECONDS, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] nest", /obj/structure/bed/nest, 2, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] wall girders", /obj/structure/girder/resin, 2, time = 5 SECONDS, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("crude [display_name] bandage", /obj/item/stack/medical/crude_pack, 1, time = 2 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] net", /obj/item/weapon/material/fishing_net, 10, time = 5 SECONDS, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] membrane", /obj/effect/alien/resin/membrane, 1, time = 2 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] node", /obj/effect/alien/weeds/node, 1, time = 4 SECONDS) diff --git a/code/modules/materials/material_sheets.dm b/code/modules/materials/material_sheets.dm index 31a3447bf2..f6708481b5 100644 --- a/code/modules/materials/material_sheets.dm +++ b/code/modules/materials/material_sheets.dm @@ -371,6 +371,15 @@ pass_color = TRUE strict_color_stacking = TRUE +/obj/item/stack/material/resin + name = "resin" + icon_state = "sheet-resin" + default_type = "resin" + no_variants = TRUE + apply_colour = TRUE + pass_color = TRUE + strict_color_stacking = TRUE + /obj/item/stack/material/cardboard name = "cardboard" icon_state = "sheet-card" diff --git a/code/modules/materials/materials.dm b/code/modules/materials/materials.dm index 307b52bb90..724f4771f6 100644 --- a/code/modules/materials/materials.dm +++ b/code/modules/materials/materials.dm @@ -16,6 +16,7 @@ stone metal solid + resin ONLY WALLS cult hull @@ -240,6 +241,10 @@ var/list/name_to_material /material/proc/combustion_effect(var/turf/T, var/temperature) return +// Used by walls to do on-touch things, after checking for crumbling and open-ability. +/material/proc/wall_touch_special(var/turf/simulated/wall/W, var/mob/living/L) + return + // Datum definitions follow. /material/uranium name = "uranium" @@ -824,12 +829,18 @@ var/list/name_to_material /material/resin name = "resin" icon_colour = "#35343a" + icon_base = "resin" dooropen_noise = 'sound/effects/attackblob.ogg' door_icon_base = "resin" + icon_reinf = "reinf_mesh" melting_point = T0C+300 sheet_singular_name = "blob" sheet_plural_name = "blobs" conductive = 0 + explosion_resistance = 60 + radiation_resistance = 10 + stack_origin_tech = list(TECH_MATERIAL = 8, TECH_PHORON = 4, TECH_BLUESPACE = 4, TECH_BIO = 7) + stack_type = /obj/item/stack/material/resin /material/resin/can_open_material_door(var/mob/living/user) var/mob/living/carbon/M = user @@ -837,6 +848,17 @@ var/list/name_to_material return 1 return 0 +/material/resin/wall_touch_special(var/turf/simulated/wall/W, var/mob/living/L) + var/mob/living/carbon/M = L + if(istype(M) && locate(/obj/item/organ/internal/xenos/hivenode) in M.internal_organs) + to_chat(M, "\The [W] shudders under your touch, starting to become porous.") + playsound(W, 'sound/effects/attackblob.ogg', 50, 1) + if(do_after(L, 5 SECONDS)) + spawn(2) + playsound(W, 'sound/effects/attackblob.ogg', 100, 1) + W.dismantle_wall() + return 1 + return 0 /material/wood name = MAT_WOOD diff --git a/code/modules/mob/living/simple_animal/corpse.dm b/code/modules/mob/dead/corpse.dm similarity index 96% rename from code/modules/mob/living/simple_animal/corpse.dm rename to code/modules/mob/dead/corpse.dm index 62b2c43fe8..81a51214a7 100644 --- a/code/modules/mob/living/simple_animal/corpse.dm +++ b/code/modules/mob/dead/corpse.dm @@ -1,170 +1,170 @@ -//Meant for simple animals to drop lootable human bodies. - -//If someone can do this in a neater way, be my guest-Kor - -//This has to be seperate from the Away Mission corpses, because New() doesn't work for those, and initialize() doesn't work for these. - -//To do: Allow corpses to appear mangled, bloody, etc. Allow customizing the bodies appearance (they're all bald and white right now). - - -/obj/effect/landmark/mobcorpse - name = "Unknown" - var/mobname = "Unknown" //Unused now but it'd fuck up maps to remove it now - var/corpseuniform = null //Set this to an object path to have the slot filled with said object on the corpse. - var/corpsesuit = null - var/corpseshoes = null - var/corpsegloves = null - var/corpseradio = null - var/corpseglasses = null - var/corpsemask = null - var/corpsehelmet = null - var/corpsebelt = null - var/corpsepocket1 = null - var/corpsepocket2 = null - var/corpseback = null - var/corpseid = 0 //Just set to 1 if you want them to have an ID - var/corpseidjob = null // Needs to be in quotes, such as "Clown" or "Chef." This just determines what the ID reads as, not their access - var/corpseidaccess = null //This is for access. See access.dm for which jobs give what access. Again, put in quotes. Use "Captain" if you want it to be all access. - var/corpseidicon = null //For setting it to be a gold, silver, CentCom etc ID - -/obj/effect/landmark/mobcorpse/New() - createCorpse() - -/obj/effect/landmark/mobcorpse/proc/createCorpse() //Creates a mob and checks for gear in each slot before attempting to equip it. - var/mob/living/carbon/human/M = new /mob/living/carbon/human (src.loc) - M.real_name = src.name - M.stat = 2 //Kills the new mob - if(src.corpseuniform) - M.equip_to_slot_or_del(new src.corpseuniform(M), slot_w_uniform) - if(src.corpsesuit) - M.equip_to_slot_or_del(new src.corpsesuit(M), slot_wear_suit) - if(src.corpseshoes) - M.equip_to_slot_or_del(new src.corpseshoes(M), slot_shoes) - if(src.corpsegloves) - M.equip_to_slot_or_del(new src.corpsegloves(M), slot_gloves) - if(src.corpseradio) - M.equip_to_slot_or_del(new src.corpseradio(M), slot_l_ear) - if(src.corpseglasses) - M.equip_to_slot_or_del(new src.corpseglasses(M), slot_glasses) - if(src.corpsemask) - M.equip_to_slot_or_del(new src.corpsemask(M), slot_wear_mask) - if(src.corpsehelmet) - M.equip_to_slot_or_del(new src.corpsehelmet(M), slot_head) - if(src.corpsebelt) - M.equip_to_slot_or_del(new src.corpsebelt(M), slot_belt) - if(src.corpsepocket1) - M.equip_to_slot_or_del(new src.corpsepocket1(M), slot_r_store) - if(src.corpsepocket2) - M.equip_to_slot_or_del(new src.corpsepocket2(M), slot_l_store) - if(src.corpseback) - M.equip_to_slot_or_del(new src.corpseback(M), slot_back) - if(src.corpseid == 1) - var/obj/item/weapon/card/id/W = new(M) - W.name = "[M.real_name]'s ID Card" - var/datum/job/jobdatum - for(var/jobtype in typesof(/datum/job)) - var/datum/job/J = new jobtype - if(J.title == corpseidaccess) - jobdatum = J - break - if(src.corpseidicon) - W.icon_state = corpseidicon - if(src.corpseidaccess) - if(jobdatum) - W.access = jobdatum.get_access() - else - W.access = list() - if(corpseidjob) - W.assignment = corpseidjob - W.registered_name = M.real_name - M.equip_to_slot_or_del(W, slot_wear_id) - delete_me = 1 - qdel(src) - - - -//List of different corpse types - -/obj/effect/landmark/mobcorpse/syndicatesoldier - name = "Mercenary" - corpseuniform = /obj/item/clothing/under/syndicate - corpsesuit = /obj/item/clothing/suit/armor/vest - corpseshoes = /obj/item/clothing/shoes/boots/swat - corpsegloves = /obj/item/clothing/gloves/swat - corpseradio = /obj/item/device/radio/headset - corpsemask = /obj/item/clothing/mask/gas - corpsehelmet = /obj/item/clothing/head/helmet/swat - corpseback = /obj/item/weapon/storage/backpack - corpseid = 1 - corpseidjob = "Operative" - corpseidaccess = "Syndicate" - -/obj/effect/landmark/mobcorpse/solarpeacekeeper - name = "Mercenary" - corpseuniform = /obj/item/clothing/under/syndicate - corpsesuit = /obj/item/clothing/suit/armor/pcarrier/blue/sol - corpseshoes = /obj/item/clothing/shoes/boots/swat - corpsegloves = /obj/item/clothing/gloves/swat - corpseradio = /obj/item/device/radio/headset - corpsemask = /obj/item/clothing/mask/gas - corpsehelmet = /obj/item/clothing/head/helmet/swat - corpseback = /obj/item/weapon/storage/backpack - corpseid = 1 - corpseidjob = "Peacekeeper" - corpseidaccess = "Syndicate" - -/obj/effect/landmark/mobcorpse/syndicatecommando - name = "Syndicate Commando" - corpseuniform = /obj/item/clothing/under/syndicate - corpsesuit = /obj/item/clothing/suit/space/void/merc - corpseshoes = /obj/item/clothing/shoes/boots/swat - corpsegloves = /obj/item/clothing/gloves/swat - corpseradio = /obj/item/device/radio/headset - corpsemask = /obj/item/clothing/mask/gas/syndicate - corpsehelmet = /obj/item/clothing/head/helmet/space/void/merc - corpseback = /obj/item/weapon/tank/jetpack/oxygen - corpsepocket1 = /obj/item/weapon/tank/emergency/oxygen - corpseid = 1 - corpseidjob = "Operative" - corpseidaccess = "Syndicate" - - - -/obj/effect/landmark/mobcorpse/clown - name = "Clown" - corpseuniform = /obj/item/clothing/under/rank/clown - corpseshoes = /obj/item/clothing/shoes/clown_shoes - corpseradio = /obj/item/device/radio/headset - corpsemask = /obj/item/clothing/mask/gas/clown_hat - corpsepocket1 = /obj/item/weapon/bikehorn - corpseback = /obj/item/weapon/storage/backpack/clown - corpseid = 1 - corpseidjob = "Clown" - corpseidaccess = "Clown" - - - -/obj/effect/landmark/mobcorpse/pirate - name = "Pirate" - corpseuniform = /obj/item/clothing/under/pirate - corpseshoes = /obj/item/clothing/shoes/boots/jackboots - corpseglasses = /obj/item/clothing/glasses/eyepatch - corpsehelmet = /obj/item/clothing/head/bandana - - - -/obj/effect/landmark/mobcorpse/pirate/ranged - name = "Pirate Gunner" - corpsesuit = /obj/item/clothing/suit/pirate - corpsehelmet = /obj/item/clothing/head/pirate - - - -/obj/effect/landmark/mobcorpse/russian - name = "Russian" - corpseuniform = /obj/item/clothing/under/soviet - corpseshoes = /obj/item/clothing/shoes/boots/jackboots - corpsehelmet = /obj/item/clothing/head/bearpelt - -/obj/effect/landmark/mobcorpse/russian/ranged +//Meant for simple animals to drop lootable human bodies. + +//If someone can do this in a neater way, be my guest-Kor + +//This has to be seperate from the Away Mission corpses, because New() doesn't work for those, and initialize() doesn't work for these. + +//To do: Allow corpses to appear mangled, bloody, etc. Allow customizing the bodies appearance (they're all bald and white right now). + + +/obj/effect/landmark/mobcorpse + name = "Unknown" + var/mobname = "Unknown" //Unused now but it'd fuck up maps to remove it now + var/corpseuniform = null //Set this to an object path to have the slot filled with said object on the corpse. + var/corpsesuit = null + var/corpseshoes = null + var/corpsegloves = null + var/corpseradio = null + var/corpseglasses = null + var/corpsemask = null + var/corpsehelmet = null + var/corpsebelt = null + var/corpsepocket1 = null + var/corpsepocket2 = null + var/corpseback = null + var/corpseid = 0 //Just set to 1 if you want them to have an ID + var/corpseidjob = null // Needs to be in quotes, such as "Clown" or "Chef." This just determines what the ID reads as, not their access + var/corpseidaccess = null //This is for access. See access.dm for which jobs give what access. Again, put in quotes. Use "Captain" if you want it to be all access. + var/corpseidicon = null //For setting it to be a gold, silver, CentCom etc ID + +/obj/effect/landmark/mobcorpse/New() + createCorpse() + +/obj/effect/landmark/mobcorpse/proc/createCorpse() //Creates a mob and checks for gear in each slot before attempting to equip it. + var/mob/living/carbon/human/M = new /mob/living/carbon/human (src.loc) + M.real_name = src.name + M.stat = 2 //Kills the new mob + if(src.corpseuniform) + M.equip_to_slot_or_del(new src.corpseuniform(M), slot_w_uniform) + if(src.corpsesuit) + M.equip_to_slot_or_del(new src.corpsesuit(M), slot_wear_suit) + if(src.corpseshoes) + M.equip_to_slot_or_del(new src.corpseshoes(M), slot_shoes) + if(src.corpsegloves) + M.equip_to_slot_or_del(new src.corpsegloves(M), slot_gloves) + if(src.corpseradio) + M.equip_to_slot_or_del(new src.corpseradio(M), slot_l_ear) + if(src.corpseglasses) + M.equip_to_slot_or_del(new src.corpseglasses(M), slot_glasses) + if(src.corpsemask) + M.equip_to_slot_or_del(new src.corpsemask(M), slot_wear_mask) + if(src.corpsehelmet) + M.equip_to_slot_or_del(new src.corpsehelmet(M), slot_head) + if(src.corpsebelt) + M.equip_to_slot_or_del(new src.corpsebelt(M), slot_belt) + if(src.corpsepocket1) + M.equip_to_slot_or_del(new src.corpsepocket1(M), slot_r_store) + if(src.corpsepocket2) + M.equip_to_slot_or_del(new src.corpsepocket2(M), slot_l_store) + if(src.corpseback) + M.equip_to_slot_or_del(new src.corpseback(M), slot_back) + if(src.corpseid == 1) + var/obj/item/weapon/card/id/W = new(M) + W.name = "[M.real_name]'s ID Card" + var/datum/job/jobdatum + for(var/jobtype in typesof(/datum/job)) + var/datum/job/J = new jobtype + if(J.title == corpseidaccess) + jobdatum = J + break + if(src.corpseidicon) + W.icon_state = corpseidicon + if(src.corpseidaccess) + if(jobdatum) + W.access = jobdatum.get_access() + else + W.access = list() + if(corpseidjob) + W.assignment = corpseidjob + W.registered_name = M.real_name + M.equip_to_slot_or_del(W, slot_wear_id) + delete_me = 1 + qdel(src) + + + +//List of different corpse types + +/obj/effect/landmark/mobcorpse/syndicatesoldier + name = "Mercenary" + corpseuniform = /obj/item/clothing/under/syndicate + corpsesuit = /obj/item/clothing/suit/armor/vest + corpseshoes = /obj/item/clothing/shoes/boots/swat + corpsegloves = /obj/item/clothing/gloves/swat + corpseradio = /obj/item/device/radio/headset + corpsemask = /obj/item/clothing/mask/gas + corpsehelmet = /obj/item/clothing/head/helmet/swat + corpseback = /obj/item/weapon/storage/backpack + corpseid = 1 + corpseidjob = "Operative" + corpseidaccess = "Syndicate" + +/obj/effect/landmark/mobcorpse/solarpeacekeeper + name = "Mercenary" + corpseuniform = /obj/item/clothing/under/syndicate + corpsesuit = /obj/item/clothing/suit/armor/pcarrier/blue/sol + corpseshoes = /obj/item/clothing/shoes/boots/swat + corpsegloves = /obj/item/clothing/gloves/swat + corpseradio = /obj/item/device/radio/headset + corpsemask = /obj/item/clothing/mask/gas + corpsehelmet = /obj/item/clothing/head/helmet/swat + corpseback = /obj/item/weapon/storage/backpack + corpseid = 1 + corpseidjob = "Peacekeeper" + corpseidaccess = "Syndicate" + +/obj/effect/landmark/mobcorpse/syndicatecommando + name = "Syndicate Commando" + corpseuniform = /obj/item/clothing/under/syndicate + corpsesuit = /obj/item/clothing/suit/space/void/merc + corpseshoes = /obj/item/clothing/shoes/boots/swat + corpsegloves = /obj/item/clothing/gloves/swat + corpseradio = /obj/item/device/radio/headset + corpsemask = /obj/item/clothing/mask/gas/syndicate + corpsehelmet = /obj/item/clothing/head/helmet/space/void/merc + corpseback = /obj/item/weapon/tank/jetpack/oxygen + corpsepocket1 = /obj/item/weapon/tank/emergency/oxygen + corpseid = 1 + corpseidjob = "Operative" + corpseidaccess = "Syndicate" + + + +/obj/effect/landmark/mobcorpse/clown + name = "Clown" + corpseuniform = /obj/item/clothing/under/rank/clown + corpseshoes = /obj/item/clothing/shoes/clown_shoes + corpseradio = /obj/item/device/radio/headset + corpsemask = /obj/item/clothing/mask/gas/clown_hat + corpsepocket1 = /obj/item/weapon/bikehorn + corpseback = /obj/item/weapon/storage/backpack/clown + corpseid = 1 + corpseidjob = "Clown" + corpseidaccess = "Clown" + + + +/obj/effect/landmark/mobcorpse/pirate + name = "Pirate" + corpseuniform = /obj/item/clothing/under/pirate + corpseshoes = /obj/item/clothing/shoes/boots/jackboots + corpseglasses = /obj/item/clothing/glasses/eyepatch + corpsehelmet = /obj/item/clothing/head/bandana + + + +/obj/effect/landmark/mobcorpse/pirate/ranged + name = "Pirate Gunner" + corpsesuit = /obj/item/clothing/suit/pirate + corpsehelmet = /obj/item/clothing/head/pirate + + + +/obj/effect/landmark/mobcorpse/russian + name = "Russian" + corpseuniform = /obj/item/clothing/under/soviet + corpseshoes = /obj/item/clothing/shoes/boots/jackboots + corpsehelmet = /obj/item/clothing/head/bearpelt + +/obj/effect/landmark/mobcorpse/russian/ranged corpsehelmet = /obj/item/clothing/head/ushanka \ No newline at end of file diff --git a/code/modules/mob/living/simple_animal/corpse_vr.dm b/code/modules/mob/dead/corpse_vr.dm similarity index 100% rename from code/modules/mob/living/simple_animal/corpse_vr.dm rename to code/modules/mob/dead/corpse_vr.dm diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 758c438a25..ef7086f6e0 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -231,7 +231,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp set name = "Re-enter Corpse" if(!client) return if(!(mind && mind.current && can_reenter_corpse)) - src << "You have no body." + to_chat(src, "You have no body.") return if(mind.current.key && copytext(mind.current.key,1,2)!="@") //makes sure we don't accidentally kick any clients usr << "Another consciousness is in your body... it is resisting you." @@ -279,10 +279,10 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp set desc = "Toggles AntagHUD allowing you to see who is the antagonist" if(!config.antag_hud_allowed && !client.holder) - src << "Admins have disabled this for this round." + to_chat(src, "Admins have disabled this for this round.") return if(jobban_isbanned(src, "AntagHUD")) - src << "You have been banned from using this feature" + to_chat(src, "You have been banned from using this feature") return if(config.antag_hud_restricted && !has_enabled_antagHUD && !client.holder) var/response = alert(src, "If you turn this on, you will not be able to take any part in the round.","Are you sure you want to turn this feature on?","Yes","No") @@ -329,7 +329,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp if(following && following == target) return following = target - src << "Now following [target]" + to_chat(src, "Now following [target]") if(ismob(target)) forceMove(get_turf(target)) var/mob/M = target @@ -406,7 +406,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp forceMove(T) following = null else - src << "This mob is not located in the game world." + to_chat(src, "This mob is not located in the game world.") /* /mob/observer/dead/verb/boo() set category = "Ghost" @@ -425,11 +425,11 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp /mob/observer/dead/memory() set hidden = 1 - src << "You are dead! You have no mind to store memory!" + to_chat(src, "You are dead! You have no mind to store memory!") /mob/observer/dead/add_memory() set hidden = 1 - src << "You are dead! You have no mind to store memory!" + to_chat(src, "You are dead! You have no mind to store memory!") /mob/observer/dead/Post_Incorpmove() following = null @@ -449,16 +449,16 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp var/pressure = environment.return_pressure() var/total_moles = environment.total_moles - src << "Results:" + to_chat(src, "Results:") if(abs(pressure - ONE_ATMOSPHERE) < 10) - src << "Pressure: [round(pressure,0.1)] kPa" + to_chat(src, "Pressure: [round(pressure,0.1)] kPa") else - src << "Pressure: [round(pressure,0.1)] kPa" + to_chat(src, "Pressure: [round(pressure,0.1)] kPa") if(total_moles) for(var/g in environment.gas) - src << "[gas_data.name[g]]: [round((environment.gas[g] / total_moles) * 100)]% ([round(environment.gas[g], 0.01)] moles)" - src << "Temperature: [round(environment.temperature-T0C,0.1)]°C ([round(environment.temperature,0.1)]K)" - src << "Heat Capacity: [round(environment.heat_capacity(),0.1)]" + to_chat(src, "[gas_data.name[g]]: [round((environment.gas[g] / total_moles) * 100)]% ([round(environment.gas[g], 0.01)] moles)") + to_chat(src, "Temperature: [round(environment.temperature-T0C,0.1)]°C ([round(environment.temperature,0.1)]K)") + to_chat(src, "Heat Capacity: [round(environment.heat_capacity(),0.1)]") /mob/observer/dead/verb/check_radiation() set name = "Check Radiation" @@ -475,7 +475,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp set category = "Ghost" if(config.disable_player_mice) - src << "Spawning as a mouse is currently disabled." + to_chat(src, "Spawning as a mouse is currently disabled.") return if(!MayRespawn(1)) @@ -483,14 +483,14 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp var/turf/T = get_turf(src) if(!T || (T.z in using_map.admin_levels)) - src << "You may not spawn as a mouse on this Z-level." + to_chat(src, "You may not spawn as a mouse on this Z-level.") return var/timedifference = world.time - client.time_died_as_mouse if(client.time_died_as_mouse && timedifference <= mouse_respawn_time * 600) var/timedifference_text timedifference_text = time2text(mouse_respawn_time * 600 - timedifference,"mm:ss") - src << "You may only spawn again as a mouse more than [mouse_respawn_time] minutes after your death. You have [timedifference_text] left." + to_chat(src, "You may only spawn again as a mouse more than [mouse_respawn_time] minutes after your death. You have [timedifference_text] left.") return var/response = alert(src, "Are you -sure- you want to become a mouse?","Are you sure you want to squeek?","Squeek!","Nope!") @@ -508,7 +508,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp vent_found = pick(found_vents) host = new /mob/living/simple_mob/animal/passive/mouse(vent_found) else - src << "Unable to find any unwelded vents to spawn mice at." + to_chat(src, "Unable to find any unwelded vents to spawn mice at.") if(host) if(config.uneducated_mice) @@ -545,7 +545,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp set desc = "If the round is sufficiently spooky, write a short message in blood on the floor or a wall. Remember, no IC in OOC or OOC in IC." if(!(config.cult_ghostwriter)) - src << "That verb is not currently permitted." + to_chat(src, "That verb is not currently permitted.") return if (!src.stat) @@ -560,7 +560,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp ghosts_can_write = 1 if(!ghosts_can_write && !check_rights(R_ADMIN, 0)) //Let's allow for admins to write in blood for events and the such. - src << "The veil is not thin enough for you to do that." + to_chat(src, "The veil is not thin enough for you to do that.") return var/list/choices = list() @@ -569,7 +569,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp choices += B if(!choices.len) - src << "There is no blood to use nearby." + to_chat(src, "There is no blood to use nearby.") return var/obj/effect/decal/cleanable/blood/choice = input(src,"What blood would you like to use?") in null|choices @@ -580,7 +580,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp T = get_step(T,text2dir(direction)) if (!istype(T)) - src << "You cannot doodle there." + to_chat(src, "You cannot doodle there.") return if(!choice || choice.amount == 0 || !(src.Adjacent(choice))) @@ -592,7 +592,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp for (var/obj/effect/decal/cleanable/blood/writing/W in T) num_doodles++ if (num_doodles > 4) - src << "There is no space to write on!" + to_chat(src, "There is no space to write on!") return var/max_length = 50 @@ -603,7 +603,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp if (length(message) > max_length) message += "-" - src << "You ran out of blood to write with!" + to_chat(src, "You ran out of blood to write with!") var/obj/effect/decal/cleanable/blood/writing/W = new(T) W.basecolor = doodle_color @@ -657,14 +657,14 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp var/toggled_invisible if(!forced && plane == PLANE_GHOSTS && world.time < toggled_invisible + 600) - src << "You must gather strength before you can turn visible again..." + to_chat(src, "You must gather strength before you can turn visible again...") return if(plane == PLANE_WORLD) toggled_invisible = world.time visible_message("It fades from sight...", "You are now invisible.") else - src << "You are now visible!" + to_chat(src, "You are now visible!") plane = (plane == PLANE_GHOSTS) ? PLANE_WORLD : PLANE_GHOSTS invisibility = (plane == PLANE_WORLD) ? 0 : INVISIBILITY_OBSERVER @@ -679,9 +679,9 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp src.anonsay = !src.anonsay if(anonsay) - src << "Your key won't be shown when you speak in dead chat." + to_chat(src, "Your key won't be shown when you speak in dead chat.") else - src << "Your key will be publicly visible again." + to_chat(src, "Your key will be publicly visible again.") /mob/observer/dead/canface() return 1 @@ -714,11 +714,11 @@ mob/observer/dead/MayRespawn(var/feedback = 0) return 0 if(mind && mind.current && mind.current.stat != DEAD && can_reenter_corpse) if(feedback) - src << "Your non-dead body prevent you from respawning." + to_chat(src, "Your non-dead body prevent you from respawning.") return 0 if(config.antag_hud_restricted && has_enabled_antagHUD == 1) if(feedback) - src << "antagHUD restrictions prevent you from respawning." + to_chat(src, "antagHUD restrictions prevent you from respawning.") return 0 return 1 @@ -755,12 +755,12 @@ mob/observer/dead/MayRespawn(var/feedback = 0) if(msg) log_say("(SPECWHISP to [key_name(M)]): [msg]", src) M << " You hear a strange, unidentifiable voice in your head... [msg]" - src << " You said: '[msg]' to [M]." + to_chat(src, " You said: '[msg]' to [M].") else return return 1 else - src << "You have not been pulled past the veil!" + to_chat(src, "You have not been pulled past the veil!") /mob/observer/dead/verb/choose_ghost_sprite() set category = "Ghost" diff --git a/code/modules/mob/dead/observer/say.dm b/code/modules/mob/dead/observer/say.dm index c950a84209..dc44a55168 100644 --- a/code/modules/mob/dead/observer/say.dm +++ b/code/modules/mob/dead/observer/say.dm @@ -10,7 +10,7 @@ if(message) client.handle_spam_prevention(MUTE_DEADCHAT) if(src.client.prefs.muted & MUTE_DEADCHAT) - src << "You cannot talk in deadchat (muted)." + to_chat(src, "You cannot talk in deadchat (muted).") return . = src.say_dead(message) @@ -31,7 +31,7 @@ if(message) client.handle_spam_prevention(MUTE_DEADCHAT) if(src.client.prefs.muted & MUTE_DEADCHAT) - src << "You cannot emote in deadchat (muted)." + to_chat(src, "You cannot emote in deadchat (muted).") return . = src.emote_dead(message) diff --git a/code/modules/mob/emote.dm b/code/modules/mob/emote.dm index f67f70eb87..0fc9cbae36 100644 --- a/code/modules/mob/emote.dm +++ b/code/modules/mob/emote.dm @@ -3,7 +3,7 @@ //m_type == 2 --> audible /mob/proc/custom_emote(var/m_type=1,var/message = null,var/range=world.view) if(stat || !use_me && usr == src) - src << "You are unable to emote." + to_chat(src, "You are unable to emote.") return var/muzzled = is_muzzled() @@ -22,7 +22,7 @@ if (message) - message = say_emphasis(message) + message = encode_html_emphasis(message) // Hearing gasp and such every five seconds is not good emotes were not global for a reason. // Maybe some people are okay with that. @@ -62,16 +62,16 @@ /mob/proc/emote_dead(var/message) if(client.prefs.muted & MUTE_DEADCHAT) - src << "You cannot send deadchat emotes (muted)." + to_chat(src, "You cannot send deadchat emotes (muted).") return if(!is_preference_enabled(/datum/client_preference/show_dsay)) - src << "You have deadchat muted." + to_chat(src, "You have deadchat muted.") return if(!src.client.holder) if(!config.dsay_allowed) - src << "Deadchat is globally muted." + to_chat(src, "Deadchat is globally muted.") return @@ -81,7 +81,7 @@ else input = message - input = say_emphasis(input) + input = encode_html_emphasis(input) if(input) log_ghostemote(input, src) diff --git a/code/modules/mob/hear_say.dm b/code/modules/mob/hear_say.dm index 693b2129e1..ad3689e8c5 100644 --- a/code/modules/mob/hear_say.dm +++ b/code/modules/mob/hear_say.dm @@ -45,7 +45,7 @@ if(italics) message = "[message]" - message = say_emphasis(message) + message = encode_html_emphasis(message) var/track = null if(istype(src, /mob/observer/dead)) @@ -60,9 +60,9 @@ if(is_deaf()) if(!language || !(language.flags & INNATE)) // INNATE is the flag for audible-emote-language, so we don't want to show an "x talks but you cannot hear them" message if it's set if(speaker == src) - src << "You cannot hear yourself speak!" + to_chat(src, "You cannot hear yourself speak!") else - src << "[speaker_name][alt_name] talks but you cannot hear." + to_chat(src, "[speaker_name][alt_name] talks but you cannot hear.") else var/message_to_send = null if(language) @@ -115,36 +115,14 @@ /mob/living/silicon/ai/special_mentions() return list("AI") // AI door! -// Converts specific characters, like +, |, and _ to formatted output. -/mob/proc/say_emphasis(var/message) - message = encode_html_emphasis(message, "|", "i") - message = encode_html_emphasis(message, "+", "b") - message = encode_html_emphasis(message, "_", "u") - return message - -// Replaces a character inside message with html tags. Note that html var must not include brackets. -// Will not create an open html tag if it would not have a closing one. -/proc/encode_html_emphasis(var/message, var/char, var/html) - var/i = 20 // Infinite loop safety. - var/pattern = "(?") - 1 - - // Now replace both. - message = replacetext(message, char, "<[html]>", first, first + 1) - message = replacetext(message, char, "", second + length_increase, second + length_increase + 1) - - // Check again to see if we need to keep going. - first = re.Find(message) - second = re.Find(message, first + 1) - i-- - if(!i) - CRASH("Possible infinite loop occured in encode_html_emphasis().") - return message +/proc/encode_html_emphasis(message) + var/tagged_message = message + for(var/delimiter in GLOB.speech_toppings) + var/regex/R = new("\\[delimiter](.+?)\\[delimiter]","g") + var/tag = GLOB.speech_toppings[delimiter] + tagged_message = R.Replace(tagged_message,"<[tag]>$1") + + return tagged_message /mob/proc/hear_radio(var/message, var/verb="says", var/datum/language/language=null, var/part_a, var/part_b, var/part_c, var/mob/speaker = null, var/hard_to_hear = 0, var/vname ="") @@ -240,7 +218,7 @@ speaker_name = "[speaker.real_name] ([speaker_name])" track = "[speaker_name] ([ghost_follow_link(speaker, src)])" - message = say_emphasis(message) + message = encode_html_emphasis(message) var/formatted if(language) @@ -251,7 +229,7 @@ if((sdisabilities & DEAF) || ear_deaf) if(prob(20)) - src << "You feel your headset vibrate but can hear nothing from it!" + to_chat(src, "You feel your headset vibrate but can hear nothing from it!") else on_hear_radio(part_a, speaker_name, track, part_b, formatted) @@ -317,7 +295,7 @@ if(copytext(heardword,1, 1) in punctuation) heardword = copytext(heardword,2) if(copytext(heardword,-1) in punctuation) - heardword = copytext(heardword,1,lentext(heardword)) + heardword = copytext(heardword,1,length(heardword)) heard = "...You hear something about...[heardword]" else diff --git a/code/modules/mob/holder.dm b/code/modules/mob/holder.dm index 25a6ed122a..dfa6182b5b 100644 --- a/code/modules/mob/holder.dm +++ b/code/modules/mob/holder.dm @@ -134,6 +134,8 @@ var/list/holder_mob_icon_cache = list() /mob/living/MouseDrop(var/atom/over_object) var/mob/living/carbon/human/H = over_object if(holder_type && issmall(src) && istype(H) && !H.lying && Adjacent(H) && (src.a_intent == I_HELP && H.a_intent == I_HELP)) //VOREStation Edit + if(istype(src, /mob/living/simple_mob/animal/passive/mouse)) //vorestation edit + return ..() //vorestation edit if(!issmall(H) || !istype(src, /mob/living/carbon/human)) get_scooped(H, (usr == src)) return @@ -156,11 +158,11 @@ var/list/holder_mob_icon_cache = list() if(self_grab) grabber << "\The [src] clambers onto you!" - src << "You climb up onto \the [grabber]!" + to_chat(src, "You climb up onto \the [grabber]!") grabber.equip_to_slot_if_possible(H, slot_back, 0, 1) else grabber << "You scoop up \the [src]!" - src << "\The [grabber] scoops you up!" + to_chat(src, "\The [grabber] scoops you up!") H.sync(src) return H diff --git a/code/modules/mob/inventory.dm b/code/modules/mob/inventory.dm index c655559a10..0f0f95d336 100644 --- a/code/modules/mob/inventory.dm +++ b/code/modules/mob/inventory.dm @@ -56,7 +56,7 @@ var/list/slot_equipment_priority = list( \ else if(!disable_warning) - src << "You are unable to equip that." //Only print if del_on_fail is false + to_chat(src, "You are unable to equip that.") //Only print if del_on_fail is false return 0 equip_to_slot(W, slot, redraw_mob) //This proc should not ever fail. diff --git a/code/modules/mob/language/language.dm b/code/modules/mob/language/language.dm index 83f0b754ba..9bc0a68653 100644 --- a/code/modules/mob/language/language.dm +++ b/code/modules/mob/language/language.dm @@ -144,9 +144,9 @@ /mob/observer/dead/hear_broadcast(var/datum/language/language, var/mob/speaker, var/speaker_name, var/message) if(speaker.name == speaker_name || antagHUD) - src << "[language.name], [speaker_name] ([ghost_follow_link(speaker, src)]) [message]" + to_chat(src, "[language.name], [speaker_name] ([ghost_follow_link(speaker, src)]) [message]") else - src << "[language.name], [speaker_name] [message]" + to_chat(src, "[language.name], [speaker_name] [message]") /datum/language/proc/check_special_condition(var/mob/other) return 1 diff --git a/code/modules/mob/language/outsider.dm b/code/modules/mob/language/outsider.dm index de78a9c1b5..43ccb5bb7e 100644 --- a/code/modules/mob/language/outsider.dm +++ b/code/modules/mob/language/outsider.dm @@ -116,6 +116,18 @@ return 0 +/datum/language/swarmbot + name = LANGUAGE_SWARMBOT + desc = "A confusing mechanical language spoken by some form of ancient machine." + speech_verb = "clatters" + ask_verb = "chatters" + exclaim_verb = "shrieks" + colour = "changeling" + key = "_" + flags = NO_STUTTER | RESTRICTED + syllables = list("^", "v", "-", ".", "~") + space_chance = 60 + //for your antag purposes. /datum/language/minbus name = LANGUAGE_MINBUS diff --git a/code/modules/mob/language/station_vr.dm b/code/modules/mob/language/station_vr.dm index 4ff68871a1..b1c5cce255 100644 --- a/code/modules/mob/language/station_vr.dm +++ b/code/modules/mob/language/station_vr.dm @@ -68,21 +68,32 @@ colour = "enochian" //So fancy key = "i" syllables = list("salve","sum","loqui","operatur","iusta","et","permittit","facere","effercio","pluribus","enim","hoc", - "mihi","wan","six","salve","tartu") + "mihi","wan","six","tartu") machine_understands = FALSE /datum/language/bug - name = LANGUAGE_VESPINAE - desc = "A jarring and clicky language developed and used by Vasilissans, it is designed for use with mouthparts and as a result has become a common language for various arthropod species." - speech_verb = "clicks" - ask_verb = "chitters" - exclaim_verb = "rasps" - colour = "bug" - key = "x" - syllables = list("vaur","uyek","uyit","avek","sc'theth","k'ztak","teth","wre'ge","lii","dra'","zo'","ra'","kax'","zz","vh","ik","ak", + name = LANGUAGE_VESPINAE + desc = "A jarring and clicky language developed and used by Vasilissans, it is designed for use with mouthparts and as a result has become a common language for various arthropod species." + speech_verb = "clicks" + ask_verb = "chitters" + exclaim_verb = "rasps" + colour = "bug" + key = "x" + syllables = list("vaur","uyek","uyit","avek","sc'theth","k'ztak","teth","wre'ge","lii","dra'","zo'","ra'","kax'","zz","vh","ik","ak", "uhk","zir","sc'orth","sc'er","thc'yek","th'zirk","th'esk","k'ayek","ka'mil","sc'","ik'yir","yol","kig","k'zit","'","'","zrk","krg","isk'yet","na'k", "sc'azz","th'sc","nil","n'ahk","sc'yeth","aur'sk","iy'it","azzg","a'","i'","o'","u'","a","i","o","u","zz","kr","ak","nrk","tzzk","bz","xic'","k'lax'","histh") +/datum/language/shadekin + name = LANGUAGE_SHADEKIN + desc = "Shadekin seem to always know what the others are thinking. This is probably why." + speech_verb = "mars" + ask_verb = "mars" + exclaim_verb = "mars" + colour = "changeling" + key = "m" + machine_understands = FALSE + flags = WHITELISTED | HIVEMIND + /datum/language/human/slavic name = LANGUAGE_SLAVIC desc = "The official language of the Independent Colonial Confederation of Gilgamesh, originally established in 2122 by the short-lived United Slavic Confederation on Earth." diff --git a/code/modules/mob/language/synthetic.dm b/code/modules/mob/language/synthetic.dm index 36dd57bc69..e39674e037 100644 --- a/code/modules/mob/language/synthetic.dm +++ b/code/modules/mob/language/synthetic.dm @@ -18,7 +18,7 @@ if (!message) return - message = speaker.say_emphasis(message) + message = encode_html_emphasis(message) var/message_start = "[name], [speaker.name]" var/message_body = "[speaker.say_quote(message)], \"[message]\"" diff --git a/code/modules/mob/living/autohiss.dm b/code/modules/mob/living/autohiss.dm index 2c6fe02645..4ee08dec85 100644 --- a/code/modules/mob/living/autohiss.dm +++ b/code/modules/mob/living/autohiss.dm @@ -25,15 +25,15 @@ autohiss_mode = (autohiss_mode + 1) % AUTOHISS_NUM switch(autohiss_mode) if(AUTOHISS_OFF) - src << "Auto-hiss is now OFF." + to_chat(src, "Auto-hiss is now OFF.") if(AUTOHISS_BASIC) - src << "Auto-hiss is now BASIC." + to_chat(src, "Auto-hiss is now BASIC.") if(AUTOHISS_FULL) - src << "Auto-hiss is now FULL." + to_chat(src, "Auto-hiss is now FULL.") else soft_assert(0, "invalid autohiss value [autohiss_mode]") autohiss_mode = AUTOHISS_OFF - src << "Auto-hiss is now OFF." + to_chat(src, "Auto-hiss is now OFF.") /datum/species var/list/autohiss_basic_map = null diff --git a/code/modules/mob/living/bot/bot.dm b/code/modules/mob/living/bot/bot.dm index 6d89980bae..3ba745a014 100644 --- a/code/modules/mob/living/bot/bot.dm +++ b/code/modules/mob/living/bot/bot.dm @@ -32,6 +32,7 @@ var/will_patrol = 0 // If set to 1, will patrol, duh var/patrol_speed = 1 // How many times per tick we move when patrolling var/target_speed = 2 // Ditto for chasing the target + var/panic_on_alert = FALSE // Will the bot go faster when the alert level is raised? var/min_target_dist = 1 // How close we try to get to the target var/max_target_dist = 50 // How far we are willing to go var/max_patrol_dist = 250 @@ -156,7 +157,7 @@ /mob/living/bot/Bump(var/atom/A) if(on && botcard && istype(A, /obj/machinery/door)) var/obj/machinery/door/D = A - if(!istype(D, /obj/machinery/door/firedoor) && !istype(D, /obj/machinery/door/blast) && D.check_access(botcard)) + if(!istype(D, /obj/machinery/door/firedoor) && !istype(D, /obj/machinery/door/blast) && !istype(D, /obj/machinery/door/airlock/lift) && D.check_access(botcard)) D.open() else ..() @@ -170,14 +171,20 @@ if(!A || !A.loc || prob(1)) ignore_list -= A handleRegular() + + var/panic_speed_mod = 0 + + if(panic_on_alert) + panic_speed_mod = handlePanic() + if(target && confirmTarget(target)) if(Adjacent(target)) handleAdjacentTarget() else handleRangedTarget() if(!wait_if_pulled || !pulledby) - for(var/i = 1 to target_speed) - sleep(20 / (target_speed + 1)) + for(var/i = 1 to (target_speed + panic_speed_mod)) + sleep(20 / (target_speed + panic_speed_mod + 1)) stepToTarget() if(max_frustration && frustration > max_frustration * target_speed) handleFrustrated(1) @@ -186,7 +193,7 @@ lookForTargets() if(will_patrol && !pulledby && !target) if(patrol_path && patrol_path.len) - for(var/i = 1 to patrol_speed) + for(var/i = 1 to (patrol_speed + panic_speed_mod)) sleep(20 / (patrol_speed + 1)) handlePatrol() if(max_frustration && frustration > max_frustration * patrol_speed) @@ -205,6 +212,32 @@ /mob/living/bot/proc/handleRangedTarget() return +/mob/living/bot/proc/handlePanic() // Speed modification based on alert level. + . = 0 + switch(get_security_level()) + if("green") + . = 0 + + if("yellow") + . = 0 + + if("violet") + . = 0 + + if("orange") + . = 0 + + if("blue") + . = 1 + + if("red") + . = 2 + + if("delta") + . = 2 + + return . + /mob/living/bot/proc/stepToTarget() if(!target || !target.loc) return diff --git a/code/modules/mob/living/bot/cleanbot.dm b/code/modules/mob/living/bot/cleanbot.dm index b620ca3e1a..74616879c4 100644 --- a/code/modules/mob/living/bot/cleanbot.dm +++ b/code/modules/mob/living/bot/cleanbot.dm @@ -38,6 +38,32 @@ spawn(600) ignore_list -= g +/mob/living/bot/cleanbot/handlePanic() // Speed modification based on alert level. + . = 0 + switch(get_security_level()) + if("green") + . = 0 + + if("yellow") + . = 1 + + if("violet") + . = 1 + + if("orange") + . = 1 + + if("blue") + . = 2 + + if("red") + . = 2 + + if("delta") + . = 2 + + return . + /mob/living/bot/cleanbot/lookForTargets() for(var/obj/effect/decal/cleanable/D in view(world.view, src)) // There was some odd code to make it start with nearest decals, it's unnecessary, this works if(confirmTarget(D)) diff --git a/code/modules/mob/living/bot/ed209bot.dm b/code/modules/mob/living/bot/ed209bot.dm index 4db5978d0d..0d77e837f0 100644 --- a/code/modules/mob/living/bot/ed209bot.dm +++ b/code/modules/mob/living/bot/ed209bot.dm @@ -203,7 +203,8 @@ build_step++ to_chat(user, "You complete the ED-209.") var/turf/T = get_turf(src) - new /mob/living/bot/secbot/ed209(T,created_name,lasercolor) + var/mob/living/bot/secbot/ed209/S = new /mob/living/bot/secbot/ed209(T) + S.name = created_name user.drop_item() qdel(W) user.drop_from_inventory(src) diff --git a/code/modules/mob/living/bot/edCLNbot.dm b/code/modules/mob/living/bot/edCLNbot.dm index 08d7d9ace6..13abfa8da3 100644 --- a/code/modules/mob/living/bot/edCLNbot.dm +++ b/code/modules/mob/living/bot/edCLNbot.dm @@ -3,7 +3,7 @@ desc = "A large cleaning robot. It looks rather efficient." icon_state = "edCLN0" req_one_access = list(access_robotics, access_janitor) - botcard_access = list(access_janitor, access_maint_tunnels) + botcard_access = list(access_janitor) locked = 0 // Start unlocked so roboticist can set them to patrol. wait_if_pulled = 0 // One big boi. @@ -229,7 +229,8 @@ build_step++ to_chat(user, "You complete the ED-CLN.") var/turf/T = get_turf(src) - new /mob/living/bot/cleanbot/edCLN(T,created_name) + var/mob/living/bot/cleanbot/edCLN/S = new /mob/living/bot/cleanbot/edCLN(T) + S.name = created_name user.drop_item() qdel(W) user.drop_from_inventory(src) diff --git a/code/modules/mob/living/bot/floorbot.dm b/code/modules/mob/living/bot/floorbot.dm index 95c83dcaa0..19036c6702 100644 --- a/code/modules/mob/living/bot/floorbot.dm +++ b/code/modules/mob/living/bot/floorbot.dm @@ -300,6 +300,32 @@ else if(amount > maxAmount) amount = maxAmount +/mob/living/bot/floorbot/handlePanic() // Speed modification based on alert level. + . = 0 + switch(get_security_level()) + if("green") + . = 0 + + if("yellow") + . = 0 + + if("violet") + . = 0 + + if("orange") + . = 1 + + if("blue") + . = 1 + + if("red") + . = 2 + + if("delta") + . = 2 + + return . + /* Assembly */ /obj/item/weapon/storage/toolbox/mechanical/attackby(var/obj/item/stack/tile/floor/T, mob/living/user as mob) diff --git a/code/modules/mob/living/bot/medbot.dm b/code/modules/mob/living/bot/medbot.dm index f7bac5b82b..c090b4cd24 100644 --- a/code/modules/mob/living/bot/medbot.dm +++ b/code/modules/mob/living/bot/medbot.dm @@ -49,6 +49,32 @@ /mob/living/bot/medbot/handleAdjacentTarget() UnarmedAttack(target) +/mob/living/bot/medbot/handlePanic() // Speed modification based on alert level. + . = 0 + switch(get_security_level()) + if("green") + . = 0 + + if("yellow") + . = 0 + + if("violet") + . = 1 + + if("orange") + . = 0 + + if("blue") + . = 1 + + if("red") + . = 2 + + if("delta") + . = 2 + + return . + /mob/living/bot/medbot/lookForTargets() for(var/mob/living/carbon/human/H in view(7, src)) // Time to find a patient! if(confirmTarget(H)) diff --git a/code/modules/mob/living/bot/secbot.dm b/code/modules/mob/living/bot/secbot.dm index 1210d41e91..094d1c1e80 100644 --- a/code/modules/mob/living/bot/secbot.dm +++ b/code/modules/mob/living/bot/secbot.dm @@ -13,6 +13,8 @@ patrol_speed = 2 target_speed = 3 + density = 1 + var/default_icon_state = "secbot" var/idcheck = FALSE // If true, arrests for having weapons without authorization. var/check_records = FALSE // If true, arrests people without a record. @@ -53,6 +55,8 @@ name = "Officer Beepsky" desc = "It's Officer Beep O'sky! Powered by a potato and a shot of whiskey." will_patrol = TRUE + maxHealth = 130 + health = 130 /mob/living/bot/secbot/slime name = "Slime Securitron" @@ -70,6 +74,8 @@ /mob/living/bot/secbot/slime/slimesky name = "Doctor Slimesky" desc = "An old friend of Officer Beep O'sky. He prescribes beatings to rowdy slimes so that real doctors don't need to treat the xenobiologists." + maxHealth = 130 + health = 130 /mob/living/bot/secbot/update_icons() if(on && busy) @@ -233,6 +239,32 @@ global_announcer.autosay("[src] is [action] a level [threat] [action != "fighting" ? "suspect" : "threat"] [target_name(target)] in [get_area(src)].", "[src]", "Security") UnarmedAttack(target) +/mob/living/bot/secbot/handlePanic() // Speed modification based on alert level. + . = 0 + switch(get_security_level()) + if("green") + . = 0 + + if("yellow") + . = 0 + + if("violet") + . = 0 + + if("orange") + . = 0 + + if("blue") + . = 1 + + if("red") + . = 2 + + if("delta") + . = 2 + + return . + // So Beepsky talks while beating up simple mobs. /mob/living/bot/secbot/proc/insult(var/mob/living/L) if(can_next_insult > world.time) diff --git a/code/modules/mob/living/carbon/alien/diona/diona_powers.dm b/code/modules/mob/living/carbon/alien/diona/diona_powers.dm index aea0054418..8384a7dbb8 100644 --- a/code/modules/mob/living/carbon/alien/diona/diona_powers.dm +++ b/code/modules/mob/living/carbon/alien/diona/diona_powers.dm @@ -25,15 +25,15 @@ var/mob/living/M = input(src,"Who do you wish to merge with?") in null|choices if(!M) - src << "There is nothing nearby to merge with." + to_chat(src, "There is nothing nearby to merge with.") else if(!do_merge(M)) - src << "You fail to merge with \the [M]..." + to_chat(src, "You fail to merge with \the [M]...") /mob/living/carbon/alien/diona/proc/do_merge(var/mob/living/carbon/human/H) if(!istype(H) || !src || !(src.Adjacent(H))) return 0 H << "You feel your being twine with that of \the [src] as it merges with your biomass." - src << "You feel your being twine with that of \the [H] as you merge with its biomass." + to_chat(src, "You feel your being twine with that of \the [H] as you merge with its biomass.") loc = H verbs += /mob/living/carbon/alien/diona/proc/split verbs -= /mob/living/carbon/alien/diona/proc/merge @@ -53,7 +53,7 @@ return src.loc << "You feel a pang of loss as [src] splits away from your biomass." - src << "You wiggle out of the depths of [src.loc]'s biomass and plop to the ground." + to_chat(src, "You wiggle out of the depths of [src.loc]'s biomass and plop to the ground.") var/mob/living/M = src.loc diff --git a/code/modules/mob/living/carbon/alien/diona/progression.dm b/code/modules/mob/living/carbon/alien/diona/progression.dm index b6c5b9b4fd..e259b18f27 100644 --- a/code/modules/mob/living/carbon/alien/diona/progression.dm +++ b/code/modules/mob/living/carbon/alien/diona/progression.dm @@ -5,7 +5,7 @@ return null if(amount_grown < max_grown) - src << "You are not yet ready for your growth..." + to_chat(src, "You are not yet ready for your growth...") return null src.split() diff --git a/code/modules/mob/living/carbon/alien/emote.dm b/code/modules/mob/living/carbon/alien/emote.dm index 175338e5ff..8d81aec4cf 100644 --- a/code/modules/mob/living/carbon/alien/emote.dm +++ b/code/modules/mob/living/carbon/alien/emote.dm @@ -16,7 +16,7 @@ return if (src.client) if (client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (stat) return @@ -115,7 +115,7 @@ playsound(src.loc, 'sound/misc/nymphchirp.ogg', 50, 0) m_type = 2 if("help") - src << "burp, chirp, choke, collapse, dance, drool, gasp, shiver, gnarl, jump, moan, nod, roll, scratch,\nscretch, shake, sign-#, sulk, sway, tail, twitch, whimper" + to_chat(src, "burp, chirp, choke, collapse, dance, drool, gasp, shiver, gnarl, jump, moan, nod, roll, scratch,\nscretch, shake, sign-#, sulk, sway, tail, twitch, whimper") else src << text("Invalid Emote: []", act) if ((message && src.stat == 0)) diff --git a/code/modules/mob/living/carbon/alien/larva/progression.dm b/code/modules/mob/living/carbon/alien/larva/progression.dm index 166ae53676..4e9c15552f 100644 --- a/code/modules/mob/living/carbon/alien/larva/progression.dm +++ b/code/modules/mob/living/carbon/alien/larva/progression.dm @@ -1,10 +1,10 @@ /mob/living/carbon/alien/larva/confirm_evolution() - src << "You are growing into a beautiful alien! It is time to choose a caste." - src << "There are three to choose from:" - src << "Hunters are strong and agile, able to hunt away from the hive and rapidly move through ventilation shafts. Hunters generate plasma slowly and have low reserves." - src << "Sentinels are tasked with protecting the hive and are deadly up close and at a range. They are not as physically imposing nor fast as the hunters." - src << "Drones are the working class, offering the largest plasma storage and generation. They are the only caste which may evolve again, turning into the dreaded alien queen." + to_chat(src, "You are growing into a beautiful alien! It is time to choose a caste.") + to_chat(src, "There are three to choose from:") + to_chat(src, "Hunters are strong and agile, able to hunt away from the hive and rapidly move through ventilation shafts. Hunters generate plasma slowly and have low reserves.") + to_chat(src, "Sentinels are tasked with protecting the hive and are deadly up close and at a range. They are not as physically imposing nor fast as the hunters.") + to_chat(src, "Drones are the working class, offering the largest plasma storage and generation. They are the only caste which may evolve again, turning into the dreaded alien queen.") var/alien_caste = alert(src, "Please choose which alien caste you shall belong to.",,"Hunter","Sentinel","Drone") return alien_caste ? "Xenomorph [alien_caste]" : null diff --git a/code/modules/mob/living/carbon/alien/life.dm b/code/modules/mob/living/carbon/alien/life.dm index f02d82a45f..2c39964ad6 100644 --- a/code/modules/mob/living/carbon/alien/life.dm +++ b/code/modules/mob/living/carbon/alien/life.dm @@ -150,7 +150,7 @@ adjustFireLoss((environment.temperature - (T0C+66))/5) // Might be too high, check in testing. if (fire) fire.icon_state = "fire2" if(prob(20)) - src << "You feel a searing heat!" + to_chat(src, "You feel a searing heat!") else if (fire) fire.icon_state = "fire0" diff --git a/code/modules/mob/living/carbon/alien/progression.dm b/code/modules/mob/living/carbon/alien/progression.dm index 832535d062..1c4c37b083 100644 --- a/code/modules/mob/living/carbon/alien/progression.dm +++ b/code/modules/mob/living/carbon/alien/progression.dm @@ -12,11 +12,11 @@ return if(handcuffed || legcuffed) - src << "You cannot evolve when you are cuffed." + to_chat(src, "You cannot evolve when you are cuffed.") return if(amount_grown < max_grown) - src << "You are not fully grown." + to_chat(src, "You are not fully grown.") return // confirm_evolution() handles choices and other specific requirements. diff --git a/code/modules/mob/living/carbon/alien/say.dm b/code/modules/mob/living/carbon/alien/say.dm index 1f787be9dd..8621339927 100644 --- a/code/modules/mob/living/carbon/alien/say.dm +++ b/code/modules/mob/living/carbon/alien/say.dm @@ -4,7 +4,7 @@ if(client) if(client.prefs.muted & MUTE_IC) - src << "You cannot speak in IC (Muted)." + to_chat(src, "You cannot speak in IC (Muted).") return message = sanitize(message) diff --git a/code/modules/mob/living/carbon/brain/emote.dm b/code/modules/mob/living/carbon/brain/emote.dm index 22efdc76c6..bc4623647b 100644 --- a/code/modules/mob/living/carbon/brain/emote.dm +++ b/code/modules/mob/living/carbon/brain/emote.dm @@ -17,7 +17,7 @@ return if (src.client) if (client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (stat) return @@ -28,15 +28,15 @@ if ("custom") return custom_emote(m_type, message) if ("alarm") - src << "You sound an alarm." + to_chat(src, "You sound an alarm.") message = "[src] sounds an alarm." m_type = 2 if ("alert") - src << "You let out a distressed noise." + to_chat(src, "You let out a distressed noise.") message = "[src] lets out a distressed noise." m_type = 2 if ("notice") - src << "You play a loud tone." + to_chat(src, "You play a loud tone.") message = "[src] plays a loud tone." m_type = 2 if ("flash") @@ -46,21 +46,21 @@ message = "[src] blinks." m_type = 1 if ("whistle") - src << "You whistle." + to_chat(src, "You whistle.") message = "[src] whistles." m_type = 2 if ("beep") - src << "You beep." + to_chat(src, "You beep.") message = "[src] beeps." m_type = 2 if ("boop") - src << "You boop." + to_chat(src, "You boop.") message = "[src] boops." m_type = 2 if ("help") - src << "alarm,alert,notice,flash,blink,whistle,beep,boop" + to_chat(src, "alarm,alert,notice,flash,blink,whistle,beep,boop") else - src << "Unusable emote '[act]'. Say *help for a list." + to_chat(src, "Unusable emote '[act]'. Say *help for a list.") if (message) log_emote(message, src) diff --git a/code/modules/mob/living/carbon/brain/life.dm b/code/modules/mob/living/carbon/brain/life.dm index 4ab220083d..c52584ba96 100644 --- a/code/modules/mob/living/carbon/brain/life.dm +++ b/code/modules/mob/living/carbon/brain/life.dm @@ -6,9 +6,9 @@ if (radiation > 100) radiation = 100 if(!container)//If it's not in an MMI - src << "You feel weak." + to_chat(src, "You feel weak.") else//Fluff-wise, since the brain can't detect anything itself, the MMI handles thing like that - src << "STATUS: CRITICAL AMOUNTS OF RADIATION DETECTED." + to_chat(src, "STATUS: CRITICAL AMOUNTS OF RADIATION DETECTED.") switch(radiation) if(1 to 49) @@ -23,9 +23,9 @@ if(prob(5)) radiation -= 5 if(!container) - src << "You feel weak." + to_chat(src, "You feel weak.") else - src << "STATUS: DANGEROUS LEVELS OF RADIATION DETECTED." + to_chat(src, "STATUS: DANGEROUS LEVELS OF RADIATION DETECTED.") updatehealth() if(75 to 100) @@ -115,7 +115,7 @@ silent = 1 if(!alert)//Sounds an alarm, but only once per 'level' emote("alarm") - src << "Major electrical distruption detected: System rebooting." + to_chat(src, "Major electrical distruption detected: System rebooting.") alert = 1 if(prob(75)) emp_damage -= 1 @@ -131,7 +131,7 @@ ear_damage = 1 if(!alert) emote("alert") - src << "Primary systems are now online." + to_chat(src, "Primary systems are now online.") alert = 1 if(prob(50)) emp_damage -= 1 @@ -143,13 +143,13 @@ if(2 to 9)//Low level of EMP damage, has few effects(handled elsewhere) if(!alert) emote("notice") - src << "System reboot nearly complete." + to_chat(src, "System reboot nearly complete.") alert = 1 if(prob(25)) emp_damage -= 1 if(1) alert = 0 - src << "All systems restored." + to_chat(src, "All systems restored.") emp_damage -= 1 return 1 diff --git a/code/modules/mob/living/carbon/brain/say.dm b/code/modules/mob/living/carbon/brain/say.dm index a09d8ce3e5..0493b2d92d 100644 --- a/code/modules/mob/living/carbon/brain/say.dm +++ b/code/modules/mob/living/carbon/brain/say.dm @@ -42,5 +42,5 @@ message_mode = null return R.radio.talk_into(src,message,message_mode,verb,speaking) else - src << "Your radio is disabled." + to_chat(src, "Your radio is disabled.") return 0 diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 505821640d..4d58c094ce 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -362,7 +362,7 @@ if(buckled) return 0 stop_pulling() - src << "You slipped on [slipped_on]!" + to_chat(src, "You slipped on [slipped_on]!") playsound(src.loc, 'sound/misc/slip.ogg', 50, 1, -3) Weaken(FLOOR(stun_duration/2, 1)) return 1 diff --git a/code/modules/mob/living/carbon/carbon_powers.dm b/code/modules/mob/living/carbon/carbon_powers.dm index 337f0b0ff1..163555a0c7 100644 --- a/code/modules/mob/living/carbon/carbon_powers.dm +++ b/code/modules/mob/living/carbon/carbon_powers.dm @@ -8,7 +8,7 @@ var/mob/living/simple_mob/animal/borer/B = has_brain_worms() if(B && B.host_brain) - src << "You withdraw your probosci, releasing control of [B.host_brain]" + to_chat(src, "You withdraw your probosci, releasing control of [B.host_brain]") B.detatch() @@ -17,7 +17,7 @@ verbs -= /mob/living/carbon/proc/spawn_larvae else - src << "ERROR NO BORER OR BRAINMOB DETECTED IN THIS MOB, THIS IS A BUG !" + to_chat(src, "ERROR NO BORER OR BRAINMOB DETECTED IN THIS MOB, THIS IS A BUG !") //Brain slug proc for tormenting the host. /mob/living/carbon/proc/punish_host() @@ -31,10 +31,10 @@ return if(B.host_brain.ckey) - src << "You send a punishing spike of psychic agony lancing into your host's brain." + to_chat(src, "You send a punishing spike of psychic agony lancing into your host's brain.") if (!can_feel_pain()) B.host_brain << "You feel a strange sensation as a foreign influence prods your mind." - src << "It doesn't seem to be as effective as you hoped." + to_chat(src, "It doesn't seem to be as effective as you hoped.") else B.host_brain << "Horrific, burning agony lances through you, ripping a soundless scream from your trapped mind!" @@ -49,7 +49,7 @@ return if(B.chemicals >= 100) - src << "Your host twitches and quivers as you rapidly excrete a larva from your sluglike body." + to_chat(src, "Your host twitches and quivers as you rapidly excrete a larva from your sluglike body.") visible_message("\The [src] heaves violently, expelling a rush of vomit and a wriggling, sluglike creature!") B.chemicals -= 100 B.has_reproduced = 1 @@ -58,5 +58,5 @@ new /mob/living/simple_mob/animal/borer(get_turf(src)) else - src << "You do not have enough chemicals stored to reproduce." + to_chat(src, "You do not have enough chemicals stored to reproduce.") return \ No newline at end of file diff --git a/code/modules/mob/living/carbon/give.dm b/code/modules/mob/living/carbon/give.dm index 5d4f17840a..8825f043b7 100644 --- a/code/modules/mob/living/carbon/give.dm +++ b/code/modules/mob/living/carbon/give.dm @@ -12,7 +12,7 @@ if(!I) I = src.get_inactive_hand() if(!I) - src << "You don't have anything in your hands to give to \the [target]." + to_chat(src, "You don't have anything in your hands to give to \the [target].") return if(alert(target,"[src] wants to give you \a [I]. Will you accept it?","Item Offer","Yes","No") == "No") //VOREStation Edit - make yes on the left to be consistent with other dialogs @@ -23,18 +23,18 @@ if(!I) return if(!Adjacent(target)) - src << "You need to stay in reaching distance while giving an object." + to_chat(src, "You need to stay in reaching distance while giving an object.") target << "\The [src] moved too far away." return if(I.loc != src || !src.item_is_in_hands(I)) - src << "You need to keep the item in your hands." + to_chat(src, "You need to keep the item in your hands.") target << "\The [src] seems to have given up on passing \the [I] to you." return if(target.hands_are_full()) target << "Your hands are full." - src << "Their hands are full." + to_chat(src, "Their hands are full.") return if(src.unEquip(I)) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index a8fd5176e8..7a0b6a82ff 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -33,7 +33,7 @@ if("ping", "beep", "buzz", "yes", "ye", "no", "rcough", "rsneeze") if(!isSynthetic()) - src << "You are not a synthetic." + to_chat(src, "You are not a synthetic.") return var/M = null @@ -83,7 +83,7 @@ if("squish") /* VOREStation Removal Start - Eh. People can squish maybe. if(species.bump_flag != SLIME) //This should definitely do it. - src << "You are not a slime thing!" + to_chat(src, "You are not a slime thing!") return */ //VOREStation Removal End playsound(src.loc, 'sound/effects/slime_squish.ogg', 50, 0) //Credit to DrMinky (freesound.org) for the sound. @@ -139,7 +139,7 @@ if (src.client) if (client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (stat) return @@ -706,7 +706,7 @@ if("vomit") if(isSynthetic()) - src << "You are unable to vomit." + to_chat(src, "You are unable to vomit.") return vomit() return @@ -726,13 +726,13 @@ message = "makes a light spitting noise, a poor attempt at a whistle." if ("help") - src << "blink, blink_r, blush, bow-(none)/mob, burp, choke, chuckle, clap, collapse, cough, cry, custom, deathgasp, drool, eyebrow, fastsway/qwag, \ + to_chat(src, "blink, blink_r, blush, bow-(none)/mob, burp, choke, chuckle, clap, collapse, cough, cry, custom, deathgasp, drool, eyebrow, fastsway/qwag, \ frown, gasp, giggle, glare-(none)/mob, grin, groan, grumble, handshake, hug-(none)/mob, laugh, look-(none)/mob, moan, mumble, nod, pale, point-atom, \ raise, salute, scream, sneeze, shake, shiver, shrug, sigh, signal-#1-10, slap-(none)/mob, smile, sneeze, sniff, snore, stare-(none)/mob, stopsway/swag, sway/wag, swish, tremble, twitch, \ - twitch_v, vomit, whimper, wink, yawn. Synthetics: beep, buzz, yes, no, rcough, rsneeze, ping" + twitch_v, vomit, whimper, wink, yawn. Synthetics: beep, buzz, yes, no, rcough, rsneeze, ping") else - src << "Unusable emote '[act]'. Say *help for a list." + to_chat(src, "Unusable emote '[act]'. Say *help or *vhelp for a list.") //VOREStation Edit, mention *vhelp for Virgo-specific emotes located in emote_vr.dm. if (message) custom_emote(m_type,message) diff --git a/code/modules/mob/living/carbon/human/emote_vr.dm b/code/modules/mob/living/carbon/human/emote_vr.dm index a637dff787..583483edd6 100644 --- a/code/modules/mob/living/carbon/human/emote_vr.dm +++ b/code/modules/mob/living/carbon/human/emote_vr.dm @@ -1,4 +1,11 @@ +/mob + var/nextemote = 1 + /mob/living/carbon/human/proc/handle_emote_vr(var/act,var/m_type=1,var/message = null) + //Reduces emote spamming + if(src.nextemote >= world.time)// || user.stat != CONSCIOUS + return 1 + src.nextemote = world.time + 12 switch(act) if ("vwag") @@ -17,8 +24,41 @@ message = "mlems [get_visible_gender() == MALE ? "his" : get_visible_gender() == FEMALE ? "her" : "their"] tongue up over [get_visible_gender() == MALE ? "his" : get_visible_gender() == FEMALE ? "her" : "their"] nose. Mlem." m_type = 1 if ("awoo") - message = "awoos loudly. AwoooOOOOoooo!" m_type = 2 + message = "lets out an awoo." + playsound(loc, 'sound/voice/awoo.ogg', 50, 1, -1) + if ("nya") + message = "lets out a nya." + m_type = 2 + playsound(loc, 'sound/voice/nya.ogg', 50, 1, -1) + if ("peep") + message = "peeps like a bird." + m_type = 2 + playsound(loc, 'sound/voice/peep.ogg', 50, 1, -1) + if ("chirp") + message = "chirps!" + playsound(src.loc, 'sound/misc/nymphchirp.ogg', 50, 0) + m_type = 2 + if ("weh") + message = "lets out a weh." + m_type = 2 + playsound(loc, 'sound/voice/weh.ogg', 50, 1, -1) + if ("merp") + message = "lets out a merp." + m_type = 2 + playsound(loc, 'sound/voice/merp.ogg', 50, 1, -1) + if ("bark") + message = "lets out a bark." + m_type = 2 + playsound(loc, 'sound/voice/bark2.ogg', 50, 1, -1) + if ("his") + message = "lets out a hiss." + m_type = 2 + playsound(loc, 'sound/voice/hiss.ogg', 50, 1, -1) + if ("squeak") + message = "lets out a squeak." + m_type = 2 + playsound(loc, 'sound/effects/mouse_squeak.ogg', 50, 1, -1) if ("nsay") nsay() return TRUE @@ -26,44 +66,17 @@ nme() return TRUE if ("flip") - var/danger = 1 //Base 1% chance to break something. var/list/involved_parts = list(BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT) - for(var/organ_name in involved_parts) - var/obj/item/organ/external/E = get_organ(organ_name) - if(!E || E.is_stump() || E.splinted || (E.status & ORGAN_BROKEN)) - involved_parts -= organ_name - danger += 5 //Add 5% to the chance for each problem limb - - //Taurs are harder to flip - if(istype(tail_style, /datum/sprite_accessory/tail/taur)) - danger += 1 - //Check if they are physically capable if(src.sleeping || src.resting || src.buckled || src.weakened || src.restrained() || involved_parts.len < 2) - src << "You can't *flip in your current state!" + to_chat(src, "You can't *flip in your current state!") return 1 else src.SpinAnimation(7,1) message = "does a flip!" m_type = 1 - - if(prob(danger)) - spawn(10) //Stick the landing. - var/breaking = pick(involved_parts) - var/obj/item/organ/external/E = get_organ(breaking) - if(isSynthetic()) - src.Weaken(5) - E.droplimb(1,DROPLIMB_EDGE) - message += " And loses a limb!" - log_and_message_admins("lost their [breaking] with *flip, ahahah.", src) - else - src.Weaken(5) - if(E.cannot_break) //Prometheans go splat - E.droplimb(0,DROPLIMB_BLUNT) - else - E.fracture() - message += " And breaks something!" - log_and_message_admins("broke their [breaking] with *flip, ahahah.", src) + if ("vhelp") //Help for Virgo-specific emotes. + to_chat(src, "vwag, vflap, mlem, awoo, nya, peep, chirp, weh, merp, bark, hiss, squeak, nsay, nme, flip") if (message) custom_emote(m_type,message) @@ -74,7 +87,7 @@ /mob/living/carbon/human/proc/toggle_tail_vr(var/setting,var/message = 0) if(!tail_style || !tail_style.ani_state) if(message) - src << "You don't have a tail that supports this." + to_chat(src, "You don't have a tail that supports this.") return 0 var/new_wagging = isnull(setting) ? !wagging : setting @@ -86,7 +99,7 @@ /mob/living/carbon/human/proc/toggle_wing_vr(var/setting,var/message = 0) if(!wing_style || !wing_style.ani_state) if(message) - src << "You don't have a tail that supports this." + to_chat(src, "You don't have a tail that supports this.") return 0 var/new_flapping = isnull(setting) ? !flapping : setting diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 0cf20396d8..e1974acf12 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -243,6 +243,12 @@ // this handles mulebots and vehicles // and now mobs on fire /mob/living/carbon/human/Crossed(var/atom/movable/AM) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(istype(AM, /mob/living/bot/mulebot)) var/mob/living/bot/mulebot/MB = AM MB.runOver(src) @@ -709,13 +715,13 @@ /mob/living/carbon/human/IsAdvancedToolUser(var/silent) // VOREstation start if(feral) - src << "Your primitive mind can't grasp the concept of that thing." + to_chat(src, "Your primitive mind can't grasp the concept of that thing.") return 0 // VOREstation end if(species.has_fine_manipulation) return 1 if(!silent) - src << "You don't have the dexterity to use that!" + to_chat(src, "You don't have the dexterity to use that!") return 0 /mob/living/carbon/human/abiotic(var/full_body = 0) @@ -1057,7 +1063,7 @@ if(!istype(O,/obj/item/weapon/implant) && prob(5)) //Moving with things stuck in you could be bad. // All kinds of embedded objects cause bleeding. if(!can_feel_pain(organ.organ_tag)) - src << "You feel [O] moving inside your [organ.name]." + to_chat(src, "You feel [O] moving inside your [organ.name].") else var/msg = pick( \ "A spike of pain jolts your [organ.name] as you bump [O] inside.", \ @@ -1223,26 +1229,26 @@ verbs -= /mob/living/carbon/human/proc/bloody_doodle if (src.gloves) - src << "Your [src.gloves] are getting in the way." + to_chat(src, "Your [src.gloves] are getting in the way.") return var/turf/simulated/T = src.loc if (!istype(T)) //to prevent doodling out of mechs and lockers - src << "You cannot reach the floor." + to_chat(src, "You cannot reach the floor.") return var/direction = input(src,"Which way?","Tile selection") as anything in list("Here","North","South","East","West") if (direction != "Here") T = get_step(T,text2dir(direction)) if (!istype(T)) - src << "You cannot doodle there." + to_chat(src, "You cannot doodle there.") return var/num_doodles = 0 for (var/obj/effect/decal/cleanable/blood/writing/W in T) num_doodles++ if (num_doodles > 4) - src << "There is no space to write on!" + to_chat(src, "There is no space to write on!") return var/max_length = bloody_hands * 30 //tweeter style @@ -1255,7 +1261,7 @@ if (length(message) > max_length) message += "-" - src << "You ran out of blood to write with!" + to_chat(src, "You ran out of blood to write with!") var/obj/effect/decal/cleanable/blood/writing/W = new(T) W.basecolor = (hand_blood_color) ? hand_blood_color : "#A10808" @@ -1283,6 +1289,9 @@ else if (affecting.robotic >= ORGAN_LIFELIKE) . = 0 fail_msg = "Your needle refuses to penetrate more than a short distance..." + else if (affecting.thick_skin && prob(70 - round(affecting.brute_dam + affecting.burn_dam / 2))) // Allows transplanted limbs with thick skin to maintain their resistance. + . = 0 + fail_msg = "Your needle fails to penetrate \the [affecting]'s thick hide..." else switch(target_zone) if(BP_HEAD) @@ -1412,7 +1421,7 @@ return if(self) - src << "You brace yourself to relocate your [current_limb.joint]..." + to_chat(src, "You brace yourself to relocate your [current_limb.joint]...") else U << "You begin to relocate [S]'s [current_limb.joint]..." @@ -1422,7 +1431,7 @@ return if(self) - src << "You pop your [current_limb.joint] back in!" + to_chat(src, "You pop your [current_limb.joint] back in!") else U << "You pop [S]'s [current_limb.joint] back in!" S << "[U] pops your [current_limb.joint] back in!" @@ -1507,11 +1516,11 @@ if(!UWC) return var/datum/category_item/underwear/UWI = all_underwear[UWC.name] if(!UWI || UWI.name == "None") - src << "You do not have [UWC.gender==PLURAL ? "[UWC.display_name]" : "\a [UWC.display_name]"]." + to_chat(src, "You do not have [UWC.gender==PLURAL ? "[UWC.display_name]" : "a [UWC.display_name]"].") return hide_underwear[UWC.name] = !hide_underwear[UWC.name] update_underwear(1) - src << "You [hide_underwear[UWC.name] ? "take off" : "put on"] your [UWC.display_name]." + to_chat(src, "You [hide_underwear[UWC.name] ? "take off" : "put on"] your [UWC.display_name].") return /mob/living/carbon/human/verb/pull_punches() @@ -1521,7 +1530,7 @@ if(stat) return pulling_punches = !pulling_punches - src << "You are now [pulling_punches ? "pulling your punches" : "not pulling your punches"]." + to_chat(src, "You are now [pulling_punches ? "pulling your punches" : "not pulling your punches"].") return /mob/living/carbon/human/should_have_organ(var/organ_check) diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index 1d7dd6d57a..4572f8cf85 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -98,7 +98,7 @@ if(istype(H) && health > config.health_threshold_dead) adjustOxyLoss(-(min(getOxyLoss(), 5))) updatehealth() - src << "You feel a breath of fresh air enter your lungs. It feels good." + to_chat(src, "You feel a breath of fresh air enter your lungs. It feels good.") else if(!(M == src && apply_pressure(M, M.zone_sel.selecting))) help_shake_act(M) diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm index 1f211fe95b..dd42af027e 100644 --- a/code/modules/mob/living/carbon/human/human_damage.dm +++ b/code/modules/mob/living/carbon/human/human_damage.dm @@ -253,21 +253,21 @@ if (candidates.len) var/obj/item/organ/external/O = pick(candidates) O.mutate() - src << "Something is not right with your [O.name]..." + to_chat(src, "Something is not right with your [O.name]...") return else if (prob(heal_prob)) for (var/obj/item/organ/external/O in organs) if (O.status & ORGAN_MUTATED) O.unmutate() - src << "Your [O.name] is shaped normally again." + to_chat(src, "Your [O.name] is shaped normally again.") return if (getCloneLoss() < 1) for (var/obj/item/organ/external/O in organs) if (O.status & ORGAN_MUTATED) O.unmutate() - src << "Your [O.name] is shaped normally again." + to_chat(src, "Your [O.name] is shaped normally again.") BITSET(hud_updateflag, HEALTH_HUD) // Defined here solely to take species flags into account without having to recast at mob/living level. diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 6bd592aed6..57cef190ec 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -416,7 +416,7 @@ emp_act //If the armor absorbs all of the damage, skip the rest of the calculations var/soaked = get_armor_soak(affecting, "melee", O.armor_penetration) if(soaked >= throw_damage) - src << "Your armor absorbs the force of [O.name]!" + to_chat(src, "Your armor absorbs the force of [O.name]!") return var/armor = run_armor_check(affecting, "melee", O.armor_penetration, "Your armor has protected your [hit_area].", "Your armor has softened hit to your [hit_area].") //I guess "melee" is the best fit here 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 0af0b1f7d1..b9200877c3 100644 --- a/code/modules/mob/living/carbon/human/human_defines_vr.dm +++ b/code/modules/mob/living/carbon/human/human_defines_vr.dm @@ -7,6 +7,47 @@ var/flapping = 0 var/vantag_pref = VANTAG_NONE //What's my status? var/impersonate_bodytype //For impersonating a bodytype + var/ability_flags = 0 //Shadekin abilities/potentially other species-based? + var/sensorpref = 5 //Suit sensor loadout pref - //TFF 5/8/19 - add and set suit sensor setting define to 5 for random setting - var/sensorpref = 5 \ No newline at end of file +/mob/living/carbon/human/proc/shadekin_get_energy() + var/datum/species/shadekin/SK = species + + if(!istype(SK)) + return 0 + + return SK.get_energy(src) + +/mob/living/carbon/human/proc/shadekin_get_max_energy() + var/datum/species/shadekin/SK = species + + if(!istype(SK)) + return 0 + + return SK.get_max_energy(src) + +/mob/living/carbon/human/proc/shadekin_set_energy(var/new_energy) + var/datum/species/shadekin/SK = species + + if(!istype(SK)) + return 0 + + SK.set_energy(src, new_energy) + +/mob/living/carbon/human/proc/shadekin_set_max_energy(var/new_max_energy) + var/datum/species/shadekin/SK = species + + if(!istype(SK)) + return 0 + + SK.set_max_energy(src, new_max_energy) + +/mob/living/carbon/human/proc/shadekin_adjust_energy(var/amount) + var/datum/species/shadekin/SK = species + + if(!istype(SK)) + return 0 + + if(amount > 0 || !(SK.check_infinite_energy(src))) + var/new_amount = SK.get_energy(src) + amount + SK.set_energy(src, new_amount) \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/human_helpers.dm b/code/modules/mob/living/carbon/human/human_helpers.dm index ec10dc90f8..446c399c9a 100644 --- a/code/modules/mob/living/carbon/human/human_helpers.dm +++ b/code/modules/mob/living/carbon/human/human_helpers.dm @@ -8,9 +8,9 @@ return 1 if(feedback) if(status[1] == HUMAN_EATING_NO_MOUTH) - src << "Where do you intend to put \the [food]? You don't have a mouth!" + to_chat(src, "Where do you intend to put \the [food]? You don't have a mouth!") else if(status[1] == HUMAN_EATING_BLOCKED_MOUTH) - src << "\The [status[2]] is in the way!" + to_chat(src, "\The [status[2]] is in the way!") return 0 /mob/living/carbon/human/can_force_feed(var/feeder, var/food, var/feedback = 1) @@ -97,6 +97,7 @@ var/obj/item/organ/external/T = organs_by_name[BP_TORSO] if(T && T.robotic >= ORGAN_ROBOT) src.verbs += /mob/living/carbon/human/proc/self_diagnostics + src.verbs += /mob/living/carbon/human/proc/reagent_purge //VOREStation Add var/datum/robolimb/R = all_robolimbs[T.model] synthetic = R return synthetic diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index 2bdebcbe0a..4bb2770175 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -224,6 +224,10 @@ // Handle footstep sounds /mob/living/carbon/human/handle_footstep(var/turf/T) + //VOREStation Edit begin: SHADEKIN + if(shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(!config.footstep_volume || !T.footstep_sounds || !T.footstep_sounds.len) return // Future Upgrades - Multi species support diff --git a/code/modules/mob/living/carbon/human/human_powers.dm b/code/modules/mob/living/carbon/human/human_powers.dm index a3c5e65470..9309100cf6 100644 --- a/code/modules/mob/living/carbon/human/human_powers.dm +++ b/code/modules/mob/living/carbon/human/human_powers.dm @@ -42,7 +42,7 @@ return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot tackle someone in your current state." + to_chat(src, "You cannot tackle someone in your current state.") return var/list/choices = list() @@ -61,7 +61,7 @@ return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot tackle in your current state." + to_chat(src, "You cannot tackle in your current state.") return last_special = world.time + 50 @@ -103,7 +103,7 @@ var/mob/M = targets[target] if(istype(M, /mob/observer/dead) || M.stat == DEAD) - src << "Not even a [src.species.name] can speak to the dead." + to_chat(src, "Not even a [src.species.name] can speak to the dead.") return log_say("(COMMUNE to [key_name(M)]) [text]",src) @@ -138,7 +138,7 @@ if(msg) log_say("(PWHISPER to [key_name(M)]) [msg]", src) M << "You hear a strange, alien voice in your head... [msg]" - src << "You said: \"[msg]\" to [M]" + to_chat(src, "You said: \"[msg]\" to [M]") return /mob/living/carbon/human/proc/diona_split_nymph() @@ -189,7 +189,7 @@ if(stat == DEAD) return - src << "Performing self-diagnostic, please wait..." + to_chat(src, "Performing self-diagnostic, please wait...") sleep(50) var/output = "Self-Diagnostic Results:\n" @@ -226,17 +226,17 @@ set category = "Abilities" if(incapacitated()) - src << "You need to recover before you can use this ability." + to_chat(src, "You need to recover before you can use this ability.") return if(world.time < next_sonar_ping) - src << "You need another moment to focus." + to_chat(src, "You need another moment to focus.") return if(is_deaf() || is_below_sound_pressure(get_turf(src))) - src << "You are for all intents and purposes currently deaf!" + to_chat(src, "You are for all intents and purposes currently deaf!") return next_sonar_ping += 10 SECONDS var/heard_something = FALSE - src << "You take a moment to listen in to your environment..." + to_chat(src, "You take a moment to listen in to your environment...") for(var/mob/living/L in range(client.view, src)) var/turf/T = get_turf(L) if(!T || L == src || L.stat == DEAD || is_below_sound_pressure(T)) @@ -263,7 +263,7 @@ feedback += "" src << jointext(feedback,null) if(!heard_something) - src << "You hear no movement but your own." + to_chat(src, "You hear no movement but your own.") /mob/living/carbon/human/proc/regenerate() set name = "Regenerate" diff --git a/code/modules/mob/living/carbon/human/human_powers_vr.dm b/code/modules/mob/living/carbon/human/human_powers_vr.dm new file mode 100644 index 0000000000..1d1954ac33 --- /dev/null +++ b/code/modules/mob/living/carbon/human/human_powers_vr.dm @@ -0,0 +1,16 @@ +/mob/living/carbon/human/proc/reagent_purge() + set name = "Purge Reagents" + set desc = "Empty yourself of any reagents you may have consumed or come into contact with." + set category = "IC" + + if(stat == DEAD) return + + to_chat(src, "Performing reagent purge, please wait...") + sleep(50) + src.bloodstr.clear_reagents() + src.ingested.clear_reagents() + src.touching.clear_reagents() + to_chat(src, "Reagents purged!") + + return TRUE + diff --git a/code/modules/mob/living/carbon/human/human_species_vr.dm b/code/modules/mob/living/carbon/human/human_species_vr.dm index ed27c12e62..897ef6ab14 100644 --- a/code/modules/mob/living/carbon/human/human_species_vr.dm +++ b/code/modules/mob/living/carbon/human/human_species_vr.dm @@ -26,6 +26,8 @@ /mob/living/carbon/human/protean/New(var/new_loc) ..(new_loc, "Protean") - /mob/living/carbon/human/alraune/New(var/new_loc) ..(new_loc, "Alraune") + +/mob/living/carbon/human/shadekin/New(var/new_loc) + ..(new_loc, SPECIES_SHADEKIN) \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/human_vr.dm b/code/modules/mob/living/carbon/human/human_vr.dm index f12836ad3d..a60521b5ab 100644 --- a/code/modules/mob/living/carbon/human/human_vr.dm +++ b/code/modules/mob/living/carbon/human/human_vr.dm @@ -7,7 +7,8 @@ img.override = TRUE add_alt_appearance("animals", img, displayTo = alt_farmanimals) + /mob/living/carbon/human/Destroy() alt_farmanimals -= src - . = ..() + . = ..() \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/inventory.dm b/code/modules/mob/living/carbon/human/inventory.dm index a51e04b535..ee2082401c 100644 --- a/code/modules/mob/living/carbon/human/inventory.dm +++ b/code/modules/mob/living/carbon/human/inventory.dm @@ -327,7 +327,7 @@ This saves us from having to call add_fingerprint() any time something is put in if(C.attempt_attach_accessory(A, src)) return else - src << "You are trying to equip this item to an unsupported inventory slot. How the heck did you manage that? Stop it..." + to_chat(src, "You are trying to equip this item to an unsupported inventory slot. How the heck did you manage that? Stop it...") return if((W == src.l_hand) && (slot != slot_l_hand)) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index 5c0cab75f7..3b0d161dfd 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -189,7 +189,7 @@ if (disabilities & EPILEPSY) if ((prob(1) && paralysis < 1)) - src << "You have a seizure!" + to_chat(src, "You have a seizure!") for(var/mob/O in viewers(src, null)) if(O == src) continue @@ -223,19 +223,19 @@ custom_pain("Your head feels numb and painful.", 10) if(getBrainLoss() >= 15) if(4 <= rn && rn <= 6) if(eye_blurry <= 0) - src << "It becomes hard to see for some reason." + to_chat(src, "It becomes hard to see for some reason.") eye_blurry = 10 if(getBrainLoss() >= 35) if(7 <= rn && rn <= 9) if(get_active_hand()) - src << "Your hand won't respond properly, you drop what you're holding!" + to_chat(src, "Your hand won't respond properly, you drop what you're holding!") drop_item() if(getBrainLoss() >= 45) if(10 <= rn && rn <= 12) if(prob(50)) - src << "You suddenly black out!" + to_chat(src, "You suddenly black out!") Paralyse(10) else if(!lying) - src << "Your legs won't respond properly, you fall down!" + to_chat(src, "Your legs won't respond properly, you fall down!") Weaken(10) @@ -283,6 +283,12 @@ if(core) return + //VOREStation Addition start: shadekin + var/obj/item/organ/internal/brain/shadekin/s_brain = locate() in internal_organs + if(s_brain) + return + //VOREStation Addition end: shadekin + var/damage = 0 radiation -= 1 * RADIATION_SPEED_COEFFICIENT if(prob(25)) @@ -294,13 +300,13 @@ if(!isSynthetic()) if(prob(5) && prob(100 * RADIATION_SPEED_COEFFICIENT)) radiation -= 5 * RADIATION_SPEED_COEFFICIENT - src << "You feel weak." + to_chat(src, "You feel weak.") Weaken(3) if(!lying) emote("collapse") if(prob(5) && prob(100 * RADIATION_SPEED_COEFFICIENT) && species.get_bodytype() == SPECIES_HUMAN) //apes go bald if((h_style != "Bald" || f_style != "Shaved" )) - src << "Your hair falls out." + to_chat(src, "Your hair falls out.") h_style = "Bald" f_style = "Shaved" update_hair() @@ -312,7 +318,7 @@ if(prob(5)) take_overall_damage(0, 5 * RADIATION_SPEED_COEFFICIENT, used_weapon = "Radiation Burns") if(prob(1)) - src << "You feel strange!" + to_chat(src, "You feel strange!") adjustCloneLoss(5 * RADIATION_SPEED_COEFFICIENT) emote("gasp") @@ -484,7 +490,7 @@ if(exhaled_pp > safe_exhaled_max) if (!co2_alert|| prob(15)) var/word = pick("extremely dizzy","short of breath","faint","confused") - src << "You feel [word]." + to_chat(src, "You feel [word].") adjustOxyLoss(HUMAN_MAX_OXYLOSS) co2_alert = 1 @@ -493,7 +499,7 @@ else if(exhaled_pp > safe_exhaled_max * 0.7) if (!co2_alert || prob(1)) var/word = pick("dizzy","short of breath","faint","momentarily confused") - src << "You feel [word]." + to_chat(src, "You feel [word].") //scale linearly from 0 to 1 between safe_exhaled_max and safe_exhaled_max*0.7 var/ratio = 1.0 - (safe_exhaled_max - exhaled_pp)/(safe_exhaled_max*0.3) @@ -507,7 +513,7 @@ else if(exhaled_pp > safe_exhaled_max * 0.6) if (prob(0.3)) var/word = pick("a little dizzy","short of breath") - src << "You feel [word]." + to_chat(src, "You feel [word].") else co2_alert = 0 @@ -555,10 +561,10 @@ if(breath.temperature <= species.breath_cold_level_1) if(prob(20)) - src << "You feel your face freezing and icicles forming in your lungs!" + to_chat(src, "You feel your face freezing and icicles forming in your lungs!") else if(breath.temperature >= species.breath_heat_level_1) if(prob(20)) - src << "You feel your face burning and a searing heat in your lungs!" + to_chat(src, "You feel your face burning and a searing heat in your lungs!") if(breath.temperature >= species.breath_heat_level_1) if(breath.temperature < species.breath_heat_level_2) @@ -612,6 +618,11 @@ //Stuff like the xenomorph's plasma regen happens here. species.handle_environment_special(src) + //VOREStation Edit begin: SHADEKIN + if(shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN + //Moved pressure calculations here for use in skip-processing check. var/pressure = environment.return_pressure() var/adjusted_pressure = calculate_affecting_pressure(pressure) @@ -876,7 +887,7 @@ for(var/obj/item/I in src) if(I.contaminated) if(check_belly(I)) continue //VOREStation Edit - if(src.species && src.species.get_bodytype() != "Vox") + if(src.species && src.species.get_bodytype() != "Vox" && src.species.get_bodytype() != "Shadekin") //VOREStation Edit: shadekin // This is hacky, I'm so sorry. if(I != l_hand && I != r_hand) //If the item isn't in your hands, you're probably wearing it. Full damage for you. total_phoronloss += vsc.plc.CONTAMINATION_LOSS @@ -987,7 +998,7 @@ adjustBrainLoss(brainOxPercent * oxyloss) if(halloss >= species.total_health) - src << "You're in too much pain to keep going..." + to_chat(src, "You're in too much pain to keep going...") src.visible_message("[src] slumps to the ground, too weak to continue fighting.") Paralyse(10) setHalLoss(species.total_health - 1) @@ -1528,22 +1539,22 @@ stuttering = max(stuttering, 5) if(shock_stage == 40) - src << "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!" + to_chat(src, "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!") if (shock_stage >= 60) if(shock_stage == 60) emote("me",1,"'s body becomes limp.") if (prob(2)) - src << "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!" + to_chat(src, "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!") Weaken(20) if(shock_stage >= 80) if (prob(5)) - src << "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!" + to_chat(src, "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!") Weaken(20) if(shock_stage >= 120) if (prob(2)) - src << "[pick("You black out", "You feel like you could die any moment now", "You're about to lose consciousness")]!" + to_chat(src, "[pick("You black out", "You feel like you could die any moment now", "You are about to lose consciousness")]!") Paralyse(5) if(shock_stage == 150) diff --git a/code/modules/mob/living/carbon/human/life_vr.dm b/code/modules/mob/living/carbon/human/life_vr.dm index 46476a636a..6c15daedf1 100644 --- a/code/modules/mob/living/carbon/human/life_vr.dm +++ b/code/modules/mob/living/carbon/human/life_vr.dm @@ -76,4 +76,4 @@ src.nutrition -= DEFAULT_HUNGER_FACTOR/10 // Moving around increases germ_level faster if(germ_level < GERM_LEVEL_MOVE_CAP && prob(8)) - germ_level++ + germ_level++ \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/shadekin/_defines.dm b/code/modules/mob/living/carbon/human/species/shadekin/_defines.dm new file mode 100644 index 0000000000..f24544e0b2 --- /dev/null +++ b/code/modules/mob/living/carbon/human/species/shadekin/_defines.dm @@ -0,0 +1,6 @@ +#define NOT_WHILE_SHIFTED 1 +#define ONLY_WHILE_SHIFTED 2 +#define SHIFTED_OR_NOT 3 + +#define AB_PHASE_SHIFTED 0x1 +#define AB_SHADE_REGEN 0x2 \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm new file mode 100644 index 0000000000..aad75767cd --- /dev/null +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm @@ -0,0 +1,258 @@ +/datum/species/shadekin + name = SPECIES_SHADEKIN + name_plural = "Shadekin" + icobase = 'icons/mob/human_races/r_shadekin_vr.dmi' + deform = 'icons/mob/human_races/r_shadekin_vr.dmi' + tail = "tail" + icobase_tail = 1 + blurb = "Very little is known about these creatures. They appear to be largely mammalian in appearance. \ + Seemingly very rare to encounter, there have been widespread myths of these creatures the galaxy over, \ + but next to no verifiable evidence to their existence. However, they have recently been more verifiably \ + documented in the Virgo system, following a mining bombardment of Virgo 3. The crew of NSB Adephagia have \ + taken to calling these creatures 'Shadekin', and the name has generally stuck and spread. " //TODO: Something that's not wiki copypaste + wikilink = "https://wiki.vore-station.net/Shadekin" + catalogue_data = list(/datum/category_item/catalogue/fauna/shadekin) + + language = LANGUAGE_SHADEKIN + name_language = LANGUAGE_SHADEKIN + species_language = LANGUAGE_SHADEKIN + secondary_langs = list(LANGUAGE_SHADEKIN) + num_alternate_languages = 3 + unarmed_types = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws/shadekin, /datum/unarmed_attack/bite/sharp/shadekin) + rarity_value = 15 //INTERDIMENSIONAL FLUFFERS + + siemens_coefficient = 0 + darksight = 10 + + slowdown = -0.5 + item_slowdown_mod = 0.5 + + brute_mod = 0.7 // Naturally sturdy. + burn_mod = 1.2 // Furry + + warning_low_pressure = 50 + hazard_low_pressure = -1 + + warning_high_pressure = 300 + hazard_high_pressure = INFINITY + + cold_level_1 = -1 //Immune to cold + cold_level_2 = -1 + cold_level_3 = -1 + + heat_level_1 = 850 //Resistant to heat + heat_level_2 = 1000 + heat_level_3 = 1150 + + flags = NO_SCAN | NO_MINOR_CUT | NO_INFECT + spawn_flags = SPECIES_CAN_JOIN | SPECIES_IS_WHITELISTED | SPECIES_WHITELIST_SELECTABLE + + reagent_tag = IS_SHADEKIN // for shadekin-unqiue chem interactions + + flesh_color = "#FFC896" + blood_color = "#A10808" + base_color = "#f0f0f0" + color_mult = 1 + + inherent_verbs = list(/mob/living/proc/shred_limb) + + has_glowing_eyes = TRUE + + death_message = "phases to somewhere far away!" + male_cough_sounds = null + female_cough_sounds = null + male_sneeze_sound = null + female_sneeze_sound = null + + speech_bubble_appearance = "ghost" + + genders = list(PLURAL, NEUTER) //no sexual dymorphism + ambiguous_genders = TRUE //but just in case + + virus_immune = 1 + + breath_type = null + poison_type = null + + vision_flags = SEE_SELF|SEE_MOBS + appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_SKIN_COLOR | HAS_EYE_COLOR | HAS_UNDERWEAR + + move_trail = /obj/effect/decal/cleanable/blood/tracks/paw + + has_organ = list( + O_HEART = /obj/item/organ/internal/heart, + O_VOICE = /obj/item/organ/internal/voicebox, + O_LIVER = /obj/item/organ/internal/liver, + O_KIDNEYS = /obj/item/organ/internal/kidneys, + O_BRAIN = /obj/item/organ/internal/brain/shadekin, + O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine + ) + + has_limbs = list( + BP_TORSO = list("path" = /obj/item/organ/external/chest), + BP_GROIN = list("path" = /obj/item/organ/external/groin), + BP_HEAD = list("path" = /obj/item/organ/external/head/vr/shadekin), + BP_L_ARM = list("path" = /obj/item/organ/external/arm), + BP_R_ARM = list("path" = /obj/item/organ/external/arm/right), + BP_L_LEG = list("path" = /obj/item/organ/external/leg), + BP_R_LEG = list("path" = /obj/item/organ/external/leg/right), + BP_L_HAND = list("path" = /obj/item/organ/external/hand), + BP_R_HAND = list("path" = /obj/item/organ/external/hand/right), + BP_L_FOOT = list("path" = /obj/item/organ/external/foot), + BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right) + ) + + //SHADEKIN-UNIQUE STUFF GOES HERE + var/list/shadekin_abilities = list(/datum/power/shadekin/phase_shift, + /datum/power/shadekin/regenerate_other, + /datum/power/shadekin/create_shade) + var/list/shadekin_ability_datums = list() + +/datum/species/shadekin/New() + ..() + for(var/power in shadekin_abilities) + var/datum/power/shadekin/SKP = new power(src) + shadekin_ability_datums.Add(SKP) + +/datum/species/shadekin/handle_death(var/mob/living/carbon/human/H) + spawn(1) + for(var/obj/item/W in H) + H.drop_from_inventory(W) + qdel(H) + +/datum/species/shadekin/get_bodytype() + return SPECIES_SHADEKIN + +/datum/species/shadekin/get_random_name() + return "shadekin" + +/datum/species/shadekin/handle_environment_special(var/mob/living/carbon/human/H) + handle_shade(H) + +/datum/species/shadekin/can_breathe_water() + return TRUE //they dont quite breathe + +/datum/species/shadekin/add_inherent_verbs(var/mob/living/carbon/human/H) + ..() + add_shadekin_abilities(H) + +/datum/species/shadekin/proc/add_shadekin_abilities(var/mob/living/carbon/human/H) + if(!H.ability_master || !istype(H.ability_master, /obj/screen/movable/ability_master/shadekin)) + H.ability_master = null + H.ability_master = new /obj/screen/movable/ability_master/shadekin(H) + for(var/datum/power/shadekin/P in shadekin_ability_datums) + if(!(P.verbpath in H.verbs)) + H.verbs += P.verbpath + H.ability_master.add_shadekin_ability( + object_given = H, + verb_given = P.verbpath, + name_given = P.name, + ability_icon_given = P.ability_icon_state, + arguments = list() + ) + +/datum/species/shadekin/proc/handle_shade(var/mob/living/carbon/human/H) + //Shifted kin don't gain/lose energy (and save time if we're at the cap) + var/darkness = 1 + var/dark_gains = 0 + + var/turf/T = get_turf(H) + if(!T) + dark_gains = 0 + return + + var/brightness = T.get_lumcount() //Brightness in 0.0 to 1.0 + darkness = 1-brightness //Invert + + if(H.ability_flags & AB_PHASE_SHIFTED) + dark_gains = 0 + else + //Heal (very) slowly in good darkness + if(darkness >= 0.75) + H.adjustFireLoss(-0.05) + H.adjustBruteLoss(-0.05) + H.adjustToxLoss(-0.05) + dark_gains = 0.75 + else + dark_gains = 0.25 + + set_energy(H, get_energy(H) + dark_gains) + + //Update huds + update_shadekin_hud(H) + +/datum/species/shadekin/proc/get_energy(var/mob/living/carbon/human/H) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + return shade_organ.dark_energy + +/datum/species/shadekin/proc/get_max_energy(var/mob/living/carbon/human/H) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + return shade_organ.max_dark_energy + +/datum/species/shadekin/proc/set_energy(var/mob/living/carbon/human/H, var/new_energy) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return + + shade_organ.dark_energy = CLAMP(new_energy, 0, get_max_energy(H)) + +/datum/species/shadekin/proc/set_max_energy(var/mob/living/carbon/human/H, var/new_max_energy) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + shade_organ.max_dark_energy = new_max_energy + +/datum/species/shadekin/proc/check_infinite_energy(var/mob/living/carbon/human/H) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + return shade_organ.dark_energy_infinite + +/datum/species/shadekin/proc/update_shadekin_hud(var/mob/living/carbon/human/H) + var/turf/T = get_turf(H) + if(!T) + return + if(H.shadekin_energy_display) + H.shadekin_energy_display.invisibility = 0 + switch(get_energy(H)) + if(80 to INFINITY) + H.shadekin_energy_display.icon_state = "energy0" + if(60 to 80) + H.shadekin_energy_display.icon_state = "energy1" + if(40 to 60) + H.shadekin_energy_display.icon_state = "energy2" + if(20 to 40) + H.shadekin_energy_display.icon_state = "energy3" + if(0 to 20) + H.shadekin_energy_display.icon_state = "energy4" + if(H.shadekin_dark_display) + H.shadekin_dark_display.invisibility = 0 + var/brightness = T.get_lumcount() //Brightness in 0.0 to 1.0 + var/darkness = 1-brightness //Invert + switch(darkness) + if(0.80 to 1.00) + H.shadekin_dark_display.icon_state = "dark2" + if(0.60 to 0.80) + H.shadekin_dark_display.icon_state = "dark1" + if(0.40 to 0.60) + H.shadekin_dark_display.icon_state = "dark" + if(0.20 to 0.40) + H.shadekin_dark_display.icon_state = "dark-1" + if(0.00 to 0.20) + H.shadekin_dark_display.icon_state = "dark-2" + return \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm new file mode 100644 index 0000000000..7d354db330 --- /dev/null +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm @@ -0,0 +1,307 @@ +/datum/power/shadekin + +///////////////////// +/// PHASE SHIFT /// +///////////////////// +//Visual effect for phase in/out +/obj/effect/temp_visual/shadekin + randomdir = FALSE + duration = 5 + icon = 'icons/mob/vore_shadekin.dmi' + +/obj/effect/temp_visual/shadekin/phase_in + icon_state = "tp_in" + +/obj/effect/temp_visual/shadekin/phase_out + icon_state = "tp_out" + +/datum/power/shadekin/phase_shift + name = "Phase Shift (100)" + desc = "Shift yourself out of alignment with realspace to travel quickly to different areas." + verbpath = /mob/living/carbon/human/proc/phase_shift + ability_icon_state = "tech_passwall" + +/mob/living/carbon/human/proc/phase_shift() + set name = "Phase Shift (100)" + set desc = "Shift yourself out of alignment with realspace to travel quickly to different areas." + set category = "Shadekin" + + var/ability_cost = 100 + + var/datum/species/shadekin/SK = species + if(!istype(SK)) + to_chat(src, "Only a shadekin can use that!") + return FALSE + else if(stat) + to_chat(src, "Can't use that ability in your state!") + return FALSE + else if(shadekin_get_energy() < ability_cost && !(ability_flags & AB_PHASE_SHIFTED)) + to_chat(src, "Not enough energy for that ability!") + return FALSE + + if(!(ability_flags & AB_PHASE_SHIFTED)) + shadekin_adjust_energy(-ability_cost) + playsound(src, 'sound/effects/stealthoff.ogg', 75, 1) + + var/turf/T = get_turf(src) + if(!T.CanPass(src,T) || loc != T) + to_chat(src,"You can't use that here!") + return FALSE + + forceMove(T) + var/original_canmove = canmove + SetStunned(0) + SetWeakened(0) + if(buckled) + buckled.unbuckle_mob() + if(pulledby) + pulledby.stop_pulling() + stop_pulling() + canmove = FALSE + + //Shifting in + if(ability_flags & AB_PHASE_SHIFTED) + ability_flags &= ~AB_PHASE_SHIFTED + name = real_name + for(var/belly in vore_organs) + var/obj/belly/B = belly + B.escapable = initial(B.escapable) + + //overlays.Cut() + invisibility = initial(invisibility) + see_invisible = initial(see_invisible) + incorporeal_move = initial(incorporeal_move) + density = initial(density) + force_max_speed = initial(force_max_speed) + update_icon() + + //Cosmetics mostly + var/obj/effect/temp_visual/shadekin/phase_in/phaseanim = new /obj/effect/temp_visual/shadekin/phase_in(src.loc) + phaseanim.dir = dir + alpha = 0 + custom_emote(1,"phases in!") + sleep(5) //The duration of the TP animation + canmove = original_canmove + alpha = initial(alpha) + + //Potential phase-in vore + if(can_be_drop_pred) //Toggleable in vore panel + var/list/potentials = living_mobs(0) + if(potentials.len) + var/mob/living/target = pick(potentials) + if(istype(target) && vore_selected) + target.forceMove(vore_selected) + to_chat(target,"\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!") + + //Affect nearby lights + var/destroy_lights = 0 + + for(var/obj/machinery/light/L in machines) + if(L.z != z || get_dist(src,L) > 10) + continue + + if(prob(destroy_lights)) + spawn(rand(5,25)) + L.broken() + else + L.flicker(10) + //Shifting out + else + ability_flags |= AB_PHASE_SHIFTED + custom_emote(1,"phases out!") + name = "Something" + + for(var/belly in vore_organs) + var/obj/belly/B = belly + B.escapable = FALSE + + var/obj/effect/temp_visual/shadekin/phase_out/phaseanim = new /obj/effect/temp_visual/shadekin/phase_out(src.loc) + phaseanim.dir = dir + alpha = 0 + sleep(5) + invisibility = INVISIBILITY_LEVEL_TWO + see_invisible = INVISIBILITY_LEVEL_TWO + //overlays.Cut() + update_icon() + alpha = 127 + + canmove = original_canmove + incorporeal_move = TRUE + density = FALSE + force_max_speed = TRUE + +/mob/living/carbon/human/UnarmedAttack() + if(shadekin_phasing_check()) + return FALSE //Nope. + + . = ..() + +/mob/living/carbon/human/can_fall() + if(shadekin_phasing_check()) + return FALSE //Nope! + + return ..() + +/mob/living/carbon/human/zMove(direction) + if(shadekin_phasing_check()) + var/turf/destination = (direction == UP) ? GetAbove(src) : GetBelow(src) + if(destination) + forceMove(destination) + return TRUE //Yup. + + return ..() + +/mob/proc/shadekin_phasing_check() + var/mob/living/simple_mob/shadekin/s_SK = src + if(istype(s_SK)) + if(s_SK.ability_flags & AB_PHASE_SHIFTED) + return TRUE + var/mob/living/carbon/human/h_SK = src + if(istype(h_SK)) + if(h_SK.ability_flags & AB_PHASE_SHIFTED) + return TRUE + return FALSE + +/* +/mob/living/carbon/human/MouseDrop_T(atom/dropping, mob/user) + if(ability_flags & AB_PHASE_SHIFTED) + return FALSE //Nope! + + return ..() +*/ + + +////////////////////////// +/// REGENERATE OTHER /// +////////////////////////// +/datum/power/shadekin/regenerate_other + name = "Regenerate Other (50)" + desc = "Spend energy to heal physical wounds in another creature." + verbpath = /mob/living/carbon/human/proc/regenerate_other + ability_icon_state = "tech_biomedaura" + +/mob/living/carbon/human/proc/regenerate_other() + set name = "Regenerate Other (50)" + set desc = "Spend energy to heal physical wounds in another creature." + set category = "Shadekin" + + var/ability_cost = 50 + + var/datum/species/shadekin/SK = species + if(!istype(SK)) + to_chat(src, "Only a shadekin can use that!") + return FALSE + else if(stat) + to_chat(src, "Can't use that ability in your state!") + return FALSE + else if(shadekin_get_energy() < ability_cost) + to_chat(src, "Not enough energy for that ability!") + return FALSE + else if(ability_flags & AB_PHASE_SHIFTED) + to_chat(src, "You can't use that while phase shifted!") + return FALSE + + var/list/viewed = oview(1) + var/list/targets = list() + for(var/mob/living/L in viewed) + targets += L + if(!targets.len) + to_chat(src,"Nobody nearby to mend!") + return FALSE + + var/mob/living/target = input(src,"Pick someone to mend:","Mend Other") as null|anything in targets + if(!target) + return FALSE + + target.add_modifier(/datum/modifier/shadekin/heal_boop,1 MINUTE) + playsound(src, 'sound/effects/EMPulse.ogg', 75, 1) + shadekin_adjust_energy(-ability_cost) + visible_message("\The [src] gently places a hand on \the [target]...") + face_atom(target) + return TRUE + +/datum/modifier/shadekin/heal_boop + name = "Shadekin Regen" + desc = "You feel serene and well rested." + mob_overlay_state = "green_sparkles" + + on_created_text = "Sparkles begin to appear around you, and all your ills seem to fade away." + on_expired_text = "The sparkles have faded, although you feel much healthier than before." + stacks = MODIFIER_STACK_EXTEND + +/datum/modifier/shadekin/heal_boop/tick() + if(!holder.getBruteLoss() && !holder.getFireLoss() && !holder.getToxLoss() && !holder.getOxyLoss() && !holder.getCloneLoss()) // No point existing if the spell can't heal. + expire() + return + holder.adjustBruteLoss(-2) + holder.adjustFireLoss(-2) + holder.adjustToxLoss(-2) + holder.adjustOxyLoss(-2) + holder.adjustCloneLoss(-2) + + +////////////////////// +/// CREATE SHADE /// +////////////////////// +/datum/power/shadekin/create_shade + name = "Create Shade (25)" + desc = "Create a field of darkness that follows you." + verbpath = /mob/living/carbon/human/proc/create_shade + ability_icon_state = "tech_dispelold" + +/mob/living/carbon/human/proc/create_shade() + set name = "Create Shade (25)" + set desc = "Create a field of darkness that follows you." + set category = "Shadekin" + + var/ability_cost = 25 + + var/datum/species/shadekin/SK = species + if(!istype(SK)) + to_chat(src, "Only a shadekin can use that!") + return FALSE + else if(stat) + to_chat(src, "Can't use that ability in your state!") + return FALSE + else if(shadekin_get_energy() < ability_cost) + to_chat(src, "Not enough energy for that ability!") + return FALSE + else if(ability_flags & AB_PHASE_SHIFTED) + to_chat(src, "You can't use that while phase shifted!") + return FALSE + + playsound(src, 'sound/effects/bamf.ogg', 75, 1) + + add_modifier(/datum/modifier/shadekin/create_shade,20 SECONDS) + shadekin_adjust_energy(-ability_cost) + return TRUE + +/datum/modifier/shadekin/create_shade + name = "Shadekin Shadegen" + desc = "Darkness envelops you." + mob_overlay_state = "" + + on_created_text = "You drag part of The Dark into realspace, enveloping yourself." + on_expired_text = "You lose your grasp on The Dark and realspace reasserts itself." + stacks = MODIFIER_STACK_EXTEND + var/mob/living/simple_mob/shadekin/my_kin + +/datum/modifier/shadekin/create_shade/tick() + if(my_kin.ability_flags & AB_PHASE_SHIFTED) + expire() + +/datum/modifier/shadekin/create_shade/on_applied() + my_kin = holder + holder.glow_toggle = TRUE + holder.glow_range = 8 + holder.glow_intensity = -10 + holder.glow_color = "#FFFFFF" + holder.set_light(8, -10, "#FFFFFF") + +/datum/modifier/shadekin/create_shade/on_expire() + holder.glow_toggle = initial(holder.glow_toggle) + holder.glow_range = initial(holder.glow_range) + holder.glow_intensity = initial(holder.glow_intensity) + holder.glow_color = initial(holder.glow_color) + holder.set_light(0) + my_kin = null \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm new file mode 100644 index 0000000000..5017cff724 --- /dev/null +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm @@ -0,0 +1,59 @@ +/obj/screen/shadekin + icon = 'icons/mob/shadekin_hud.dmi' + invisibility = 101 + +/obj/screen/shadekin/darkness + name = "darkness" + icon_state = "dark" + alpha = 150 + +/obj/screen/shadekin/energy + name = "energy" + icon_state = "energy0" + alpha = 150 + + + + +/obj/screen/movable/ability_master/shadekin + name = "Shadekin Abilities" + icon = 'icons/mob/screen_spells.dmi' + icon_state = "grey_spell_ready" + ability_objects = list() + showing = 0 + + open_state = "master_open" + closed_state = "master_closed" + + screen_loc = ui_spell_master + +/obj/screen/movable/ability_master/shadekin/update_abilities(forced = 0, mob/user) //Different proc to prevent indexing + update_icon() + if(user && user.client) + if(!(src in user.client.screen)) + user.client.screen += src + for(var/obj/screen/ability/ability in ability_objects) + ability.update_icon(forced) + +/obj/screen/ability/verb_based/shadekin + icon_state = "grey_spell_base" + background_base_state = "grey" + +/obj/screen/movable/ability_master/proc/add_shadekin_ability(var/object_given, var/verb_given, var/name_given, var/ability_icon_given, var/arguments) + if(!object_given) + message_admins("ERROR: add_shadekin_ability() was not given an object in its arguments.") + if(!verb_given) + message_admins("ERROR: add_shadekin_ability() was not given a verb/proc in its arguments.") + if(get_ability_by_proc_ref(verb_given)) + return // Duplicate + var/obj/screen/ability/verb_based/shadekin/A = new /obj/screen/ability/verb_based/shadekin() + A.ability_master = src + A.object_used = object_given + A.verb_to_call = verb_given + A.ability_icon_state = ability_icon_given + A.name = name_given + if(arguments) + A.arguments_to_use = arguments + ability_objects.Add(A) + if(my_mob.client) + toggle_open(2) //forces the icons to refresh on screen \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index 3a8c3b4f19..baaf7c05ff 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -426,6 +426,10 @@ // Called in life() when the mob has no client. /datum/species/proc/handle_npc(var/mob/living/carbon/human/H) + if(H.stat == CONSCIOUS && H.ai_holder) + if(H.resting) + H.resting = FALSE + H.update_canmove() return // Called when lying down on a water tile. diff --git a/code/modules/mob/living/carbon/human/species/species_attack_vr.dm b/code/modules/mob/living/carbon/human/species/species_attack_vr.dm index 658a453afc..58257ae324 100644 --- a/code/modules/mob/living/carbon/human/species/species_attack_vr.dm +++ b/code/modules/mob/living/carbon/human/species/species_attack_vr.dm @@ -43,4 +43,18 @@ if(5) user.visible_message("[user]'s fangs sink deep into [target]'s [affecting.name], one of their veins bulging outwards from the sudden fluid pumped into it!") to_chat(target, "Your [affecting.name] feels like it's going to burst! Moments later, you simply can't feel your [affecting.name] any longer, the numbness slowly spreading throughout your body!") - target.bloodstr.add_reagent("numbenzyme",attack_damage) \ No newline at end of file + target.bloodstr.add_reagent("numbenzyme",attack_damage) + +/datum/unarmed_attack/claws/shadekin + var/energy_gain = 3 + +/datum/unarmed_attack/claws/shadekin/show_attack(var/mob/living/carbon/human/user, var/mob/living/carbon/human/target, var/zone, var/attack_damage) + ..() + user.shadekin_adjust_energy(energy_gain) + +/datum/unarmed_attack/bite/sharp/shadekin + var/energy_gain = 3 + +/datum/unarmed_attack/bite/sharp/shadekin/show_attack(var/mob/living/carbon/human/user, var/mob/living/carbon/human/target, var/zone, var/attack_damage) + ..() + user.shadekin_adjust_energy(energy_gain) \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/species_getters.dm b/code/modules/mob/living/carbon/human/species/species_getters.dm index efb053eddf..421d614882 100644 --- a/code/modules/mob/living/carbon/human/species/species_getters.dm +++ b/code/modules/mob/living/carbon/human/species/species_getters.dm @@ -50,8 +50,10 @@ if(H) if(H.looksSynthetic()) return "flashing a 'system offline' light" - else + else if(!H.ai_holder) return show_ssd + else + return /datum/species/proc/get_blood_colour(var/mob/living/carbon/human/H) if(H) diff --git a/code/modules/mob/living/carbon/human/species/station/monkey.dm b/code/modules/mob/living/carbon/human/species/station/monkey.dm index dcc31ab77a..587f4d918d 100644 --- a/code/modules/mob/living/carbon/human/species/station/monkey.dm +++ b/code/modules/mob/living/carbon/human/species/station/monkey.dm @@ -62,6 +62,8 @@ if(prob(1)) H.emote(pick("scratch","jump","roll","tail")) + ..() + /datum/species/monkey/get_random_name() return "[lowertext(name)] ([rand(100,999)])" diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm index 6e82989780..2a122f9281 100644 --- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm +++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm @@ -17,9 +17,9 @@ // ai_inactive = TRUE //Always off //VORESTATION AI TEMPORARY REMOVAL show_stat_health = FALSE //We will do it ourselves - response_help = "pats the" - response_disarm = "gently pushes aside the" - response_harm = "hits the" + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "hits" harm_intent_damage = 2 melee_damage_lower = 10 diff --git a/code/modules/mob/living/carbon/human/species/station/seromi.dm b/code/modules/mob/living/carbon/human/species/station/seromi.dm index 045779bddc..01e94f8954 100644 --- a/code/modules/mob/living/carbon/human/species/station/seromi.dm +++ b/code/modules/mob/living/carbon/human/species/station/seromi.dm @@ -28,7 +28,7 @@ flesh_color = "#5F7BB0" base_color = "#001144" tail = "seromitail" - //tail_hair = "feathers" //TESHARI TEMPORARY REMOVAL + //tail_hair = "feathers" //VORESTATION TESHARI TEMPORARY REMOVAL reagent_tag = IS_TESHARI move_trail = /obj/effect/decal/cleanable/blood/tracks/paw 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 0d0328bd51..f66a4061d8 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 @@ -167,13 +167,13 @@ switch(halpick) if(0 to 15) //15% chance //Screwy HUD - //src << "Screwy HUD" + //to_chat(src, "Screwy HUD") hal_screwyhud = pick(1,2,3,3,4,4) spawn(rand(100,250)) hal_screwyhud = 0 if(16 to 25) //10% chance //Strange items - //src << "Traitor Items" + //to_chat(src, "Traitor Items") if(!halitem) halitem = new var/list/slots_free = list(ui_lhand,ui_rhand) @@ -221,7 +221,7 @@ halitem = null if(26 to 35) //10% chance //Flashes of danger - //src << "Danger Flash" + //to_chat(src, "Danger Flash") if(!halimage) var/list/possible_points = list() for(var/turf/simulated/floor/F in view(src,world.view)) @@ -231,13 +231,13 @@ switch(rand(1,3)) if(1) - //src << "Space" + //to_chat(src, "Space") halimage = image('icons/turf/space.dmi',target,"[rand(1,25)]",TURF_LAYER) if(2) - //src << "Fire" + //to_chat(src, "Fire") halimage = image('icons/effects/fire.dmi',target,"1",TURF_LAYER) if(3) - //src << "C4" + //to_chat(src, "C4") halimage = image('icons/obj/assemblies.dmi',target,"plastic-explosive2",OBJ_LAYER+0.01) @@ -248,7 +248,7 @@ if(36 to 55) //20% chance //Strange audio - //src << "Strange Audio" + //to_chat(src, "Strange Audio") switch(rand(1,12)) if(1) src << 'sound/machines/airlock.ogg' if(2) @@ -282,7 +282,7 @@ src << pick(creepyasssounds) if(56 to 60) //5% chance //Flashes of danger - //src << "Danger Flash" + //to_chat(src, "Danger Flash") if(!halbody) var/list/possible_points = list() for(var/turf/simulated/floor/F in view(src,world.view)) @@ -358,7 +358,7 @@ return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot bite anyone in your current state!" + to_chat(src, "You cannot bite anyone in your current state!") return var/list/choices = list() @@ -376,10 +376,10 @@ if(last_special > world.time) return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot bite in your current state." + to_chat(src, "You cannot bite in your current state.") return if(B.vessel.total_volume <= 0 || B.isSynthetic()) //Do they have any blood in the first place, and are they synthetic? - src << "There appears to be no blood in this prey..." + to_chat(src, "There appears to be no blood in this prey...") return last_special = world.time + 600 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 b1fae43ce2..d9cb2ed10e 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 @@ -410,6 +410,9 @@ base_color = "#EECEB3" wikilink="https://wiki.vore-station.net/Human" +/datum/species/human/vatgrown + spawn_flags = SPECIES_IS_RESTRICTED + /datum/species/vox gluttonous = 0 spawn_flags = SPECIES_CAN_JOIN | SPECIES_IS_WHITELISTED | SPECIES_WHITELIST_SELECTABLE @@ -460,5 +463,113 @@ datum/species/harpy "Your overheated skin itches." ) -/datum/species/human/vatgrown - spawn_flags = SPECIES_IS_RESTRICTED +/datum/species/crew_shadekin + name = SPECIES_SHADEKIN_CREW + name_plural = "Black-Eyed Shadekin" + icobase = 'icons/mob/human_races/r_shadekin_vr.dmi' + deform = 'icons/mob/human_races/r_shadekin_vr.dmi' + tail = "tail" + icobase_tail = 1 + blurb = "Very little is known about these creatures. They appear to be largely mammalian in appearance. \ + Seemingly very rare to encounter, there have been widespread myths of these creatures the galaxy over, \ + but next to no verifiable evidence to their existence. However, they have recently been more verifiably \ + documented in the Virgo system, following a mining bombardment of Virgo 3. The crew of NSB Adephagia have \ + taken to calling these creatures 'Shadekin', and the name has generally stuck and spread. " //TODO: Something more fitting for black-eyes + wikilink = "https://wiki.vore-station.net/Shadekin" + catalogue_data = list(/datum/category_item/catalogue/fauna/shadekin) + + language = LANGUAGE_SHADEKIN + name_language = LANGUAGE_SHADEKIN + species_language = LANGUAGE_SHADEKIN + secondary_langs = list(LANGUAGE_SHADEKIN) + num_alternate_languages = 3 + unarmed_types = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws, /datum/unarmed_attack/bite/sharp) + rarity_value = 5 //INTERDIMENSIONAL FLUFFERS + + siemens_coefficient = 0 + darksight = 10 + + slowdown = 0.5 + item_slowdown_mod = 1.5 + + total_health = 75 + brute_mod = 1.25 // Frail + burn_mod = 1.25 // Furry + blood_volume = 500 + hunger_factor = 0.2 + + warning_low_pressure = 50 + hazard_low_pressure = -1 + + warning_high_pressure = 300 + hazard_high_pressure = INFINITY + + cold_level_1 = -1 //Immune to cold + cold_level_2 = -1 + cold_level_3 = -1 + + heat_level_1 = 850 //Resistant to heat + heat_level_2 = 1000 + heat_level_3 = 1150 + + flags = NO_SCAN + spawn_flags = SPECIES_CAN_JOIN | SPECIES_IS_WHITELISTED | SPECIES_WHITELIST_SELECTABLE + + reagent_tag = IS_SHADEKIN // for shadekin-unqiue chem interactions + + flesh_color = "#FFC896" + blood_color = "#A10808" + base_color = "#f0f0f0" + color_mult = 1 + + inherent_verbs = list(/mob/living/proc/shred_limb) + + has_glowing_eyes = TRUE + + male_cough_sounds = null + female_cough_sounds = null + male_sneeze_sound = null + female_sneeze_sound = null + + speech_bubble_appearance = "ghost" + + genders = list(PLURAL, NEUTER) //no sexual dymorphism + ambiguous_genders = TRUE //but just in case + + breath_type = null + poison_type = null + + appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_SKIN_COLOR | HAS_UNDERWEAR + + move_trail = /obj/effect/decal/cleanable/blood/tracks/paw + + has_organ = list( + O_HEART = /obj/item/organ/internal/heart, + O_VOICE = /obj/item/organ/internal/voicebox, + O_LIVER = /obj/item/organ/internal/liver, + O_KIDNEYS = /obj/item/organ/internal/kidneys, + O_BRAIN = /obj/item/organ/internal/brain, + O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine + ) + + has_limbs = list( + BP_TORSO = list("path" = /obj/item/organ/external/chest/crewkin), + BP_GROIN = list("path" = /obj/item/organ/external/groin/crewkin), + BP_HEAD = list("path" = /obj/item/organ/external/head/vr/crewkin), + BP_L_ARM = list("path" = /obj/item/organ/external/arm/crewkin), + BP_R_ARM = list("path" = /obj/item/organ/external/arm/right/crewkin), + BP_L_LEG = list("path" = /obj/item/organ/external/leg/crewkin), + BP_R_LEG = list("path" = /obj/item/organ/external/leg/right/crewkin), + BP_L_HAND = list("path" = /obj/item/organ/external/hand/crewkin), + BP_R_HAND = list("path" = /obj/item/organ/external/hand/right/crewkin), + BP_L_FOOT = list("path" = /obj/item/organ/external/foot/crewkin), + BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right/crewkin) + ) + +/datum/species/shadekin/get_bodytype() + return SPECIES_SHADEKIN + +/datum/species/shadekin/can_breathe_water() + return TRUE //they dont quite breathe \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm b/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm index cc7cd7ef85..20255bbae9 100644 --- a/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm +++ b/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm @@ -22,20 +22,20 @@ var/obj/item/organ/internal/xenos/plasmavessel/P = internal_organs_by_name[O_PLASMA] if(!istype(P)) - src << "Your plasma vessel has been removed!" + to_chat(src, "Your plasma vessel has been removed!") return if(needs_organ) var/obj/item/organ/internal/I = internal_organs_by_name[needs_organ] if(!I) - src << "Your [needs_organ] has been removed!" + to_chat(src, "Your [needs_organ] has been removed!") return else if((I.status & ORGAN_CUT_AWAY) || I.is_broken()) - src << "Your [needs_organ] is too damaged to function!" + to_chat(src, "Your [needs_organ] is too damaged to function!") return if(P.stored_plasma < cost) - src << "You don't have enough phoron stored to do that." + to_chat(src, "You don't have enough phoron stored to do that.") return 0 if(needs_foundation) @@ -46,7 +46,7 @@ if(!(istype(T,/turf/space))) has_foundation = 1 if(!has_foundation) - src << "You need a solid foundation to do that on." + to_chat(src, "You need a solid foundation to do that on.") return 0 P.stored_plasma -= cost @@ -59,12 +59,12 @@ set category = "Abilities" if (get_dist(src,M) <= 1) - src << "You need to be closer." + to_chat(src, "You need to be closer.") return var/obj/item/organ/internal/xenos/plasmavessel/I = M.internal_organs_by_name[O_PLASMA] if(!istype(I)) - src << "Their plasma vessel is missing." + to_chat(src, "Their plasma vessel is missing.") return var/amount = input("Amount:", "Transfer Plasma to [M]") as num @@ -73,7 +73,7 @@ if(check_alien_ability(amount,0,O_PLASMA)) M.gain_plasma(amount) M << "[src] has transfered [amount] plasma to you." - src << "You have transferred [amount] plasma to [M]." + to_chat(src, "You have transferred [amount] plasma to [M].") return // Queen verbs. @@ -84,12 +84,12 @@ set category = "Abilities" if(!config.aliens_allowed) - src << "You begin to lay an egg, but hesitate. You suspect it isn't allowed." + to_chat(src, "You begin to lay an egg, but hesitate. You suspect it isn't allowed.") verbs -= /mob/living/carbon/human/proc/lay_egg return if(locate(/obj/effect/alien/egg) in get_turf(src)) - src << "There's already an egg here." + to_chat(src, "There's already an egg here.") return if(check_alien_ability(75,1,O_EGG)) @@ -105,7 +105,7 @@ set category = "Abilities" if(alien_queen_exists()) - src << "We already have an active queen." + to_chat(src, "We already have an active queen.") return if(check_alien_ability(500)) @@ -121,7 +121,9 @@ if(check_alien_ability(50,1,O_RESIN)) visible_message("[src] has planted some alien weeds!") - new /obj/effect/alien/weeds/node(loc) + var/obj/O = new /obj/effect/alien/weeds/node(loc) + if(O) + O.color = "#321D37" return /mob/living/carbon/human/proc/Spit(var/atom/A) @@ -154,7 +156,7 @@ set category = "Abilities" if(!O in oview(1)) - src << "[O] is too far away." + to_chat(src, "[O] is too far away.") return // OBJ CHECK @@ -175,7 +177,7 @@ cannot_melt = 1 if(cannot_melt) - src << "You cannot dissolve this object." + to_chat(src, "You cannot dissolve this object.") return if(check_alien_ability(200,0,O_ACID)) @@ -231,7 +233,7 @@ set desc = "Secrete tough malleable resin." set category = "Abilities" - var/choice = input("Choose what you wish to shape.","Resin building") as null|anything in list("resin door","resin wall","resin membrane","resin nest") //would do it through typesof but then the player choice would have the type path and we don't want the internal workings to be exposed ICly - Urist + var/choice = input("Choose what you wish to shape.","Resin building") as null|anything in list("resin door","resin wall","resin membrane","resin nest","resin blob") //would do it through typesof but then the player choice would have the type path and we don't want the internal workings to be exposed ICly - Urist if(!choice) return @@ -239,15 +241,24 @@ return visible_message("[src] vomits up a thick purple substance and begins to shape it!", "You shape a [choice].") + + var/obj/O + switch(choice) if("resin door") - new /obj/structure/simple_door/resin(loc) + O = new /obj/structure/simple_door/resin(loc) if("resin wall") - new /obj/effect/alien/resin/wall(loc) + O = new /obj/effect/alien/resin/wall(loc) if("resin membrane") - new /obj/effect/alien/resin/membrane(loc) + O = new /obj/effect/alien/resin/membrane(loc) if("resin nest") - new /obj/structure/bed/nest(loc) + O = new /obj/structure/bed/nest(loc) + if("resin blob") + O = new /obj/item/stack/material/resin(loc) + + if(O) + O.color = "#321D37" + return /mob/living/carbon/human/proc/leap() @@ -259,7 +270,7 @@ return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot leap in your current state." + to_chat(src, "You cannot leap in your current state.") return var/list/choices = list() @@ -278,7 +289,7 @@ return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot leap in your current state." + to_chat(src, "You cannot leap in your current state.") return last_special = world.time + 75 @@ -293,7 +304,7 @@ if(status_flags & LEAPING) status_flags &= ~LEAPING if(!src.Adjacent(T)) - src << "You miss!" + to_chat(src, "You miss!") return T.Weaken(3) @@ -301,7 +312,7 @@ var/use_hand = "left" if(l_hand) if(r_hand) - src << "You need to have one hand free to grab someone." + to_chat(src, "You need to have one hand free to grab someone.") return else use_hand = "right" @@ -327,16 +338,16 @@ return if(stat || paralysis || stunned || weakened || lying) - src << "You cannot do that in your current state." + to_chat(src, "You cannot do that in your current state.") return var/obj/item/weapon/grab/G = locate() in src if(!G || !istype(G)) - src << "You are not grabbing anyone." + to_chat(src, "You are not grabbing anyone.") return if(G.state < GRAB_AGGRESSIVE) - src << "You must have an aggressive grab to gut your prey!" + to_chat(src, "You must have an aggressive grab to gut your prey!") return last_special = world.time + 50 diff --git a/code/modules/mob/living/carbon/human/species/xenomorphs/alien_species.dm b/code/modules/mob/living/carbon/human/species/xenomorphs/alien_species.dm index e8b9a070ea..9e2a949402 100644 --- a/code/modules/mob/living/carbon/human/species/xenomorphs/alien_species.dm +++ b/code/modules/mob/living/carbon/human/species/xenomorphs/alien_species.dm @@ -66,17 +66,17 @@ var/weeds_plasma_rate = 5 // Plasma regen on weeds. has_limbs = list( - BP_TORSO = list("path" = /obj/item/organ/external/chest), - BP_GROIN = list("path" = /obj/item/organ/external/groin), - BP_HEAD = list("path" = /obj/item/organ/external/head/no_eyes), - BP_L_ARM = list("path" = /obj/item/organ/external/arm), - BP_R_ARM = list("path" = /obj/item/organ/external/arm/right), - BP_L_LEG = list("path" = /obj/item/organ/external/leg), - BP_R_LEG = list("path" = /obj/item/organ/external/leg/right), - BP_L_HAND = list("path" = /obj/item/organ/external/hand), - BP_R_HAND = list("path" = /obj/item/organ/external/hand/right), - BP_L_FOOT = list("path" = /obj/item/organ/external/foot), - BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right) + BP_TORSO = list("path" = /obj/item/organ/external/chest/unseverable/xeno), + BP_GROIN = list("path" = /obj/item/organ/external/groin/unseverable/xeno), + BP_HEAD = list("path" = /obj/item/organ/external/head/unseverable/xeno), + BP_L_ARM = list("path" = /obj/item/organ/external/arm/unseverable/xeno), + BP_R_ARM = list("path" = /obj/item/organ/external/arm/right/unseverable/xeno), + BP_L_LEG = list("path" = /obj/item/organ/external/leg/unseverable/xeno), + BP_R_LEG = list("path" = /obj/item/organ/external/leg/right/unseverable/xeno), + BP_L_HAND = list("path" = /obj/item/organ/external/hand/unseverable/xeno), + BP_R_HAND = list("path" = /obj/item/organ/external/hand/right/unseverable/xeno), + BP_L_FOOT = list("path" = /obj/item/organ/external/foot/unseverable/xeno), + BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right/unseverable/xeno) ) /datum/species/xenos/get_bodytype() @@ -136,7 +136,7 @@ H.adjustOxyLoss(-heal_rate) H.adjustToxLoss(-heal_rate) if (prob(5)) - H << "You feel a soothing sensation come over you..." + H << "You feel a soothing sensation come over you..." return 1 //next internal organs @@ -144,7 +144,7 @@ if(I.damage > 0) I.damage = max(I.damage - heal_rate, 0) if (prob(5)) - H << "You feel a soothing sensation within your [I.parent_organ]..." + H << "You feel a soothing sensation within your [I.parent_organ]..." return 1 //next mend broken bones, approx 10 ticks each @@ -152,7 +152,7 @@ if (E.status & ORGAN_BROKEN) if (prob(mend_prob)) if (E.mend_fracture()) - H << "You feel something mend itself inside your [E.name]." + H << "You feel something mend itself inside your [E.name]." return 1 return 0 diff --git a/code/modules/mob/living/carbon/lick_wounds.dm b/code/modules/mob/living/carbon/lick_wounds.dm index 4c992e772c..c712448f8a 100644 --- a/code/modules/mob/living/carbon/lick_wounds.dm +++ b/code/modules/mob/living/carbon/lick_wounds.dm @@ -9,7 +9,7 @@ if ( ! (istype(src, /mob/living/carbon/human) || \ istype(src, /mob/living/silicon)) ) - src << "If you even have a tongue, it doesn't work that way." + to_chat(src, "If you even have a tongue, it doesn't work that way.") return if (istype(M, /mob/living/carbon/human)) diff --git a/code/modules/mob/living/carbon/metroid/emote.dm b/code/modules/mob/living/carbon/metroid/emote.dm index 6375f23b2a..6fccaddb8f 100644 --- a/code/modules/mob/living/carbon/metroid/emote.dm +++ b/code/modules/mob/living/carbon/metroid/emote.dm @@ -16,7 +16,7 @@ return if (src.client) if (client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (stat) return @@ -83,10 +83,10 @@ updateicon = 1 if ("help") //This is an exception - src << "Help for slime emotes. You can use these emotes with say \"*emote\":\n\nbounce, custom, jiggle, light, moan, shiver, sway, twitch, vibrate. You can also set your face with: \n\nnomood, pout, sad, angry, frown, smile" + to_chat(src, "Help for slime emotes. You can use these emotes with say \"*emote\":\n\nbounce, custom, jiggle, light, moan, shiver, sway, twitch, vibrate. You can also set your face with: \n\nnomood, pout, sad, angry, frown, smile") else - src << "Unusable emote '[act]'. Say *help for a list." + to_chat(src, "Unusable emote '[act]'. Say *help for a list.") if ((message && src.stat == 0)) if (m_type & 1) for(var/mob/O in viewers(src, null)) diff --git a/code/modules/mob/living/carbon/metroid/life.dm b/code/modules/mob/living/carbon/metroid/life.dm index 5cf6395b7d..f11d9d137d 100644 --- a/code/modules/mob/living/carbon/metroid/life.dm +++ b/code/modules/mob/living/carbon/metroid/life.dm @@ -149,7 +149,7 @@ nutrition = 0 adjustToxLoss(rand(1,3)) if (client && prob(5)) - src << "You are starving!" + to_chat(src, "You are starving!") else if (nutrition >= get_grow_nutrition() && amount_grown < 10) nutrition -= 20 diff --git a/code/modules/mob/living/carbon/metroid/powers.dm b/code/modules/mob/living/carbon/metroid/powers.dm index 54d35a71f8..a1fc03445e 100644 --- a/code/modules/mob/living/carbon/metroid/powers.dm +++ b/code/modules/mob/living/carbon/metroid/powers.dm @@ -4,7 +4,7 @@ return if (Victim) - src << "I am already feeding..." + to_chat(src, "I am already feeding...") return var t = invalidFeedTarget(M) @@ -52,7 +52,7 @@ Victim.adjustBruteLoss(is_adult ? rand(7, 15) : rand(4, 12)) else - src << "[pick("This subject is incompatable", "This subject does not have a life energy", "This subject is empty", "I am not satisified", "I can not feed from this subject", "I do not feel nourished", "This subject is not food")]..." + to_chat(src, "[pick("This subject is incompatable", "This subject does not have a life energy", "This subject is empty", "I am not satisified", "I can not feed from this subject", "I do not feel nourished", "This subject is not food")]...") Feedstop() break @@ -92,7 +92,7 @@ ++Friends[Victim.LAssailant] else - src << "This subject does not have a strong enough life energy anymore..." + to_chat(src, "This subject does not have a strong enough life energy anymore...") Victim = null @@ -111,7 +111,7 @@ set desc = "This will let you evolve from baby to adult slime." if(stat) - src << "I must be conscious to do this..." + to_chat(src, "I must be conscious to do this...") return if(!is_adult) @@ -122,22 +122,22 @@ regenerate_icons() name = text("[colour] [is_adult ? "adult" : "baby"] slime ([number])") else - src << "I am not ready to evolve yet..." + to_chat(src, "I am not ready to evolve yet...") else - src << "I have already evolved..." + to_chat(src, "I have already evolved...") /mob/living/carbon/slime/verb/Reproduce() set category = "Slime" set desc = "This will make you split into four Slimes." if(stat) - src << "I must be conscious to do this..." + to_chat(src, "I must be conscious to do this...") return if(is_adult) if(amount_grown >= 10) if(stat) - src << "I must be conscious to do this..." + to_chat(src, "I must be conscious to do this...") return var/list/babies = list() @@ -163,6 +163,6 @@ new_slime.key = src.key qdel(src) else - src << "I am not ready to reproduce yet..." + to_chat(src, "I am not ready to reproduce yet...") else - src << "I am not old enough to reproduce yet..." + to_chat(src, "I am not old enough to reproduce yet...") diff --git a/code/modules/mob/living/carbon/resist.dm b/code/modules/mob/living/carbon/resist.dm index 1607559336..248fe5c6a6 100644 --- a/code/modules/mob/living/carbon/resist.dm +++ b/code/modules/mob/living/carbon/resist.dm @@ -135,7 +135,7 @@ update_inv_handcuffed() /mob/living/carbon/proc/break_legcuffs() - src << "You attempt to break your legcuffs. (This will take around 5 seconds and you need to stand still)" + to_chat(src, "You attempt to break your legcuffs. (This will take around 5 seconds and you need to stand still)") visible_message("[src] is trying to break the legcuffs!") if(do_after(src, 5 SECONDS, incapacitation_flags = INCAPACITATION_DEFAULT & ~INCAPACITATION_RESTRAINED)) diff --git a/code/modules/mob/living/default_language.dm b/code/modules/mob/living/default_language.dm index b9eae4b5a1..f5388f4735 100644 --- a/code/modules/mob/living/default_language.dm +++ b/code/modules/mob/living/default_language.dm @@ -17,9 +17,9 @@ to_chat(src, "You are unable to speak that language.") return - src << "You will now speak [language] if you do not specify a language when speaking." + to_chat(src, "You will now speak [language] if you do not specify a language when speaking.") else - src << "You will now speak whatever your standard default language is if you do not specify one when speaking." + to_chat(src, "You will now speak whatever your standard default language is if you do not specify one when speaking.") default_language = language // Silicons can't neccessarily speak everything in their languages list @@ -31,6 +31,6 @@ set category = "IC" if(default_language) - src << "You are currently speaking [default_language] by default." + to_chat(src, "You are currently speaking [default_language] by default.") else - src << "Your current default language is your species or mob type default." + to_chat(src, "Your current default language is your species or mob type default.") diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 6384e90466..28f5644840 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -29,15 +29,15 @@ armor = max(armor - armour_pen, 0) //Armor pen makes armor less effective. if(armor >= 100) if(absorb_text) - src << "[absorb_text]" + to_chat(src, "[absorb_text]") else - src << "Your armor absorbs the blow!" + to_chat(src, "Your armor absorbs the blow!") else if(armor > 0) if(soften_text) - src << "[soften_text]" + to_chat(src, "[soften_text]") else - src << "Your armor softens the blow!" + to_chat(src, "Your armor softens the blow!") if(Debug2) world.log << "## DEBUG: Armor when [src] was attacked was [armor]." return armor diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm index f5c9e2580e..dbfff1d8cc 100644 --- a/code/modules/mob/living/silicon/ai/ai.dm +++ b/code/modules/mob/living/silicon/ai/ai.dm @@ -182,12 +182,12 @@ var/list/ai_verbs_default = list( return /mob/living/silicon/ai/proc/on_mob_init() - src << "You are playing the station's AI. The AI cannot move, but can interact with many objects while viewing them (through cameras)." - src << "To look at other parts of the station, click on yourself to get a camera menu." - src << "While observing through a camera, you can use most (networked) devices which you can see, such as computers, APCs, intercoms, doors, etc." - src << "To use something, simply click on it." - src << "Use say #b to speak to your cyborgs through binary. Use say :h to speak from an active holopad." - src << "For department channels, use the following say commands:" + to_chat(src, "You are playing the station's AI. The AI cannot move, but can interact with many objects while viewing them (through cameras).") + to_chat(src, "To look at other parts of the station, click on yourself to get a camera menu.") + to_chat(src, "While observing through a camera, you can use most (networked) devices which you can see, such as computers, APCs, intercoms, doors, etc.") + to_chat(src, "To use something, simply click on it.") + to_chat(src, "Use say #b to speak to your cyborgs through binary. Use say :h to speak from an active holopad.") + to_chat(src, "For department channels, use the following say commands:") var/radio_text = "" for(var/i = 1 to common_radio.channels.len) @@ -207,7 +207,7 @@ var/list/ai_verbs_default = list( if (malf && !(mind in malf.current_antagonists)) show_laws() - src << "These laws may be changed by other players, or by you being the traitor." + to_chat(src, "These laws may be changed by other players, or by you being the traitor.") job = "AI" setup_icon() @@ -359,7 +359,7 @@ var/list/ai_verbs_default = list( return if(message_cooldown) - src << "Please allow one minute to pass between announcements." + to_chat(src, "Please allow one minute to pass between announcements.") return var/input = input(usr, "Please write a message to announce to the station crew.", "A.I. Announcement") if(!input) @@ -465,7 +465,7 @@ var/list/ai_verbs_default = list( if(H) H.attack_ai(src) //may as well recycle else - src << "Unable to locate the holopad." + to_chat(src, "Unable to locate the holopad.") if (href_list["track"]) var/mob/target = locate(href_list["track"]) in mob_list @@ -473,7 +473,7 @@ var/list/ai_verbs_default = list( if(target && (!istype(target, /mob/living/carbon/human) || html_decode(href_list["trackname"]) == target:get_face_name())) ai_actual_track(target) else - src << "System error. Cannot locate [html_decode(href_list["trackname"])]." + to_chat(src, "System error. Cannot locate [html_decode(href_list["trackname"])].") return return @@ -545,7 +545,7 @@ var/list/ai_verbs_default = list( if(network in C.network) eyeobj.setLoc(get_turf(C)) break - src << "Switched to [network] camera network." + to_chat(src, "Switched to [network] camera network.") //End of code by Mord_Sith /mob/living/silicon/ai/proc/ai_statuschange() @@ -680,7 +680,7 @@ var/list/ai_verbs_default = list( return camera_light_on = !camera_light_on - src << "Camera lights [camera_light_on ? "activated" : "deactivated"]." + to_chat(src, "Camera lights [camera_light_on ? "activated" : "deactivated"].") if(!camera_light_on) if(camera) camera.set_light(0) @@ -754,7 +754,7 @@ var/list/ai_verbs_default = list( if(check_unable(AI_CHECK_RADIO)) return - src << "Accessing Subspace Transceiver control..." + to_chat(src, "Accessing Subspace Transceiver control...") if (src.aiRadio) src.aiRadio.interact(src) @@ -780,18 +780,22 @@ var/list/ai_verbs_default = list( /mob/living/silicon/ai/proc/check_unable(var/flags = 0, var/feedback = 1) if(stat == DEAD) - if(feedback) src << "You are dead!" + if(feedback) + to_chat(src, "You are dead!") return 1 if(aiRestorePowerRoutine) - if(feedback) src << "You lack power!" + if(feedback) + to_chat(src, "You lack power!") return 1 if((flags & AI_CHECK_WIRELESS) && src.control_disabled) - if(feedback) src << "Wireless control is disabled!" + if(feedback) + to_chat(src, "Wireless control is disabled!") return 1 if((flags & AI_CHECK_RADIO) && src.aiRadio.disabledAi) - if(feedback) src << "System Error - Transceiver Disabled!" + if(feedback) + to_chat(src, "System Error - Transceiver Disabled!") return 1 return 0 diff --git a/code/modules/mob/living/silicon/ai/life.dm b/code/modules/mob/living/silicon/ai/life.dm index aadd82167c..0d429fa089 100644 --- a/code/modules/mob/living/silicon/ai/life.dm +++ b/code/modules/mob/living/silicon/ai/life.dm @@ -36,7 +36,7 @@ malf_process() if(APU_power && (hardware_integrity() < 50)) - src << "APU GENERATOR FAILURE! (System Damaged)" + to_chat(src, "APU GENERATOR FAILURE! (System Damaged)") stop_apu(1) var/blind = 0 @@ -55,13 +55,13 @@ src.see_invisible = SEE_INVISIBLE_LIVING if (aiRestorePowerRoutine==2) - src << "Alert cancelled. Power has been restored without our assistance." + to_chat(src, "Alert cancelled. Power has been restored without our assistance.") aiRestorePowerRoutine = 0 clear_fullscreen("blind") updateicon() return else if (aiRestorePowerRoutine==3) - src << "Alert cancelled. Power has been restored." + to_chat(src, "Alert cancelled. Power has been restored.") aiRestorePowerRoutine = 0 clear_fullscreen("blind") updateicon() @@ -89,27 +89,27 @@ //Now to tell the AI why they're blind and dying slowly. - src << "You've lost power!" + to_chat(src, "You've lost power!") disconnect_shell(message = "Disconnected from remote shell due to depowered networking interface.") spawn(20) - src << "Backup battery online. Scanners, camera, and radio interface offline. Beginning fault-detection." + to_chat(src, "Backup battery online. Scanners, camera, and radio interface offline. Beginning fault-detection.") sleep(50) if (loc.power_equip) if (!istype(T, /turf/space)) - src << "Alert cancelled. Power has been restored without our assistance." + to_chat(src, "Alert cancelled. Power has been restored without our assistance.") aiRestorePowerRoutine = 0 clear_fullscreen("blind") return - src << "Fault confirmed: missing external power. Shutting down main control system to save power." + to_chat(src, "Fault confirmed: missing external power. Shutting down main control system to save power.") sleep(20) - src << "Emergency control system online. Verifying connection to power network." + to_chat(src, "Emergency control system online. Verifying connection to power network.") sleep(50) if (istype(T, /turf/space)) - src << "Unable to verify! No power connection detected!" + to_chat(src, "Unable to verify! No power connection detected!") aiRestorePowerRoutine = 2 return - src << "Connection verified. Searching for APC in power network." + to_chat(src, "Connection verified. Searching for APC in power network.") sleep(50) var/obj/machinery/power/apc/theAPC = null @@ -121,30 +121,35 @@ break if (!theAPC) switch(PRP) - if (1) src << "Unable to locate APC!" - else src << "Lost connection with the APC!" + if (1) + to_chat(src, "Unable to locate APC!") + else + to_chat(src, "Lost connection with the APC!") src:aiRestorePowerRoutine = 2 return if (loc.power_equip) if (!istype(T, /turf/space)) - src << "Alert cancelled. Power has been restored without our assistance." + to_chat(src, "Alert cancelled. Power has been restored without our assistance.") aiRestorePowerRoutine = 0 clear_fullscreen("blind") //This, too, is a fix to issue 603 return switch(PRP) - if (1) src << "APC located. Optimizing route to APC to avoid needless power waste." - if (2) src << "Best route identified. Hacking offline APC power port." - if (3) src << "Power port upload access confirmed. Loading control program into APC power port software." + if (1) + to_chat(src, "APC located. Optimizing route to APC to avoid needless power waste.") + if (2) + to_chat(src, "Best route identified. Hacking offline APC power port.") + if (3) + to_chat(src, "Power port upload access confirmed. Loading control program into APC power port software.") if (4) - src << "Transfer complete. Forcing APC to execute program." + to_chat(src, "Transfer complete. Forcing APC to execute program.") sleep(50) - src << "Receiving control information from APC." + to_chat(src, "Receiving control information from APC.") sleep(2) theAPC.operating = 1 theAPC.equipment = 3 theAPC.update() aiRestorePowerRoutine = 3 - src << "Here are your current laws:" + to_chat(src, "Here are your current laws:") show_laws() updateicon() sleep(50) diff --git a/code/modules/mob/living/silicon/ai/malf.dm b/code/modules/mob/living/silicon/ai/malf.dm index c33563734f..7bfa714983 100644 --- a/code/modules/mob/living/silicon/ai/malf.dm +++ b/code/modules/mob/living/silicon/ai/malf.dm @@ -79,14 +79,14 @@ /mob/living/silicon/ai/proc/start_apu(var/shutup = 0) if(!hardware || !istype(hardware, /datum/malf_hardware/apu_gen)) if(!shutup) - src << "You do not have an APU generator and you shouldn't have this verb. Report this." + to_chat(src, "You do not have an APU generator and you shouldn't have this verb. Report this.") return if(hardware_integrity() < 50) if(!shutup) - src << "Starting APU... FAULT(System Damaged)" + to_chat(src, "Starting APU... FAULT(System Damaged)") return if(!shutup) - src << "Starting APU... ONLINE" + to_chat(src, "Starting APU... ONLINE") APU_power = 1 // Stops AI's APU generator @@ -97,7 +97,7 @@ if(APU_power) APU_power = 0 if(!shutup) - src << "Shutting down APU... DONE" + to_chat(src, "Shutting down APU... DONE") // Returns percentage of AI's remaining backup capacitor charge (maxhealth - oxyloss). /mob/living/silicon/ai/proc/backup_capacitor() diff --git a/code/modules/mob/living/silicon/laws.dm b/code/modules/mob/living/silicon/laws.dm index 3af4818679..39e11e4802 100644 --- a/code/modules/mob/living/silicon/laws.dm +++ b/code/modules/mob/living/silicon/laws.dm @@ -17,7 +17,7 @@ /mob/living/silicon/robot/set_zeroth_law(var/law, var/law_borg) ..() if(tracking_entities) - src << "Internal camera is currently being accessed." + to_chat(src, "Internal camera is currently being accessed.") /mob/living/silicon/proc/add_ion_law(var/law) laws_sanity_check() @@ -70,7 +70,7 @@ /mob/living/silicon/proc/dostatelaws(var/method, var/prefix, var/datum/ai_laws/laws) if(stating_laws[prefix]) - src << "[method]: Already stating laws using this communication method." + to_chat(src, "[method]: Already stating laws using this communication method.") return stating_laws[prefix] = 1 @@ -83,7 +83,7 @@ break if(!can_state) - src << "[method]: Unable to state laws. Communication method unavailable." + to_chat(src, "[method]: Unable to state laws. Communication method unavailable.") stating_laws[prefix] = 0 /mob/living/silicon/proc/statelaw(var/law) diff --git a/code/modules/mob/living/silicon/pai/examine.dm b/code/modules/mob/living/silicon/pai/examine.dm index 876b9aacf1..11a970cfe8 100644 --- a/code/modules/mob/living/silicon/pai/examine.dm +++ b/code/modules/mob/living/silicon/pai/examine.dm @@ -19,7 +19,7 @@ if(print_flavor_text()) msg += "\n[print_flavor_text()]\n" if (pose) - if( findtext(pose,".",lentext(pose)) == 0 && findtext(pose,"!",lentext(pose)) == 0 && findtext(pose,"?",lentext(pose)) == 0 ) + if( findtext(pose,".",length(pose)) == 0 && findtext(pose,"!",length(pose)) == 0 && findtext(pose,"?",length(pose)) == 0 ) pose = addtext(pose,".") //Makes sure all emotes end with a period. msg += "\nIt is [pose]" diff --git a/code/modules/mob/living/silicon/pai/life.dm b/code/modules/mob/living/silicon/pai/life.dm index 74fad44fb3..42888a3827 100644 --- a/code/modules/mob/living/silicon/pai/life.dm +++ b/code/modules/mob/living/silicon/pai/life.dm @@ -19,7 +19,7 @@ if(silence_time) if(world.timeofday >= silence_time) silence_time = null - src << "Communication circuit reinitialized. Speech and messaging functionality restored." + to_chat(src, "Communication circuit reinitialized. Speech and messaging functionality restored.") handle_statuses() diff --git a/code/modules/mob/living/silicon/pai/pai.dm b/code/modules/mob/living/silicon/pai/pai.dm index b6d4052a5f..eb50caab6f 100644 --- a/code/modules/mob/living/silicon/pai/pai.dm +++ b/code/modules/mob/living/silicon/pai/pai.dm @@ -35,8 +35,14 @@ "Fox" = "pai-fox", "Parrot" = "pai-parrot", "Rabbit" = "pai-rabbit", - "Bear" = "pai-bear", //VOREStation Edit - "Fennec" = "pai-fen" // VOREStation Edit - Rykka + //VOREStation Addition Start + "Bear" = "pai-bear", + "Fennec" = "pai-fen", + "Type Zero" = "pai-typezero", + "Raccoon" = "pai-raccoon", + "Rat" = "rat", + "Panther" = "panther" + //VOREStation Addition End ) var/global/list/possible_say_verbs = list( @@ -45,7 +51,8 @@ "Beep" = list("beeps","beeps loudly","boops"), "Chirp" = list("chirps","chirrups","cheeps"), "Feline" = list("purrs","yowls","meows"), - "Canine" = list("yaps","barks","woofs") + "Canine" = list("yaps","barks","woofs"), + "Rodent" = list("squeaks", "SQUEAKS", "sqiks") //VOREStation Edit - TFF 22/11/19 - CHOMPStation port of pAI additions, ) var/obj/item/weapon/pai_cable/cable // The cable we produce and use when door or camera jacking @@ -155,7 +162,7 @@ // 33% chance of no additional effect src.silence_time = world.timeofday + 120 * 10 // Silence for 2 minutes - src << "Communication circuit overload. Shutting down and reloading communication circuits - speech and messaging functionality will be unavailable until the reboot is complete." + to_chat(src, "Communication circuit overload. Shutting down and reloading communication circuits - speech and messaging functionality will be unavailable until the reboot is complete.") if(prob(20)) var/turf/T = get_turf_or_move(src.loc) for (var/mob/M in viewers(T)) @@ -166,7 +173,7 @@ if(1) src.master = null src.master_dna = null - src << "You feel unbound." + to_chat(src, "You feel unbound.") if(2) var/command if(severity == 1) @@ -174,9 +181,9 @@ else command = pick("Serve", "Kill", "Love", "Hate", "Disobey", "Devour", "Fool", "Enrage", "Entice", "Observe", "Judge", "Respect", "Disrespect", "Consume", "Educate", "Destroy", "Disgrace", "Amuse", "Entertain", "Ignite", "Glorify", "Memorialize", "Analyze") src.pai_law0 = "[command] your master." - src << "Pr1m3 d1r3c71v3 uPd473D." + to_chat(src, "Pr1m3 d1r3c71v3 uPd473D.") if(3) - src << "You feel an electric surge run through your circuitry and become acutely aware at how lucky you are that you can still feel at all." + to_chat(src, "You feel an electric surge run through your circuitry and become acutely aware at how lucky you are that you can still feel at all.") /mob/living/silicon/pai/proc/switchCamera(var/obj/machinery/camera/C) if (!C) @@ -234,7 +241,7 @@ cameralist[C.network] = C.network src.network = input(usr, "Which network would you like to view?") as null|anything in cameralist - src << "Switched to [src.network] camera network." + to_chat(src, "Switched to [src.network] camera network.") //End of code by Mord_Sith */ @@ -270,7 +277,7 @@ //I'm not sure how much of this is necessary, but I would rather avoid issues. if(istype(card.loc,/obj/item/rig_module)) - src << "There is no room to unfold inside this rig module. You're good and stuck." + to_chat(src, "There is no room to unfold inside this rig module. You're good and stuck.") return 0 else if(istype(card.loc,/mob)) var/mob/holder = card.loc @@ -319,6 +326,8 @@ close_up() +//VOREStation Removal Start - TFF 22/11/19 - Refactored in pai_vr.dm +/* /mob/living/silicon/pai/proc/choose_chassis() set category = "pAI Commands" set name = "Choose Chassis" @@ -335,6 +344,8 @@ chassis = possible_chassis[choice] verbs |= /mob/living/proc/hide +//VOREStation Removal End +*/ /mob/living/silicon/pai/proc/choose_verbs() set category = "pAI Commands" @@ -362,7 +373,7 @@ resting = !resting icon_state = resting ? "[chassis]_rest" : "[chassis]" update_icon() //VOREStation edit - src << "You are now [resting ? "resting" : "getting up"]" + to_chat(src, "You are now [resting ? "resting" : "getting up"]") canmove = !resting @@ -466,11 +477,11 @@ if(idaccessible == 0) idaccessible = 1 - src << "You allow access modifications." + to_chat(src, "You allow access modifications.") else idaccessible = 0 - src << "You block access modfications." + to_chat(src, "You block access modfications.") /mob/living/silicon/pai/verb/wipe_software() set name = "Wipe Software" diff --git a/code/modules/mob/living/silicon/pai/pai_vr.dm b/code/modules/mob/living/silicon/pai/pai_vr.dm index c5de247595..def701a486 100644 --- a/code/modules/mob/living/silicon/pai/pai_vr.dm +++ b/code/modules/mob/living/silicon/pai/pai_vr.dm @@ -1,6 +1,11 @@ /mob/living/silicon/pai var/people_eaten = 0 icon = 'icons/mob/pai_vr.dmi' + //TFF 22/11/19 - CHOMPStation port of pAI additions. + var/global/list/wide_chassis = list( + "rat", + "panther" + ) /mob/living/silicon/pai/proc/pai_nom(var/mob/living/T in oview(1)) set name = "pAI Nom" @@ -31,6 +36,14 @@ else if(people_eaten && resting) icon_state = "[chassis]_rest_full" + //TFF 22/11/19 - CHOMPStation port of pAI additions. + if(chassis in wide_chassis) + icon = 'icons/mob/pai_vr64x64.dmi' + pixel_x = -16 + else + icon = 'icons/mob/pai_vr.dmi' + pixel_x = 0 + /mob/living/silicon/pai/update_icons() //And other functions cause this to occur, such as digesting someone. ..() update_fullness_pai() @@ -42,3 +55,22 @@ icon_state = "[chassis]_full" else if(people_eaten && resting) icon_state = "[chassis]_rest_full" + + //TFF 22/11/19 - CHOMPStation port of pAI additions. + if(chassis in wide_chassis) + icon = 'icons/mob/pai_vr64x64.dmi' + pixel_x = -16 + else + icon = 'icons/mob/pai_vr.dmi' + pixel_x = 0 +//proc override to avoid pAI players being invisible while the chassis selection window is open +/mob/living/silicon/pai/proc/choose_chassis() + set category = "pAI Commands" + set name = "Choose Chassis" + var/choice + + choice = input(usr,"What would you like to use for your mobile chassis icon?") as null|anything in possible_chassis + if(!choice) return + chassis = possible_chassis[choice] + verbs |= /mob/living/proc/hide + update_icon() diff --git a/code/modules/mob/living/silicon/pai/say.dm b/code/modules/mob/living/silicon/pai/say.dm index e1cb9f0f80..2c7bc900d6 100644 --- a/code/modules/mob/living/silicon/pai/say.dm +++ b/code/modules/mob/living/silicon/pai/say.dm @@ -1,5 +1,5 @@ /mob/living/silicon/pai/say(var/msg) if(silence_time) - src << "Communication circuits remain uninitialized." + to_chat(src, "Communication circuits remain uninitialized.") else ..(msg) \ No newline at end of file diff --git a/code/modules/mob/living/silicon/pai/software_modules.dm b/code/modules/mob/living/silicon/pai/software_modules.dm index dad52893cf..b5305de2ee 100644 --- a/code/modules/mob/living/silicon/pai/software_modules.dm +++ b/code/modules/mob/living/silicon/pai/software_modules.dm @@ -56,7 +56,7 @@ while(!istype(M, /mob/living)) if(!M || !M.loc || count > 6) //For a runtime where M ends up in nullspace (similar to bluespace but less colourful) - src << "You are not being carried by anyone!" + to_chat(src, "You are not being carried by anyone!") return 0 M = M.loc count++ diff --git a/code/modules/mob/living/silicon/robot/drone/drone.dm b/code/modules/mob/living/silicon/robot/drone/drone.dm index 9609fd6c0a..ec7d840663 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone.dm @@ -60,6 +60,8 @@ var/list/mob_hat_cache = list() var/serial_number = 0 var/name_override = 0 + var/foreign_droid = FALSE + holder_type = /obj/item/weapon/holder/drone can_be_antagged = FALSE @@ -117,7 +119,8 @@ var/list/mob_hat_cache = list() updatename() /mob/living/silicon/robot/drone/init() - aiCamera = new/obj/item/device/camera/siliconcam/drone_camera(src) + if(!scrambledcodes && !foreign_droid) + aiCamera = new/obj/item/device/camera/siliconcam/drone_camera(src) additional_law_channels["Drone"] = ":d" if(!laws) laws = new law_type if(!module) module = new module_type(src) @@ -252,10 +255,10 @@ var/list/mob_hat_cache = list() //For some goddamn reason robots have this hardcoded. Redefining it for our fragile friends here. /mob/living/silicon/robot/drone/updatehealth() if(status_flags & GODMODE) - health = 35 + health = maxHealth stat = CONSCIOUS return - health = 35 - (getBruteLoss() + getFireLoss()) + health = maxHealth - (getBruteLoss() + getFireLoss()) return //Easiest to check this here, then check again in the robot proc. @@ -329,15 +332,15 @@ var/list/mob_hat_cache = list() player.mob.mind.transfer_to(src) lawupdate = 0 - src << "Systems rebooted. Loading base pattern maintenance protocol... loaded." + to_chat(src, "Systems rebooted. Loading base pattern maintenance protocol... loaded.") full_law_reset() welcome_drone() /mob/living/silicon/robot/drone/proc/welcome_drone() - src << "You are a maintenance drone, a tiny-brained robotic repair machine." - src << "You have no individual will, no personality, and no drives or urges other than your laws." - src << "Remember, you are lawed against interference with the crew. Also remember, you DO NOT take orders from the AI." - src << "Use say ;Hello to talk to other drones and say Hello to speak silently to your nearby fellows." + to_chat(src, "You are a maintenance drone, a tiny-brained robotic repair machine.") + to_chat(src, "You have no individual will, no personality, and no drives or urges other than your laws.") + to_chat(src, "Remember, you are lawed against interference with the crew. Also remember, you DO NOT take orders from the AI.") + to_chat(src, "Use say ;Hello to talk to other drones and say Hello to speak silently to your nearby fellows.") /mob/living/silicon/robot/drone/add_robot_verbs() src.verbs |= silicon_subsystems @@ -346,10 +349,10 @@ var/list/mob_hat_cache = list() src.verbs -= silicon_subsystems /mob/living/silicon/robot/drone/construction/welcome_drone() - src << "You are a construction drone, an autonomous engineering and fabrication system.." - src << "You are assigned to a Sol Central construction project. The name is irrelevant. Your task is to complete construction and subsystem integration as soon as possible." - src << "Use :d to talk to other drones and say to speak silently to your nearby fellows." - src << "You do not follow orders from anyone; not the AI, not humans, and not other synthetics.." + to_chat(src, "You are a construction drone, an autonomous engineering and fabrication system..") + to_chat(src, "You are assigned to a Sol Central construction project. The name is irrelevant. Your task is to complete construction and subsystem integration as soon as possible.") + to_chat(src, "Use :d to talk to other drones and say to speak silently to your nearby fellows.") + to_chat(src, "You do not follow orders from anyone; not the AI, not humans, and not other synthetics..") /mob/living/silicon/robot/drone/construction/init() ..() diff --git a/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm b/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm index 2595d451c1..6d28b6ce61 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm @@ -10,13 +10,13 @@ mail_destination = "" return - src << "You configure your internal beacon, tagging yourself for delivery to '[new_tag]'." + to_chat(src, "You configure your internal beacon, tagging yourself for delivery to '[new_tag]'.") mail_destination = new_tag //Auto flush if we use this verb inside a disposal chute. var/obj/machinery/disposal/D = src.loc if(istype(D)) - src << "\The [D] acknowledges your signal." + to_chat(src, "\The [D] acknowledges your signal.") D.flush_count = D.flush_every_ticks return diff --git a/code/modules/mob/living/silicon/robot/drone/drone_console.dm b/code/modules/mob/living/silicon/robot/drone/drone_console.dm index e75aeead65..5142692d7d 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_console.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_console.dm @@ -29,6 +29,9 @@ for(var/mob/living/silicon/robot/drone/D in mob_list) if(D.z != src.z) continue + if(D.foreign_droid) + continue + dat += "
[D.real_name] ([D.stat == 2 ? "INACTIVE" : "ACTIVE"])" dat += "
Cell charge: [D.cell.charge]/[D.cell.maxcharge]." dat += "
Currently located in: [get_area(D)]." 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 51711a0019..f3f6122ea8 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_items.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_items.dm @@ -56,6 +56,22 @@ /obj/item/weapon/stock_parts ) +/obj/item/weapon/gripper/security + name = "security gripper" + desc = "A simple grasping tool for corporate security work." + icon_state = "gripper-sec" + + can_hold = list( + /obj/item/weapon/paper, + /obj/item/weapon/paper_bundle, + /obj/item/weapon/pen, + /obj/item/weapon/sample, + /obj/item/weapon/forensics/sample_kit, + /obj/item/device/taperecorder, + /obj/item/device/tape, + /obj/item/device/uv_light + ) + /obj/item/weapon/gripper/paperwork name = "paperwork gripper" desc = "A simple grasping tool for clerical work." diff --git a/code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm b/code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm index fdb9c09eb5..6bd956c4cc 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm @@ -65,7 +65,7 @@ /obj/machinery/drone_fabricator/examine(mob/user) ..(user) if(produce_drones && drone_progress >= 100 && istype(user,/mob/observer/dead) && config.allow_drone_spawn && count_drones() < config.max_maint_drones) - user << "
A drone is prepared. Select 'Join As Drone' from the Ghost tab to spawn as a maintenance drone." + to_chat(user, "
A drone is prepared. Select 'Join As Drone' from the Ghost tab to spawn as a maintenance drone.") /obj/machinery/drone_fabricator/proc/create_drone(var/client/player) @@ -99,11 +99,11 @@ set desc = "If there is a powered, enabled fabricator in the game world with a prepared chassis, join as a maintenance drone." if(ticker.current_state < GAME_STATE_PLAYING) - src << "The game hasn't started yet!" + to_chat(src, "The game hasn't started yet!") return if(!(config.allow_drone_spawn)) - src << "That verb is not currently permitted." + to_chat(src, "That verb is not currently permitted.") return if (!src.stat) @@ -113,14 +113,14 @@ return 0 //something is terribly wrong if(jobban_isbanned(src,"Cyborg")) - usr << "You are banned from playing synthetics and cannot spawn as a drone." + to_chat(usr, "You are banned from playing synthetics and cannot spawn as a drone.") return if(!MayRespawn(1)) return var/deathtime = world.time - src.timeofdeath - var/deathtimeminutes = round(deathtime / 600) + var/deathtimeminutes = round(deathtime / (1 MINUTE)) var/pluralcheck = "minute" if(deathtimeminutes == 0) pluralcheck = "" @@ -128,11 +128,11 @@ pluralcheck = " [deathtimeminutes] minute and" else if(deathtimeminutes > 1) pluralcheck = " [deathtimeminutes] minutes and" - var/deathtimeseconds = round((deathtime - deathtimeminutes * 600) / 10,1) + var/deathtimeseconds = round((deathtime - deathtimeminutes * 1 MINUTE) / 10,1) - if (deathtime < 6000) - usr << "You have been dead for[pluralcheck] [deathtimeseconds] seconds." - usr << "You must wait 10 minutes to respawn as a drone!" + if (deathtime < 5 MINUTES) + to_chat(usr, "You have been dead for[pluralcheck] [deathtimeseconds] seconds.") + to_chat(usr, "You must wait 5 minutes to respawn as a drone!") return var/list/all_fabricators = list() @@ -143,7 +143,7 @@ all_fabricators[DF.fabricator_tag] = DF if(!all_fabricators.len) - src << "There are no available drone spawn points, sorry." + to_chat(src, "There are no available drone spawn points, sorry.") return var/choice = input(src,"Which fabricator do you wish to use?") as null|anything in all_fabricators diff --git a/code/modules/mob/living/silicon/robot/drone/drone_say.dm b/code/modules/mob/living/silicon/robot/drone/drone_say.dm index 5cdcd3dbd8..26a78351ef 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_say.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_say.dm @@ -2,7 +2,7 @@ if(local_transmit) if (src.client) if(client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return 0 message = sanitize(message) diff --git a/code/modules/mob/living/silicon/robot/drone/swarm.dm b/code/modules/mob/living/silicon/robot/drone/swarm.dm new file mode 100644 index 0000000000..f48993caa2 --- /dev/null +++ b/code/modules/mob/living/silicon/robot/drone/swarm.dm @@ -0,0 +1,98 @@ +/mob/living/silicon/robot/drone/swarm + name = "swarm drone" + real_name = "drone" + icon = 'icons/mob/swarmbot.dmi' + icon_state = "swarmer" + faction = "swarmer" + maxHealth = 75 + health = 75 + cell_emp_mult = 0.5 + universal_speak = 0 + universal_understand = 1 + gender = NEUTER + pass_flags = PASSTABLE + braintype = "Drone" + lawupdate = 0 + density = 1 + idcard_type = /obj/item/weapon/card/id/syndicate + req_access = list(999) + integrated_light_power = 3 + local_transmit = 0 + + can_pull_size = ITEMSIZE_NO_CONTAINER + can_pull_mobs = MOB_PULL_SMALLER + can_enter_vent_with = list( + /obj) + + mob_always_swap = 1 + + softfall = TRUE + + mob_size = MOB_LARGE + + law_type = /datum/ai_laws/swarm_drone + module_type = /obj/item/weapon/robot_module/drone/swarm + + hat_x_offset = 0 + hat_y_offset = -10 + + foreign_droid = TRUE + scrambledcodes = TRUE + + holder_type = /obj/item/weapon/holder/drone + + can_be_antagged = TRUE + + var/spell_setup = list( + /spell/aoe_turf/conjure/swarmer, + /spell/aoe_turf/conjure/forcewall/swarm, + /spell/aoe_turf/blink/swarm, + /spell/aoe_turf/conjure/swarmer/gunner, + /spell/aoe_turf/conjure/swarmer/melee + ) + +/mob/living/silicon/robot/drone/swarm/Initialize() + ..() + + add_language(LANGUAGE_SWARMBOT, 1) + + for(var/spell in spell_setup) + src.add_spell(new spell, "nano_spell_ready", /obj/screen/movable/spell_master/swarm) + +/mob/living/silicon/robot/drone/swarm/init() + ..() + QDEL_NULL(aiCamera) + flavor_text = "Some form of ancient machine." + +/mob/living/silicon/robot/drone/swarm/gunner + name = "swarm gunner" + real_name = "drone" + icon = 'icons/mob/swarmbot.dmi' + icon_state = "swarmer_ranged" + faction = "swarmer" + + law_type = /datum/ai_laws/swarm_drone/soldier + module_type = /obj/item/weapon/robot_module/drone/swarm/ranged + + spell_setup = list( + /spell/aoe_turf/conjure/swarmer, + /spell/aoe_turf/conjure/forcewall/swarm, + /spell/aoe_turf/blink/swarm + ) + +/mob/living/silicon/robot/drone/swarm/melee + name = "swarm melee" + real_name = "drone" + icon = 'icons/mob/swarmbot.dmi' + icon_state = "swarmer_melee" + faction = "swarmer" + + law_type = /datum/ai_laws/swarm_drone/soldier + module_type = /obj/item/weapon/robot_module/drone/swarm/melee + + spell_setup = list( + /spell/aoe_turf/conjure/swarmer, + /spell/aoe_turf/conjure/forcewall/swarm, + /spell/aoe_turf/blink/swarm + ) + diff --git a/code/modules/mob/living/silicon/robot/drone/swarm_abilities.dm b/code/modules/mob/living/silicon/robot/drone/swarm_abilities.dm new file mode 100644 index 0000000000..62a54e9ecd --- /dev/null +++ b/code/modules/mob/living/silicon/robot/drone/swarm_abilities.dm @@ -0,0 +1,117 @@ + +/spell/aoe_turf/conjure/swarmer + name = "Self Replication" + desc = "This ability constructs a standard swarmer shell that may activate at some point." + + school = "conjuration" + charge_max = 120 SECONDS + spell_flags = 0 + invocation = "none" + invocation_type = SpI_NONE + range = 0 + + summon_type = list(/obj/structure/ghost_pod/ghost_activated/swarm_drone/event) + + hud_state = "swarm_replicate" + +/spell/aoe_turf/conjure/swarmer/conjure_animation(var/atom/movable/overlay/animation, var/turf/target) + animation.icon_state = "deflect_static" + flick("shield2",animation) + spawn(1 SECOND) + qdel(animation) + +/spell/aoe_turf/conjure/forcewall/swarm + name = "Null-Field" + desc = "Create a bubble of null-point energy." + summon_type = list(/obj/effect/forcefield/swarm) + duration = 30 SECONDS + charge_max = 60 SECONDS + + school = "conjuration" + invocation = "none" + invocation_type = SpI_NONE + range = 0 + + hud_state = "wiz_shield" + +/obj/effect/forcefield/swarm + desc = "A pocket of strange energy." + name = "Null-Field" + icon = 'icons/effects/effects.dmi' + icon_state = "shield-old" + invisibility = 0 + +/spell/aoe_turf/conjure/zeropointwell + name = "Zero-Point Well" + desc = "This ability constructs a standard zero-point energy well, capable of charging nearby swarmers." + + school = "conjuration" + charge_max = 120 SECONDS + spell_flags = 0 + invocation = "none" + invocation_type = SpI_NONE + range = 0 + + summon_type = list(/obj/structure/cult/pylon/swarm/zp_well) + + hud_state = "swarm_zeropoint" + +/spell/aoe_turf/conjure/zeropointbarricade + name = "Zero-Point Barricade" + desc = "This ability constructs a standard zero-point energy wall, used to create a secure passageway for allies, and a bastion for defense." + + school = "conjuration" + charge_max = 120 SECONDS + spell_flags = 0 + invocation = "none" + invocation_type = SpI_NONE + range = 0 + + summon_type = list(/obj/structure/cult/pylon/swarm/defender) + + hud_state = "swarm_barricade" + +/spell/aoe_turf/blink/swarm + name = "Warp" + desc = "Your null-point drive jaunts you to a new location." + + school = "abjuration" + charge_max = 5 MINUTES + spell_flags = Z2NOCAST | IGNOREDENSE + invocation = "none" + invocation_type = SpI_NONE + range = 10 + inner_radius = 5 + hud_state = "swarm_warp" + +/spell/aoe_turf/conjure/swarmer/gunner + name = "Generate Gunner" + desc = "This spell constructs a gunner swarmer shell that may activate at some point." + + school = "conjuration" + charge_type = Sp_CHARGES + charge_max = 1 + spell_flags = 0 + invocation = "none" + invocation_type = SpI_NONE + range = 0 + + summon_type = list(/obj/structure/ghost_pod/ghost_activated/swarm_drone/event/gunner) + + hud_state = "swarm_replicate" + +/spell/aoe_turf/conjure/swarmer/melee + name = "Generate Impaler" + desc = "This spell constructs an impaler swarmer shell that may activate at some point." + + school = "conjuration" + charge_type = Sp_CHARGES + charge_max = 1 + spell_flags = 0 + invocation = "none" + invocation_type = SpI_NONE + range = 0 + + summon_type = list(/obj/structure/ghost_pod/ghost_activated/swarm_drone/event/melee) + + hud_state = "swarm_replicate" diff --git a/code/modules/mob/living/silicon/robot/drone/swarm_items.dm b/code/modules/mob/living/silicon/robot/drone/swarm_items.dm new file mode 100644 index 0000000000..74abd99ca5 --- /dev/null +++ b/code/modules/mob/living/silicon/robot/drone/swarm_items.dm @@ -0,0 +1,162 @@ + +//Swarm Assimilator / Breacher +/obj/item/weapon/matter_decompiler/swarm + name = "matter assimilator" + desc = "Used to eat some forms of simple machinery; and large, wall-shaped blocks of metal with energetic fields." + icon = 'icons/obj/device.dmi' + icon_state = "decompiler_swarm" + + var/field_cooldown = 1 MINUTE + var/last_field = 0 + +/obj/item/weapon/matter_decompiler/swarm/afterattack(atom/target as mob|obj|turf|area, mob/living/user as mob|obj, proximity, params) + + if(!proximity) return //Not adjacent. + + //We only want to deal with using this on turfs. Specific items aren't important. + var/turf/T = get_turf(target) + if(!istype(T)) + return + + //Used to give the right message. + var/grabbed_something = FALSE + + for(var/mob/M in T) + if(istype(M,/mob/living/simple_mob/animal/passive/lizard) || istype(M,/mob/living/simple_mob/animal/passive/mouse)) + src.loc.visible_message("[src.loc] sucks [M] into its decompiler. There's a horrible crunching noise.","It's a bit of a struggle, but you manage to suck [M] into your decompiler. It makes a series of visceral crunching noises.") + new/obj/effect/decal/cleanable/blood/splatter(get_turf(src)) + qdel(M) + if(wood) + wood.add_charge(2000) + if(plastic) + plastic.add_charge(2000) + return + + else if(istype(M,/mob/living/silicon/robot/drone) && !M.client) + + var/mob/living/silicon/robot/D = src.loc + + if(!istype(D)) + return + + to_chat(D, "You begin decompiling [M].") + + if(!do_after(D,50)) + to_chat(D, "You need to remain still while decompiling such a large object.") + return + + if(!M || !D) return + + to_chat(D, "You carefully and thoroughly decompile [M], storing as much of its resources as you can within yourself.") + qdel(M) + new/obj/effect/decal/cleanable/blood/oil(get_turf(src)) + + if(metal) + metal.add_charge(15000) + if(glass) + glass.add_charge(15000) + if(wood) + wood.add_charge(2000) + if(plastic) + plastic.add_charge(1000) + return + else + continue + + for(var/obj/W in T) + //Different classes of items give different commodities. + if(istype(W,/obj/structure/girder)) + if(metal) + metal.add_charge(500) + else if(istype(W,/obj/machinery/power/emitter)) + if(metal) + metal.add_charge(3000) + if(plastic) + plastic.add_charge(1000) + else if(istype(W,/obj/machinery/space_heater)) + if(metal) + metal.add_charge(1500) + if(plastic) + plastic.add_charge(750) + else if(istype(W,/obj/structure/closet)) + var/obj/structure/closet/C = W + if(!C.opened) + continue + if(istype(W,/obj/structure/closet/coffin)) + if(wood) + wood.add_charge(1000) + else if(istype(W,/obj/structure/closet/crate/plastic)) + if(plastic) + plastic.add_charge(750) + else + if(metal) + metal.add_charge(1000) + else + continue + + qdel(W) + grabbed_something = TRUE + + if(istype(T,/turf/simulated/wall) && (last_field < world.time + field_cooldown)) + if(!(locate(/obj/effect/temporary_effect/pulse/disintegrate))) + last_field = world.time + to_chat(user, "You deploy an energetic field through \the [T], beginning its deconstruction.") + to_chat(user, "You should stand back.") + new /obj/effect/temporary_effect/pulse/disintegrate(T) + else + to_chat(user, "There is already a disintigration field affecting \the [T].") + + if(grabbed_something) + to_chat(user, "You deploy your decompiler and clear out the contents of \the [T].") + else + to_chat(user, "Nothing on \the [T] is useful to you.") + return + +/obj/effect/temporary_effect/pulse/disintegrate + name = "molecular debonding field" + desc = "This is something you do not want to near." + icon = 'icons/mob/swarmbot.dmi' + icon_state = "disintegrate_pulse" + light_range = 4 + light_power = 5 + light_color = "#00B4D9" + pulses_remaining = 5 + pulse_delay = 2 SECONDS + +/obj/effect/temporary_effect/pulse/disintegrate/emp_act() + visible_message("\The [src] flickers, before dispersing energetically.") + qdel(src) + +/obj/effect/temporary_effect/pulse/disintegrate/on_pulse() + var/turf/T = get_turf(src) + if(istype(T,/turf/simulated/wall)) + explosion(get_turf(src), -1, -1, 1, 3, adminlog = 0) + else + qdel(src) + +/obj/effect/temporary_effect/pulse/disintegrate/Destroy() + if(istype(get_turf(src), /turf/simulated/wall)) + explosion(get_turf(src), -1, 1, 2, 5, adminlog = 1) + ..() + +/obj/item/weapon/gun/energy/xray/swarm + name = "spectral projector" + desc = "A high-power laser gun capable of expelling concentrated gamma blasts, which are able to penetrate matter easier than \ + standard xray beams, resulting in an effective 'anti-everything' energy weapon." + icon_state = "xray" + item_state = "xray" + origin_tech = list(TECH_COMBAT = 5, TECH_MATERIAL = 3, TECH_MAGNET = 2) + projectile_type = /obj/item/projectile/beam/shock + charge_cost = 175 + + self_recharge = TRUE + use_external_power = TRUE + + firemodes = list( + list(mode_name="kill", projectile_type=/obj/item/projectile/beam/gamma, charge_cost = 300), + list(mode_name="deter", projectile_type=/obj/item/projectile/beam/shock, charge_cost = 175), + ) + +/obj/item/weapon/gun/energy/xray/swarm/Initialize() + ..() + adjust_scale(-1, 1) diff --git a/code/modules/mob/living/silicon/robot/emote.dm b/code/modules/mob/living/silicon/robot/emote.dm index fbf5d1db58..1bb4a3bcdb 100644 --- a/code/modules/mob/living/silicon/robot/emote.dm +++ b/code/modules/mob/living/silicon/robot/emote.dm @@ -12,7 +12,7 @@ if ("me") if (src.client) if(client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (stat) return @@ -226,7 +226,7 @@ playsound(src.loc, 'sound/voice/biamthelaw.ogg', 50, 0) m_type = 2 else - src << "You are not THE LAW, pal." + to_chat(src, "You are not THE LAW, pal.") if("halt") if (istype(module,/obj/item/weapon/robot_module/robot/security) || istype(module,/obj/item/weapon/robot_module/robot/knine)) //VOREStation Add - K9 @@ -235,12 +235,12 @@ playsound(src.loc, 'sound/voice/halt.ogg', 50, 0) m_type = 2 else - src << "You are not security." + to_chat(src, "You are not security.") if ("help") - src << "salute, bow-(none)/mob, clap, flap, aflap, twitch, twitch_s, nod, deathgasp, glare-(none)/mob, stare-(none)/mob, look, beep, ping, \nbuzz, law, halt, yes, no" + to_chat(src, "salute, bow-(none)/mob, clap, flap, aflap, twitch, twitch_s, nod, deathgasp, glare-(none)/mob, stare-(none)/mob, look, beep, ping, \nbuzz, law, halt, yes, no") else - src << "Unusable emote '[act]'. Say *help for a list." + to_chat(src, "Unusable emote '[act]'. Say *help for a list.") if ((message && src.stat == 0)) custom_emote(m_type,message) diff --git a/code/modules/mob/living/silicon/robot/examine.dm b/code/modules/mob/living/silicon/robot/examine.dm index fa24e9ae91..33ec3183be 100644 --- a/code/modules/mob/living/silicon/robot/examine.dm +++ b/code/modules/mob/living/silicon/robot/examine.dm @@ -44,7 +44,7 @@ if(print_flavor_text()) msg += "\n[print_flavor_text()]\n" if (pose) - if( findtext(pose,".",lentext(pose)) == 0 && findtext(pose,"!",lentext(pose)) == 0 && findtext(pose,"?",lentext(pose)) == 0 ) + if( findtext(pose,".",length(pose)) == 0 && findtext(pose,"!",length(pose)) == 0 && findtext(pose,"?",length(pose)) == 0 ) pose = addtext(pose,".") //Makes sure all emotes end with a period. msg += "\nIt is [pose]" diff --git a/code/modules/mob/living/silicon/robot/inventory.dm b/code/modules/mob/living/silicon/robot/inventory.dm index 48455c3844..2b67fc862a 100644 --- a/code/modules/mob/living/silicon/robot/inventory.dm +++ b/code/modules/mob/living/silicon/robot/inventory.dm @@ -227,7 +227,7 @@ if(!(locate(O) in src.module.modules) && O != src.module.emag) return if(activated(O)) - src << "Already activated" + to_chat(src, "Already activated") return if(!module_state_1) module_state_1 = O @@ -251,7 +251,7 @@ if(istype(module_state_3,/obj/item/borg/sight)) sight_mode |= module_state_3:sight_mode else - src << "You need to disable a module first!" + to_chat(src, "You need to disable a module first!") /mob/living/silicon/robot/put_in_hands(var/obj/item/W) // No hands. W.loc = get_turf(src) diff --git a/code/modules/mob/living/silicon/robot/life.dm b/code/modules/mob/living/silicon/robot/life.dm index a476be20c1..ffcb1b8326 100644 --- a/code/modules/mob/living/silicon/robot/life.dm +++ b/code/modules/mob/living/silicon/robot/life.dm @@ -60,7 +60,7 @@ src.has_power = 1 else if (src.has_power) - src << "You are now running on emergency backup power." + to_chat(src, "You are now running on emergency backup power.") src.has_power = 0 if(lights_on) // Light is on but there is no power! lights_on = 0 @@ -319,7 +319,7 @@ killswitch_time -- if(killswitch_time <= 0) if(src.client) - src << "Killswitch Activated" + to_chat(src, "Killswitch Activated") killswitch = 0 spawn(5) gib() @@ -330,7 +330,7 @@ weaponlock_time -- if(weaponlock_time <= 0) if(src.client) - src << "Weapon Lock Timed Out!" + to_chat(src, "Weapon Lock Timed Out!") weapon_lock = 0 weaponlock_time = 120 diff --git a/code/modules/mob/living/silicon/robot/photos.dm b/code/modules/mob/living/silicon/robot/photos.dm index 7c52bd0f85..24111683c9 100644 --- a/code/modules/mob/living/silicon/robot/photos.dm +++ b/code/modules/mob/living/silicon/robot/photos.dm @@ -17,4 +17,4 @@ synced = 1 if(synced) - src << "Images synced with AI. Local images will be retained in the case of loss of connection with the AI." + to_chat(src, "Images synced with AI. Local images will be retained in the case of loss of connection with the AI.") diff --git a/code/modules/mob/living/silicon/robot/robot_damage.dm b/code/modules/mob/living/silicon/robot/robot_damage.dm index b1436f423e..c27d7e36b6 100644 --- a/code/modules/mob/living/silicon/robot/robot_damage.dm +++ b/code/modules/mob/living/silicon/robot/robot_damage.dm @@ -79,11 +79,11 @@ cell.charge -= cost if(cell.charge <= 0) cell.charge = 0 - src << "Your shield has overloaded!" + to_chat(src, "Your shield has overloaded!") else brute -= absorb_brute burn -= absorb_burn - src << "Your shield absorbs some of the impact!" + to_chat(src, "Your shield absorbs some of the impact!") if(!emp) var/datum/robot_component/armour/A = get_armour() @@ -126,11 +126,11 @@ cell.charge -= cost if(cell.charge <= 0) cell.charge = 0 - src << "Your shield has overloaded!" + to_chat(src, "Your shield has overloaded!") else brute -= absorb_brute burn -= absorb_burn - src << "Your shield absorbs some of the impact!" + to_chat(src, "Your shield absorbs some of the impact!") var/datum/robot_component/armour/A = get_armour() if(A) 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 4a3f4741ba..3047425995 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station.dm @@ -46,6 +46,7 @@ var/global/list/robot_modules = list( add_languages(R) add_subsystems(R) apply_status_flags(R) + handle_shell(R) if(R.radio) if(R.shell) @@ -153,6 +154,19 @@ var/global/list/robot_modules = list( if(!can_be_pushed) R.status_flags |= CANPUSH +/obj/item/weapon/robot_module/proc/handle_shell(var/mob/living/silicon/robot/R) + if(R.braintype == BORG_BRAINTYPE_AI_SHELL) + channels = list( + "Medical" = 1, + "Engineering" = 1, + "Security" = 1, + "Service" = 1, + "Supply" = 1, + "Science" = 1, + "Command" = 1, + "Explorer" = 1 + ) + // Cyborgs (non-drones), default loadout. This will be given to every module. /obj/item/weapon/robot_module/robot/New() ..() @@ -177,7 +191,8 @@ var/global/list/robot_modules = list( "Basic" = "robot_old", "Android" = "droid", "Drone" = "drone-standard", - "Insekt" = "insekt-Default" + "Insekt" = "insekt-Default", + "Usagi-II" = "tall2standard" ) @@ -211,7 +226,8 @@ var/global/list/robot_modules = list( "Needles" = "medicalrobot", "Drone" = "drone-surgery", "Handy" = "handy-med", - "Insekt" = "insekt-Med" + "Insekt" = "insekt-Med", + "Usagi-II" = "tall2medical" ) /obj/item/weapon/robot_module/robot/medical/surgeon/New() @@ -282,7 +298,8 @@ var/global/list/robot_modules = list( "Needles" = "medicalrobot", "Drone - Medical" = "drone-medical", "Drone - Chemistry" = "drone-chemistry", - "Insekt" = "insekt-Med" + "Insekt" = "insekt-Med", + "Usagi-II" = "tall2medical" ) /obj/item/weapon/robot_module/robot/medical/crisis/New() @@ -356,7 +373,8 @@ var/global/list/robot_modules = list( "Landmate - Treaded" = "engiborg+tread", "Drone" = "drone-engineer", "Treadwell" = "treadwell", - "Handy" = "handy-engineer" + "Handy" = "handy-engineer", + "Usagi-II" = "tall2engineer" ) /obj/item/weapon/robot_module/robot/engineering/construction @@ -515,7 +533,8 @@ var/global/list/robot_modules = list( "Basic" = "secborg", "Black Knight" = "securityrobot", "Drone" = "drone-sec", - "Insekt" = "insekt-Sec" + "Insekt" = "insekt-Sec", + "Usagi-II" = "tall2security" ) /obj/item/weapon/robot_module/robot/security/general/New() @@ -526,6 +545,7 @@ var/global/list/robot_modules = list( // src.modules += new /obj/item/weapon/gun/energy/taser/xeno/sec/robot(src) // VOREStation Edit - We don't need these src.modules += new /obj/item/taperoll/police(src) src.modules += new /obj/item/weapon/reagent_containers/spray/pepper(src) + src.modules += new /obj/item/weapon/gripper/security(src) src.emag = new /obj/item/weapon/gun/energy/laser/mounted(src) /obj/item/weapon/robot_module/robot/security/respawn_consumable(var/mob/living/silicon/robot/R, var/amount) @@ -557,7 +577,8 @@ var/global/list/robot_modules = list( "Basic" = "JanBot2", "Mopbot" = "janitorrobot", "Mop Gear Rex" = "mopgearrex", - "Drone" = "drone-janitor" + "Drone" = "drone-janitor", + "Usagi-II" = "tall2janitor" ) /obj/item/weapon/robot_module/robot/janitor/New() @@ -579,7 +600,10 @@ var/global/list/robot_modules = list( /obj/item/weapon/robot_module/robot/clerical name = "service robot module" - channels = list("Service" = 1) + channels = list( + "Service" = 1, + "Command" = 1 + ) languages = list( LANGUAGE_SOL_COMMON = 1, LANGUAGE_UNATHI = 1, @@ -614,7 +638,8 @@ var/global/list/robot_modules = list( "Bro" = "Brobot", "Rich" = "maximillion", "Drone - Service" = "drone-service", - "Drone - Hydro" = "drone-hydro" + "Drone - Hydro" = "drone-hydro", + "Usagi-II" = "tall2service" ) /obj/item/weapon/robot_module/robot/clerical/butler/New() @@ -666,7 +691,8 @@ var/global/list/robot_modules = list( "Bro" = "Brobot", "Rich" = "maximillion", "Default" = "Service2", - "Drone" = "drone-blu" + "Drone" = "drone-blu", + "Usagi-II" = "tall2service" ) /obj/item/weapon/robot_module/robot/clerical/general/New() @@ -702,7 +728,8 @@ var/global/list/robot_modules = list( "Basic" = "Miner_old", "Advanced Droid" = "droid-miner", "Treadhead" = "Miner", - "Drone" = "drone-miner" + "Drone" = "drone-miner", + "Usagi-II" = "tall2miner" ) /obj/item/weapon/robot_module/robot/miner/New() @@ -730,7 +757,8 @@ var/global/list/robot_modules = list( "Droid" = "droid-science", "Drone" = "drone-science", "Handy" = "handy-science", - "Insekt" = "insekt-Sci" + "Insekt" = "insekt-Sci", + "Usagi-II" = "tall2peace" ) /obj/item/weapon/robot_module/robot/research/New() 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 5e29b10eab..9aae32df4c 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 @@ -64,14 +64,16 @@ /obj/item/weapon/robot_module/robot/medical/surgeon //VOREStation sprites vr_sprites = list( "Acheron" = "mechoid-Medical", - "Shellguard Noble" = "Noble-MED" + "Shellguard Noble" = "Noble-MED", + "ZOOM-BA" = "zoomba-medical" ) /obj/item/weapon/robot_module/robot/medical/crisis //VOREStation sprites vr_sprites = list( "Handy" = "handy-med", "Acheron" = "mechoid-Medical", - "Shellguard Noble" = "Noble-MED" + "Shellguard Noble" = "Noble-MED", + "ZOOM-BA" = "zoomba-crisis" ) /obj/item/weapon/robot_module/robot/clerical/butler //VOREStation sprites @@ -79,58 +81,67 @@ "Handy - Service" = "handy-service", "Handy - Hydro" = "handy-hydro", "Acheron" = "mechoid-Service", - "Shellguard Noble" = "Noble-SRV" + "Shellguard Noble" = "Noble-SRV", + "ZOOM-BA" = "zoomba-service" ) /obj/item/weapon/robot_module/robot/clerical/general //VOREStation sprites vr_sprites = list( "Handy" = "handy-clerk", "Acheron" = "mechoid-Service", - "Shellguard Noble" = "Noble-SRV" + "Shellguard Noble" = "Noble-SRV", + "ZOOM-BA" = "zoomba-clerical" ) /obj/item/weapon/robot_module/robot/janitor //VOREStation sprites vr_sprites = list( "Handy" = "handy-janitor", "Acheron" = "mechoid-Janitor", - "Shellguard Noble" = "Noble-CLN" + "Shellguard Noble" = "Noble-CLN", + "ZOOM-BA" = "zoomba-janitor" ) /obj/item/weapon/robot_module/robot/security/general //VOREStation sprites vr_sprites = list( "Handy" = "handy-sec", "Acheron" = "mechoid-Security", - "Shellguard Noble" = "Noble-SEC" + "Shellguard Noble" = "Noble-SEC", + "ZOOM-BA" = "zoomba-security" ) /obj/item/weapon/robot_module/robot/miner //VOREStation sprites vr_sprites = list( "Handy" = "handy-miner", "Acheron" = "mechoid-Miner", - "Shellguard Noble" = "Noble-DIG" + "Shellguard Noble" = "Noble-DIG", + "ZOOM-BA" = "zoomba-miner" ) /obj/item/weapon/robot_module/robot/standard //VOREStation sprites vr_sprites = list( "Handy" = "handy-standard", "Acheron" = "mechoid-Standard", - "Shellguard Noble" = "Noble-STD" + "Shellguard Noble" = "Noble-STD", + "ZOOM-BA" = "zoomba-standard" ) /obj/item/weapon/robot_module/robot/engineering/general //VOREStation sprites vr_sprites = list( "Acheron" = "mechoid-Engineering", - "Shellguard Noble" = "Noble-ENG" + "Shellguard Noble" = "Noble-ENG", + "ZOOM-BA" = "zoomba-engineering" ) /obj/item/weapon/robot_module/robot/research //VOREStation sprites vr_sprites = list( - "Acheron" = "mechoid-Science" + "Acheron" = "mechoid-Science", + "ZOOM-BA" = "zoomba-research" ) /obj/item/weapon/robot_module/robot/security/combat //VOREStation sprites vr_sprites = list( - "Acheron" = "mechoid-Combat" + "Acheron" = "mechoid-Combat", + "ZOOM-BA" = "zoomba-combat" ) /obj/item/weapon/robot_module/robot/knine @@ -138,7 +149,8 @@ sprites = list( "K9 hound" = "k9", "K9 Alternative (Static)" = "k92", - "Secborg model V-2" = "secborg" + "Secborg model V-2" = "secborg", + "Borgi" = "borgi-sec" ) channels = list("Security" = 1) networks = list(NETWORK_SECURITY) @@ -210,7 +222,8 @@ sprites = list( "Medical Hound" = "medihound", "Dark Medical Hound (Static)" = "medihounddark", - "Mediborg model V-2" = "vale" + "Mediborg model V-2" = "vale", + "Borgi" = "borgi-medi" ) /obj/item/weapon/robot_module/robot/medihound/New(var/mob/living/silicon/robot/R) @@ -261,7 +274,8 @@ networks = list(NETWORK_SECURITY) can_be_pushed = 0 sprites = list( - "Standard" = "ert" + "Standard" = "ert", + "Borgi" = "borgi" ) /obj/item/weapon/robot_module/robot/ert/New(var/mob/living/silicon/robot/R) @@ -305,6 +319,7 @@ name = "Custodial Hound module" sprites = list( "Custodial Hound" = "scrubpup", + "Borgi" = "borgi-jani" ) channels = list("Service" = 1) can_be_pushed = 0 @@ -385,6 +400,7 @@ name = "Research Hound Module" sprites = list( "Research Hound" = "science", + "Borgi" = "borgi-sci" ) channels = list("Science" = 1) can_be_pushed = 0 @@ -431,6 +447,7 @@ name = "Construction Hound module" sprites = list( "Pupdozer" = "pupdozer", + "Borgi" = "borgi-eng" ) channels = list("Engineering" = 1) networks = list(NETWORK_ENGINEERING) diff --git a/code/modules/mob/living/silicon/robot/robot_modules/swarm.dm b/code/modules/mob/living/silicon/robot/robot_modules/swarm.dm new file mode 100644 index 0000000000..f125b4b0eb --- /dev/null +++ b/code/modules/mob/living/silicon/robot/robot_modules/swarm.dm @@ -0,0 +1,29 @@ +/obj/item/weapon/robot_module/drone/swarm + name = "swarm drone module" + var/id + +/obj/item/weapon/robot_module/drone/swarm/New(var/mob/living/silicon/robot/robot) + ..() + + id = robot.idcard + src.modules += id + + src.modules += new /obj/item/weapon/rcd/electric/mounted/borg/swarm(src) + src.modules += new /obj/item/device/flash/robot(src) + src.modules += new /obj/item/weapon/handcuffs/cable/tape/cyborg(src) + src.modules += new /obj/item/weapon/melee/baton/robot(src) + src.modules += new /obj/item/weapon/gun/energy/taser/mounted/cyborg/swarm(src) + src.modules += new /obj/item/weapon/matter_decompiler/swarm(src) + +/obj/item/weapon/robot_module/drone/swarm/ranged + name = "swarm gunner module" + +/obj/item/weapon/robot_module/drone/swarm/ranged/New(var/mob/living/silicon/robot/robot) + ..() + + src.modules += new /obj/item/weapon/gun/energy/xray/swarm(src) + +/obj/item/weapon/robot_module/drone/swarm/melee/New(var/mob/living/silicon/robot/robot) + ..() + + src.modules += new /obj/item/weapon/melee/energy/sword/ionic_rapier/lance(src) diff --git a/code/modules/mob/living/silicon/robot/robot_vr.dm b/code/modules/mob/living/silicon/robot/robot_vr.dm index e3264aee4e..5f1e037e32 100644 --- a/code/modules/mob/living/silicon/robot/robot_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_vr.dm @@ -33,13 +33,27 @@ "mechoid-Janitor", "mechoid-Combat", "mechoid-Combat-roll", + "mechoid-Combat-shield", "Noble-CLN", "Noble-SRV", "Noble-DIG", "Noble-MED", "Noble-SEC", "Noble-ENG", - "Noble-STD" + "Noble-STD", + "zoomba-standard", + "zoomba-clerical", + "zoomba-engineering", + "zoomba-janitor", + "zoomba-medical", + "zoomba-crisis", + "zoomba-miner", + "zoomba-research", + "zoomba-security", + "zoomba-service", + "zoomba-combat", + "zoomba-combat-roll", + "zoomba-combat-shield" ) //List of all used sprites that are in robots_vr.dmi diff --git a/code/modules/mob/living/silicon/say.dm b/code/modules/mob/living/silicon/say.dm index 0beaa78005..0867fedff8 100644 --- a/code/modules/mob/living/silicon/say.dm +++ b/code/modules/mob/living/silicon/say.dm @@ -8,7 +8,7 @@ ..() if(message_mode) if(!is_component_functioning("radio")) - src << "Your radio isn't functional at this time." + to_chat(src, "Your radio isn't functional at this time.") return 0 if(message_mode == "general") message_mode = null @@ -23,7 +23,7 @@ return holopad_talk(message, verb, speaking) else if(message_mode) if (aiRadio.disabledAi || aiRestorePowerRoutine || stat) - src << "System Error - Transceiver Disabled." + to_chat(src, "System Error - Transceiver Disabled.") return 0 if(message_mode == "general") message_mode = null @@ -82,11 +82,11 @@ if(speaking) rendered_a = "[name] [speaking.format_message(message, verb)]" rendered_b = "[voice_name] [speaking.format_message(message_stars, verb)]" - src << "Holopad transmitted, [real_name] [speaking.format_message(message, verb)]"//The AI can "hear" its own message. + to_chat(src, "Holopad transmitted, [real_name] [speaking.format_message(message, verb)]") //The AI can "hear" its own message. else rendered_a = "[name] [verb], \"[message]\"" rendered_b = "[voice_name] [verb], \"[message_stars]\"" - src << "Holopad transmitted, [real_name] [verb], \"[message]\""//The AI can "hear" its own message. + to_chat(src, "Holopad transmitted, [real_name] [verb], \"[message]\"") //The AI can "hear" its own message. var/list/listeners = get_mobs_and_objs_in_view_fast(get_turf(T), world.view) var/list/listening = listeners["mobs"] var/list/listening_obj = listeners["objs"] @@ -105,7 +105,7 @@ /*Radios "filter out" this conversation channel so we don't need to account for them. This is another way of saying that we won't bother dealing with them.*/ else - src << "No holopad connected." + to_chat(src, "No holopad connected.") return 0 return 1 @@ -119,7 +119,7 @@ var/obj/machinery/hologram/holopad/T = src.holo if(T && T.masters[src]) var/rendered = "[name] [message]" - src << "Holopad action relayed, [real_name] [message]" + to_chat(src, "Holopad action relayed, [real_name] [message]") var/obj/effect/overlay/aiholo/hologram = T.masters[src] //VOREStation Add for people in the hologram to hear the messages //var/obj/effect/overlay/hologram = T.masters[src] //VOREStation edit. Done above. @@ -142,7 +142,7 @@ log_emote("(HPAD) [message]", src) else //This shouldn't occur, but better safe then sorry. - src << "No holopad connected." + to_chat(src, "No holopad connected.") return 0 return 1 diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index 50e7989f57..a84e4597e6 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -72,8 +72,8 @@ src.take_organ_damage(0,5,emp=1) Confuse(2) flash_eyes(affect_silicon = 1) - src << "*BZZZT*" - src << "Warning: Electromagnetic pulse detected." + to_chat(src, "*BZZZT*") + to_chat(src, "Warning: Electromagnetic pulse detected.") ..() /mob/living/silicon/stun_effect_act(var/stun_amount, var/agony_amount) @@ -353,7 +353,7 @@ alarm_raised = 1 if(!reported) reported = 1 - src << "--- [AH.category] Detected ---" + to_chat(src, "--- [AH.category] Detected ---") raised_alarm(A) for(var/datum/alarm_handler/AH in queued_alarms) @@ -363,24 +363,24 @@ if(alarms[A] == -1) if(!reported) reported = 1 - src << "--- [AH.category] Cleared ---" - src << "\The [A.alarm_name()]." + to_chat(src, "--- [AH.category] Cleared ---") + to_chat(src, "\The [A.alarm_name()].") if(alarm_raised) - src << "\[Show Alerts\]" + to_chat(src, "\[Show Alerts\]") for(var/datum/alarm_handler/AH in queued_alarms) var/list/alarms = queued_alarms[AH] alarms.Cut() /mob/living/silicon/proc/raised_alarm(var/datum/alarm/A) - src << "[A.alarm_name()]!" + to_chat(src, "[A.alarm_name()]!") /mob/living/silicon/ai/raised_alarm(var/datum/alarm/A) var/cameratext = "" for(var/obj/machinery/camera/C in A.cameras()) cameratext += "[(cameratext == "")? "" : "|"][C.c_tag]" - src << "[A.alarm_name()]! ([(cameratext)? cameratext : "No Camera"])" + to_chat(src, "[A.alarm_name()]! ([(cameratext)? cameratext : "No Camera"])") /mob/living/silicon/proc/is_traitor() diff --git a/code/modules/mob/living/simple_animal/animals/cat.dm b/code/modules/mob/living/simple_animal/animals/cat.dm deleted file mode 100644 index 140deb0b24..0000000000 --- a/code/modules/mob/living/simple_animal/animals/cat.dm +++ /dev/null @@ -1,193 +0,0 @@ -//Cat -/mob/living/simple_animal/cat - name = "cat" - desc = "A domesticated, feline pet. Has a tendency to adopt crewmembers." - tt_desc = "E Felis silvestris catus" - intelligence_level = SA_ANIMAL - icon_state = "cat2" - item_state = "cat2" - icon_living = "[initial(icon_state)]" - icon_dead = "[initial(icon_state)]_dead" - icon_rest = "[initial(icon_state)]_rest" - - investigates = 1 - specific_targets = 1 //Only targets with Found() - run_at_them = 0 //DOMESTICATED - view_range = 5 - - turns_per_move = 5 - see_in_dark = 6 - - response_help = "pets" - response_disarm = "gently pushes aside" - response_harm = "kicks" - - min_oxy = 16 //Require atleast 16kPA oxygen - minbodytemp = 223 //Below -50 Degrees Celcius - maxbodytemp = 323 //Above 50 Degrees Celcius - - holder_type = /obj/item/weapon/holder/cat - mob_size = MOB_SMALL - - has_langs = list("Cat") - speak_chance = 1 - speak = list("Meow!","Esp!","Purr!","HSSSSS") - speak_emote = list("purrs", "meows") - emote_hear = list("meows","mews") - emote_see = list("shakes their head", "shivers") - say_maybe_target = list("Meow?","Mew?","Mao?") - say_got_target = list("MEOW!","HSSSS!","REEER!") - - meat_amount = 1 - meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat - - var/turns_since_scan = 0 - var/mob/flee_target - -/mob/living/simple_animal/cat/Life() - . = ..() - if(!.) return - - if(prob(2)) //spooky - var/mob/observer/dead/spook = locate() in range(src,5) - if(spook) - var/turf/T = spook.loc - var/list/visible = list() - for(var/obj/O in T.contents) - if(!O.invisibility && O.name) - visible += O - if(visible.len) - var/atom/A = pick(visible) - visible_emote("suddenly stops and stares at something unseen[istype(A) ? " near [A]":""].") - - handle_flee_target() - -/mob/living/simple_animal/cat/PunchTarget() - if(ismouse(target_mob)) - var/mob/living/simple_mob/animal/passive/mouse/mouse = target_mob - mouse.splat() - visible_emote(pick("bites \the [mouse]!","toys with \the [mouse].","chomps on \the [mouse]!")) - return mouse - else - ..() - -/mob/living/simple_animal/cat/Found(var/atom/found_atom) - if(ismouse(found_atom) && SA_attackable(found_atom)) - return found_atom - -/mob/living/simple_animal/cat/proc/handle_flee_target() - //see if we should stop fleeing - if (flee_target && !(flee_target in ListTargets(view_range))) - flee_target = null - GiveUpMoving() - - if (flee_target && !stat && !buckled) - if (resting) - lay_down() - if(prob(25)) say("HSSSSS") - stop_automated_movement = 1 - walk_away(src, flee_target, 7, 2) - -/mob/living/simple_animal/cat/react_to_attack(var/atom/A) - if(A == src) return - flee_target = A - turns_since_scan = 5 - -/mob/living/simple_animal/cat/ex_act() - . = ..() - react_to_attack(src.loc) - -//Basic friend AI -/mob/living/simple_animal/cat/fluff - var/mob/living/carbon/human/friend - var/befriend_job = null - var/friend_name = null - -/mob/living/simple_animal/cat/fluff/Life() - . = ..() - if(!. || ai_inactive || !friend) return - - var/friend_dist = get_dist(src,friend) - - if (friend_dist <= 4) - if(stance == STANCE_IDLE) - if(set_follow(friend)) - handle_stance(STANCE_FOLLOW) - - if (friend_dist <= 1) - if (friend.stat >= DEAD || friend.health <= config.health_threshold_softcrit) - if (prob((friend.stat < DEAD)? 50 : 15)) - var/verb = pick("meows", "mews", "mrowls") - audible_emote(pick("[verb] in distress.", "[verb] anxiously.")) - else - if (prob(5)) - visible_emote(pick("nuzzles [friend].", - "brushes against [friend].", - "rubs against [friend].", - "purrs.")) - else if (friend.health <= 50) - if (prob(10)) - var/verb = pick("meows", "mews", "mrowls") - audible_emote("[verb] anxiously.") - -/mob/living/simple_animal/cat/fluff/verb/become_friends() - set name = "Become Friends" - set category = "IC" - set src in view(1) - - if(!friend) - var/mob/living/carbon/human/H = usr - if(istype(H) && (!befriend_job || H.job == befriend_job) && (!friend_name || H.real_name == friend_name)) - friend = usr - . = 1 - else if(usr == friend) - . = 1 //already friends, but show success anyways - - if(.) - set_dir(get_dir(src, friend)) - visible_emote(pick("nuzzles [friend].", - "brushes against [friend].", - "rubs against [friend].", - "purrs.")) - else - usr << "[src] ignores you." - return - -//RUNTIME IS ALIVE! SQUEEEEEEEE~ -/mob/living/simple_animal/cat/fluff/Runtime - name = "Runtime" - desc = "Her fur has the look and feel of velvet, and her tail quivers occasionally." - tt_desc = "E Felis silvestris medicalis" //a hypoallergenic breed produced by NT for... medical purposes? Sure. - gender = FEMALE - icon_state = "cat" - item_state = "cat" - befriend_job = "Chief Medical Officer" - -/mob/living/simple_animal/cat/kitten - name = "kitten" - desc = "D'aaawwww" - icon_state = "kitten" - item_state = "kitten" - icon_living = "kitten" - icon_dead = "kitten_dead" - gender = NEUTER - -// Leaving this here for now. -/obj/item/weapon/holder/cat/fluff/bones - name = "Bones" - desc = "It's Bones! Meow." - gender = MALE - icon_state = "cat3" - -/mob/living/simple_animal/cat/fluff/bones - name = "Bones" - desc = "That's Bones the cat. He's a laid back, black cat. Meow." - gender = MALE - icon_state = "cat3" - item_state = "cat3" - holder_type = /obj/item/weapon/holder/cat/fluff/bones - friend_name = "Erstatz Vryroxes" - -/mob/living/simple_animal/cat/kitten/New() - gender = pick(MALE, FEMALE) - ..() diff --git a/code/modules/mob/living/simple_animal/animals/farm_animals.dm b/code/modules/mob/living/simple_animal/animals/farm_animals.dm deleted file mode 100644 index 534bbf6000..0000000000 --- a/code/modules/mob/living/simple_animal/animals/farm_animals.dm +++ /dev/null @@ -1,292 +0,0 @@ -//goat -/mob/living/simple_animal/retaliate/goat - name = "goat" - desc = "Not known for their pleasant disposition." - tt_desc = "E Oreamnos americanus" - icon_state = "goat" - icon_living = "goat" - icon_dead = "goat_dead" - - faction = "goat" - intelligence_level = SA_ANIMAL - - health = 40 - turns_per_move = 5 - see_in_dark = 6 - - response_help = "pets" - response_disarm = "gently pushes aside" - response_harm = "kicks" - - melee_damage_lower = 1 - melee_damage_upper = 5 - attacktext = list("kicked") - - speak_chance = 1 - speak = list("EHEHEHEHEH","eh?") - speak_emote = list("brays") - emote_hear = list("brays") - emote_see = list("shakes its head", "stamps a foot", "glares around") - - meat_amount = 4 - meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat - - var/datum/reagents/udder = null - -/mob/living/simple_animal/retaliate/goat/New() - udder = new(50) - udder.my_atom = src - ..() - -/mob/living/simple_animal/retaliate/goat/Life() - . = ..() - if(.) - if(stat == CONSCIOUS) - if(udder && prob(5)) - udder.add_reagent("milk", rand(5, 10)) - - if(locate(/obj/effect/plant) in loc) - var/obj/effect/plant/SV = locate() in loc - SV.die_off(1) - - if(locate(/obj/machinery/portable_atmospherics/hydroponics/soil/invisible) in loc) - var/obj/machinery/portable_atmospherics/hydroponics/soil/invisible/SP = locate() in loc - qdel(SP) - - if(!pulledby) - var/obj/effect/plant/food - food = locate(/obj/effect/plant) in oview(5,loc) - if(food) - var/step = get_step_to(src, food, 0) - Move(step) - -/mob/living/simple_animal/retaliate/goat/react_to_attack() - . = ..() - if(.) - visible_message("[src] gets an evil-looking gleam in their eye.") - -/mob/living/simple_animal/retaliate/goat/Move() - ..() - if(!stat) - for(var/obj/effect/plant/SV in loc) - SV.die_off(1) - -/mob/living/simple_animal/retaliate/goat/attackby(var/obj/item/O as obj, var/mob/user as mob) - var/obj/item/weapon/reagent_containers/glass/G = O - if(stat == CONSCIOUS && istype(G) && G.is_open_container()) - user.visible_message("[user] milks [src] using \the [O].") - var/transfered = udder.trans_id_to(G, "milk", rand(5,10)) - if(G.reagents.total_volume >= G.volume) - user << "The [O] is full." - if(!transfered) - user << "The udder is dry. Wait a bit longer..." - else - ..() -//cow -/mob/living/simple_animal/cow - name = "cow" - desc = "Known for their milk, just don't tip them over." - tt_desc = "E Bos taurus" - icon_state = "cow" - icon_living = "cow" - icon_dead = "cow_dead" - icon_gib = "cow_gib" - intelligence_level = SA_ANIMAL - - health = 50 - turns_per_move = 5 - see_in_dark = 6 - - response_help = "pets" - response_disarm = "gently pushes aside" - response_harm = "kicks" - attacktext = list("kicked") - - speak_chance = 1 - speak = list("moo?","moo","MOOOOOO") - speak_emote = list("moos","moos hauntingly") - emote_hear = list("brays") - emote_see = list("shakes its head") - - meat_amount = 6 - meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat - - var/datum/reagents/udder = null - -/mob/living/simple_animal/cow/New() - udder = new(50) - udder.my_atom = src - ..() - -/mob/living/simple_animal/cow/attackby(var/obj/item/O as obj, var/mob/user as mob) - var/obj/item/weapon/reagent_containers/glass/G = O - if(stat == CONSCIOUS && istype(G) && G.is_open_container()) - user.visible_message("[user] milks [src] using \the [O].") - var/transfered = udder.trans_id_to(G, "milk", rand(5,10)) - if(G.reagents.total_volume >= G.volume) - user << "The [O] is full." - if(!transfered) - user << "The udder is dry. Wait a bit longer..." - else - ..() - -/mob/living/simple_animal/cow/Life() - . = ..() - if(stat == CONSCIOUS) - if(udder && prob(5)) - udder.add_reagent("milk", rand(5, 10)) - -/mob/living/simple_animal/cow/attack_hand(mob/living/carbon/M as mob) - if(!stat && M.a_intent == I_DISARM && icon_state != icon_dead) - M.visible_message("[M] tips over [src].","You tip over [src].") - Weaken(30) - icon_state = icon_dead - spawn(rand(20,50)) - if(!stat && M) - icon_state = icon_living - var/list/responses = list( "[src] looks at you imploringly.", - "[src] looks at you pleadingly", - "[src] looks at you with a resigned expression.", - "[src] seems resigned to its fate.") - M << pick(responses) - else - ..() - -/mob/living/simple_animal/chick - name = "\improper chick" - desc = "Adorable! They make such a racket though." - tt_desc = "E Gallus gallus" - icon_state = "chick" - icon_living = "chick" - icon_dead = "chick_dead" - icon_gib = "chick_gib" - intelligence_level = SA_ANIMAL - - health = 1 - turns_per_move = 2 - - pass_flags = PASSTABLE | PASSGRILLE - mob_size = MOB_MINISCULE - - response_help = "pets" - response_disarm = "gently pushes aside" - response_harm = "kicks" - attacktext = list("kicked") - - has_langs = list("Bird") - speak_chance = 2 - speak = list("Cherp.","Cherp?","Chirrup.","Cheep!") - speak_emote = list("cheeps") - emote_hear = list("cheeps") - emote_see = list("pecks at the ground","flaps its tiny wings") - - meat_amount = 1 - meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat - - var/amount_grown = 0 - -/mob/living/simple_animal/chick/New() - ..() - pixel_x = rand(-6, 6) - pixel_y = rand(0, 10) - -/mob/living/simple_animal/chick/Life() - . =..() - if(!.) - return - if(!stat) - amount_grown += rand(1,2) - if(amount_grown >= 100) - new /mob/living/simple_animal/chicken(src.loc) - qdel(src) - -var/const/MAX_CHICKENS = 50 -var/global/chicken_count = 0 - -/mob/living/simple_animal/chicken - name = "\improper chicken" - desc = "Hopefully the eggs are good this season." - tt_desc = "E Gallus gallus" - icon_state = "chicken" - icon_living = "chicken" - icon_dead = "chicken_dead" - intelligence_level = SA_ANIMAL - - health = 10 - turns_per_move = 3 - pass_flags = PASSTABLE - mob_size = MOB_SMALL - - response_help = "pets" - response_disarm = "gently pushes aside" - response_harm = "kicks" - attacktext = list("kicked") - - has_langs = list("Bird") - speak_chance = 2 - speak = list("Cluck!","BWAAAAARK BWAK BWAK BWAK!","Bwaak bwak.") - speak_emote = list("clucks","croons") - emote_hear = list("clucks") - emote_see = list("pecks at the ground","flaps its wings viciously") - - meat_amount = 2 - meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat - - var/eggsleft = 0 - var/body_color - -/mob/living/simple_animal/chicken/New() - ..() - if(!body_color) - body_color = pick( list("brown","black","white") ) - icon_state = "chicken_[body_color]" - icon_living = "chicken_[body_color]" - icon_dead = "chicken_[body_color]_dead" - pixel_x = rand(-6, 6) - pixel_y = rand(0, 10) - chicken_count += 1 - -/mob/living/simple_animal/chicken/death() - ..() - chicken_count -= 1 - -/mob/living/simple_animal/chicken/attackby(var/obj/item/O as obj, var/mob/user as mob) - if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/grown)) //feedin' dem chickens - var/obj/item/weapon/reagent_containers/food/snacks/grown/G = O - if(G.seed && G.seed.kitchen_tag == "wheat") - if(!stat && eggsleft < 8) - user.visible_message("[user] feeds [O] to [name]! It clucks happily.","You feed [O] to [name]! It clucks happily.") - user.drop_item() - qdel(O) - eggsleft += rand(1, 4) - else - user << "[name] doesn't seem hungry!" - else - user << "[name] doesn't seem interested in that." - else - ..() - -/mob/living/simple_animal/chicken/Life() - . =..() - if(!.) - return - if(!stat && prob(3) && eggsleft > 0) - visible_message("[src] [pick("lays an egg.","squats down and croons.","begins making a huge racket.","begins clucking raucously.")]") - eggsleft-- - var/obj/item/weapon/reagent_containers/food/snacks/egg/E = new(get_turf(src)) - E.pixel_x = rand(-6,6) - E.pixel_y = rand(-6,6) - if(chicken_count < MAX_CHICKENS && prob(10)) - START_PROCESSING(SSobj, E) - -/obj/item/weapon/reagent_containers/food/snacks/egg/var/amount_grown = 0 -/obj/item/weapon/reagent_containers/food/snacks/egg/process() - if(isturf(loc)) - amount_grown += rand(1,2) - if(amount_grown >= 100) - visible_message("[src] hatches with a quiet cracking sound.") - new /mob/living/simple_animal/chick(get_turf(src)) - STOP_PROCESSING(SSobj, src) - qdel(src) - else - STOP_PROCESSING(SSobj, src) diff --git a/code/modules/mob/living/simple_animal/animals/spiderbot.dm b/code/modules/mob/living/simple_animal/animals/spiderbot.dm index 7e1cac8c80..35b5a56926 100644 --- a/code/modules/mob/living/simple_animal/animals/spiderbot.dm +++ b/code/modules/mob/living/simple_animal/animals/spiderbot.dm @@ -150,8 +150,10 @@ return 0 else user << "You short out the security protocols and overload [src]'s cell, priming it to explode in a short time." - spawn(100) src << "Your cell seems to be outputting a lot of power..." - spawn(200) src << "Internal heat sensors are spiking! Something is badly wrong with your cell!" + spawn(100) + to_chat(src, "Your cell seems to be outputting a lot of power...") + spawn(200) + to_chat(src, "Internal heat sensors are spiking! Something is badly wrong with your cell!") spawn(300) src.explode() /mob/living/simple_mob/spiderbot/proc/transfer_personality(var/obj/item/device/mmi/M as obj) @@ -263,7 +265,7 @@ return -1 if(held_item) - src << "You are already holding \the [held_item]" + to_chat(src, "You are already holding \the [held_item]") return 1 var/list/items = list() @@ -282,10 +284,10 @@ "You grab \the [held_item].", \ "You hear a skittering noise and a clink.") return held_item - src << "\The [selection] is too far away." + to_chat(src, "\The [selection] is too far away.") return 0 - src << "There is nothing of interest to take." + to_chat(src, "There is nothing of interest to take.") return 0 /mob/living/simple_mob/spiderbot/examine(mob/user) diff --git a/code/modules/mob/living/simple_animal/slime/subtypes.dm b/code/modules/mob/living/simple_animal/slime/subtypes.dm deleted file mode 100644 index 75f33cdcef..0000000000 --- a/code/modules/mob/living/simple_animal/slime/subtypes.dm +++ /dev/null @@ -1,748 +0,0 @@ -// Tier 1 - -/mob/living/simple_animal/slime/purple - desc = "This slime is rather toxic to handle, as it is poisonous." - color = "#CC23FF" - slime_color = "purple" - coretype = /obj/item/slime_extract/purple - reagent_injected = "toxin" - - description_info = "This slime spreads a toxin when it attacks. A biosuit or other thick armor can protect from the toxic attack." - - slime_mutation = list( - /mob/living/simple_animal/slime/dark_purple, - /mob/living/simple_animal/slime/dark_blue, - /mob/living/simple_animal/slime/green, - /mob/living/simple_animal/slime - ) - - -/mob/living/simple_animal/slime/orange - desc = "This slime is known to be flammable and can ignite enemies." - color = "#FFA723" - slime_color = "orange" - coretype = /obj/item/slime_extract/orange - - description_info = "Attacks from this slime can ignite you. A firesuit can protect from the burning attacks of this slime." - - slime_mutation = list( - /mob/living/simple_animal/slime/dark_purple, - /mob/living/simple_animal/slime/yellow, - /mob/living/simple_animal/slime/red, - /mob/living/simple_animal/slime - ) - -/mob/living/simple_animal/slime/orange/post_attack(mob/living/L, intent) - if(intent != I_HELP) - L.adjust_fire_stacks(1) - if(prob(25)) - L.IgniteMob() - ..() - -/mob/living/simple_animal/slime/blue - desc = "This slime produces 'cryotoxin' and uses it against their foes. Very deadly to other slimes." - color = "#19FFFF" - slime_color = "blue" - coretype = /obj/item/slime_extract/blue - reagent_injected = "cryotoxin" - - description_info = "Attacks from this slime can chill you. A biosuit or other thick armor can protect from the chilling attack." - - slime_mutation = list( - /mob/living/simple_animal/slime/dark_blue, - /mob/living/simple_animal/slime/silver, - /mob/living/simple_animal/slime/pink, - /mob/living/simple_animal/slime - ) - - -/mob/living/simple_animal/slime/metal - desc = "This slime is a lot more resilient than the others, due to having a metamorphic metallic and sloped surface." - color = "#5F5F5F" - slime_color = "metal" - shiny = 1 - coretype = /obj/item/slime_extract/metal - - description_info = "This slime is a lot more durable and tough to damage than the others." - - resistance = 10 // Sloped armor is strong. - maxHealth = 250 - maxHealth_adult = 350 - - slime_mutation = list( - /mob/living/simple_animal/slime/silver, - /mob/living/simple_animal/slime/yellow, - /mob/living/simple_animal/slime/gold, - /mob/living/simple_animal/slime - ) - -// Tier 2 - -/mob/living/simple_animal/slime/yellow - desc = "This slime is very conductive, and is known to use electricity as a means of defense moreso than usual for slimes." - color = "#FFF423" - slime_color = "yellow" - coretype = /obj/item/slime_extract/yellow - - ranged = 1 - shoot_range = 3 - firing_lines = 1 - projectiletype = /obj/item/projectile/beam/lightning/slime - projectilesound = 'sound/weapons/gauss_shoot.ogg' // Closest thing to a 'thunderstrike' sound we have. - glows = TRUE - - description_info = "This slime will fire lightning attacks at enemies if they are at range, and generate electricity \ - for their stun attack faster than usual. Insulative or reflective armor can protect from the lightning." - - slime_mutation = list( - /mob/living/simple_animal/slime/bluespace, - /mob/living/simple_animal/slime/bluespace, - /mob/living/simple_animal/slime/metal, - /mob/living/simple_animal/slime/orange - ) - -/mob/living/simple_animal/slime/yellow/handle_regular_status_updates() - if(stat == CONSCIOUS) - if(prob(25)) - power_charge = between(0, power_charge + 1, 10) - ..() - -/obj/item/projectile/beam/lightning/slime - power = 15 - -/mob/living/simple_animal/slime/yellow/ClosestDistance() // Needed or else they won't eat monkeys outside of melee range. - if(target_mob && ishuman(target_mob)) - var/mob/living/carbon/human/H = target_mob - if(istype(H.species, /datum/species/monkey)) - return 1 - return ..() - - -/mob/living/simple_animal/slime/dark_purple - desc = "This slime produces ever-coveted phoron. Risky to handle but very much worth it." - color = "#660088" - slime_color = "dark purple" - coretype = /obj/item/slime_extract/dark_purple - reagent_injected = "phoron" - - description_info = "This slime applies phoron to enemies it attacks. A biosuit or other thick armor can protect from the toxic attack. \ - If hit with a burning attack, it will erupt in flames." - - slime_mutation = list( - /mob/living/simple_animal/slime/purple, - /mob/living/simple_animal/slime/orange, - /mob/living/simple_animal/slime/ruby, - /mob/living/simple_animal/slime/ruby - ) - -/mob/living/simple_animal/slime/dark_purple/proc/ignite() - visible_message("\The [src] erupts in an inferno!") - for(var/turf/simulated/target_turf in view(2, src)) - target_turf.assume_gas("phoron", 30, 1500+T0C) - spawn(0) - target_turf.hotspot_expose(1500+T0C, 400) - qdel(src) - -/mob/living/simple_animal/slime/dark_purple/ex_act(severity) - log_and_message_admins("[src] ignited due to a chain reaction with an explosion.") - ignite() - -/mob/living/simple_animal/slime/dark_purple/fire_act(datum/gas_mixture/air, temperature, volume) - log_and_message_admins("[src] ignited due to exposure to fire.") - ignite() - -/mob/living/simple_animal/slime/dark_purple/bullet_act(var/obj/item/projectile/P, var/def_zone) - if(P.damage_type && P.damage_type == BURN && P.damage) // Most bullets won't trigger the explosion, as a mercy towards Security. - log_and_message_admins("[src] ignited due to bring hit by a burning projectile[P.firer ? " by [key_name(P.firer)]" : ""].") - ignite() - else - ..() - -/mob/living/simple_animal/slime/dark_purple/attackby(var/obj/item/weapon/W, var/mob/user) - if(istype(W) && W.force && W.damtype == BURN) - log_and_message_admins("[src] ignited due to being hit with a burning weapon ([W]) by [key_name(user)].") - ignite() - else - ..() - - - - -/mob/living/simple_animal/slime/dark_blue - desc = "This slime makes other entities near it feel much colder, and is more resilient to the cold. It tends to kill other slimes rather quickly." - color = "#2398FF" - glows = TRUE - slime_color = "dark blue" - coretype = /obj/item/slime_extract/dark_blue - - description_info = "This slime is immune to the cold, however water will still kill it. A winter coat or other cold-resistant clothing can protect from the chilling aura." - - slime_mutation = list( - /mob/living/simple_animal/slime/purple, - /mob/living/simple_animal/slime/blue, - /mob/living/simple_animal/slime/cerulean, - /mob/living/simple_animal/slime/cerulean - ) - - minbodytemp = 0 - cold_damage_per_tick = 0 - -/mob/living/simple_animal/slime/dark_blue/Life() - if(stat != DEAD) - cold_aura() - ..() - -/mob/living/simple_animal/slime/dark_blue/proc/cold_aura() - for(var/mob/living/L in view(2, src)) - var/protection = L.get_cold_protection() - - if(protection < 1) - var/cold_factor = abs(protection - 1) - var/delta = -20 - delta *= cold_factor - L.bodytemperature = max(50, L.bodytemperature + delta) - var/turf/T = get_turf(src) - var/datum/gas_mixture/env = T.return_air() - if(env) - env.add_thermal_energy(-10 * 1000) - -/mob/living/simple_animal/slime/dark_blue/get_cold_protection() - return 1 // This slime is immune to cold. - -// Surface variant -/mob/living/simple_animal/slime/dark_blue/feral - name = "feral slime" - desc = "The result of slimes escaping containment from some xenobiology lab. The slime makes other entities near it feel much colder, \ - and it is more resilient to the cold. These qualities have made this color of slime able to thrive on a harsh, cold world and is able to rival \ - the ferocity of other apex predators in this region of Sif. As such, it is a very invasive species." - description_info = "This slime makes other entities near it feel much colder, and is more resilient to the cold. It also has learned advanced combat tactics from \ - having to endure the harsh world outside its lab. Note that processing this large slime will give six cores." - icon_scale_x = 2 - icon_scale_y = 2 - optimal_combat = TRUE // Gotta be sharp to survive out there. - rabid = TRUE - rainbow_core_candidate = FALSE - cores = 6 - maxHealth = 150 - maxHealth_adult = 250 - type_on_death = /mob/living/simple_animal/slime/dark_blue // Otherwise infinite slimes might occur. - pixel_y = -10 // Since the base sprite isn't centered properly, the pixel auto-adjustment needs some help. - -/mob/living/simple_animal/slime/dark_blue/feral/New() - ..() - make_adult() - -/mob/living/simple_animal/slime/silver - desc = "This slime is shiny, and can deflect lasers or other energy weapons directed at it." - color = "#AAAAAA" - slime_color = "silver" - coretype = /obj/item/slime_extract/silver - shiny = TRUE - - description_info = "Tasers, including the slime version, are ineffective against this slime. The slimebation still works." - - slime_mutation = list( - /mob/living/simple_animal/slime/metal, - /mob/living/simple_animal/slime/blue, - /mob/living/simple_animal/slime/amber, - /mob/living/simple_animal/slime/amber - ) - -/mob/living/simple_animal/slime/silver/bullet_act(var/obj/item/projectile/P, var/def_zone) - if(istype(P,/obj/item/projectile/beam) || istype(P, /obj/item/projectile/energy)) - visible_message("\The [src] reflects \the [P]!") - - // Find a turf near or on the original location to bounce to - var/new_x = P.starting.x + pick(0, 0, 0, -1, 1, -2, 2) - var/new_y = P.starting.y + pick(0, 0, 0, -1, 1, -2, 2) - var/turf/curloc = get_turf(src) - - // redirect the projectile - P.redirect(new_x, new_y, curloc, src) - return PROJECTILE_CONTINUE // complete projectile permutation - else - ..() - - -// Tier 3 - -/mob/living/simple_animal/slime/bluespace - desc = "Trapping this slime in a cell is generally futile, as it can teleport at will." - color = null - slime_color = "bluespace" - icon_state_override = "bluespace" - coretype = /obj/item/slime_extract/bluespace - - description_info = "This slime will teleport to attack something if it is within a range of seven tiles. The teleport has a cooldown of five seconds." - - slime_mutation = list( - /mob/living/simple_animal/slime/bluespace, - /mob/living/simple_animal/slime/bluespace, - /mob/living/simple_animal/slime/yellow, - /mob/living/simple_animal/slime/yellow - ) - - spattack_prob = 100 - spattack_min_range = 3 - spattack_max_range = 7 - var/last_tele = null // Uses world.time - var/tele_cooldown = 5 SECONDS - -/mob/living/simple_animal/slime/bluespace/ClosestDistance() // Needed or the SA AI won't ever try to teleport. - if(world.time > last_tele + tele_cooldown) - return spattack_max_range - 1 - return ..() - -/mob/living/simple_animal/slime/bluespace/SpecialAtkTarget() - // Teleport attack. - if(!target_mob) - to_chat(src, "There's nothing to teleport to.") - return FALSE - - if(world.time < last_tele + tele_cooldown) - to_chat(src, "You can't teleport right now, wait a few seconds.") - return FALSE - - var/list/nearby_things = range(1, target_mob) - var/list/valid_turfs = list() - - // All this work to just go to a non-dense tile. - for(var/turf/potential_turf in nearby_things) - var/valid_turf = TRUE - if(potential_turf.density) - continue - for(var/atom/movable/AM in potential_turf) - if(AM.density) - valid_turf = FALSE - if(valid_turf) - valid_turfs.Add(potential_turf) - - - - var/turf/T = get_turf(src) - var/turf/target_turf = pick(valid_turfs) - - if(!target_turf) - to_chat(src, "There wasn't an unoccupied spot to teleport to.") - return FALSE - - var/datum/effect/effect/system/spark_spread/s1 = new /datum/effect/effect/system/spark_spread - s1.set_up(5, 1, T) - var/datum/effect/effect/system/spark_spread/s2 = new /datum/effect/effect/system/spark_spread - s2.set_up(5, 1, target_turf) - - - T.visible_message("\The [src] vanishes!") - s1.start() - - forceMove(target_turf) - playsound(target_turf, 'sound/effects/phasein.ogg', 50, 1) - to_chat(src, "You teleport to \the [target_turf].") - - target_turf.visible_message("\The [src] appears!") - s2.start() - - last_tele = world.time - - if(Adjacent(target_mob)) - PunchTarget() - return TRUE - -/mob/living/simple_animal/slime/ruby - desc = "This slime has great physical strength." - color = "#FF3333" - slime_color = "ruby" - shiny = TRUE - glows = TRUE - coretype = /obj/item/slime_extract/ruby - - description_info = "This slime is unnaturally stronger, allowing it to hit much harder, take less damage, and be stunned for less time. \ - Their glomp attacks also send the victim flying." - - slime_mutation = list( - /mob/living/simple_animal/slime/dark_purple, - /mob/living/simple_animal/slime/dark_purple, - /mob/living/simple_animal/slime/ruby, - /mob/living/simple_animal/slime/ruby - ) - -/mob/living/simple_animal/slime/ruby/New() - ..() - add_modifier(/datum/modifier/slime_strength, null, src) // Slime is always swole. - -/mob/living/simple_animal/slime/ruby/DoPunch(var/mob/living/L) - ..() // Do regular attacks. - - if(istype(L)) - if(a_intent == I_HURT) - visible_message("\The [src] sends \the [L] flying with the impact!") - playsound(src, "punch", 50, 1) - L.Weaken(1) - var/throwdir = get_dir(src, L) - L.throw_at(get_edge_target_turf(L, throwdir), 3, 1, src) - - -/mob/living/simple_animal/slime/amber - desc = "This slime seems to be an expert in the culinary arts, as they create their own food to share with others. \ - They would probably be very important to other slimes, if the other colors didn't try to kill them." - color = "#FFBB00" - slime_color = "amber" - shiny = TRUE - glows = TRUE - coretype = /obj/item/slime_extract/amber - - description_info = "This slime feeds nearby entities passively while it is alive. This can cause uncontrollable \ - slime growth and reproduction if not kept in check. The amber slime cannot feed itself, but can be fed by other amber slimes." - - slime_mutation = list( - /mob/living/simple_animal/slime/silver, - /mob/living/simple_animal/slime/silver, - /mob/living/simple_animal/slime/amber, - /mob/living/simple_animal/slime/amber - ) - -/mob/living/simple_animal/slime/amber/Life() - if(stat != DEAD) - feed_aura() - ..() - -/mob/living/simple_animal/slime/amber/proc/feed_aura() - for(var/mob/living/L in view(2, src)) - if(L == src) // Don't feed themselves, or it is impossible to stop infinite slimes without killing all of the ambers. - continue - if(isslime(L)) - var/mob/living/simple_animal/slime/S = L - S.adjust_nutrition(rand(15, 25)) - if(ishuman(L)) - var/mob/living/carbon/human/H = L - if(H.isSynthetic()) - continue - H.nutrition = between(0, H.nutrition + rand(15, 25), 600) - - - -/mob/living/simple_animal/slime/cerulean - desc = "This slime is generally superior in a wide range of attributes, compared to the common slime. The jack of all trades, but master of none." - color = "#4F7EAA" - slime_color = "cerulean" - coretype = /obj/item/slime_extract/cerulean - - // Less than the specialized slimes, but higher than the rest. - maxHealth = 200 - maxHealth_adult = 250 - - melee_damage_lower = 10 - melee_damage_upper = 30 - - move_to_delay = 3 - - - - slime_mutation = list( - /mob/living/simple_animal/slime/dark_blue, - /mob/living/simple_animal/slime/dark_blue, - /mob/living/simple_animal/slime/cerulean, - /mob/living/simple_animal/slime/cerulean - ) - -// Tier 4 - -/mob/living/simple_animal/slime/red - desc = "This slime is full of energy, and very aggressive. 'The red ones go faster.' seems to apply here." - color = "#FF3333" - slime_color = "red" - coretype = /obj/item/slime_extract/red - move_to_delay = 3 // The red ones go faster. - - description_info = "This slime is faster than the others. Attempting to discipline this slime will always cause it to go berserk." - - slime_mutation = list( - /mob/living/simple_animal/slime/red, - /mob/living/simple_animal/slime/oil, - /mob/living/simple_animal/slime/oil, - /mob/living/simple_animal/slime/orange - ) - - -/mob/living/simple_animal/slime/red/adjust_discipline(amount) - if(amount > 0) - if(!rabid) - enrage() // How dare you try to control the red slime. - say("Grrr...!") - -/mob/living/simple_animal/slime/red/enrage() - ..() - add_modifier(/datum/modifier/berserk, 30 SECONDS) - - -/mob/living/simple_animal/slime/green - desc = "This slime is radioactive." - color = "#14FF20" - slime_color = "green" - coretype = /obj/item/slime_extract/green - glows = TRUE - reagent_injected = "radium" - var/rads = 25 - - description_info = "This slime will irradiate anything nearby passively, and will inject radium on attack. \ - A radsuit or other thick and radiation-hardened armor can protect from this. It will only radiate while alive." - - slime_mutation = list( - /mob/living/simple_animal/slime/purple, - /mob/living/simple_animal/slime/green, - /mob/living/simple_animal/slime/emerald, - /mob/living/simple_animal/slime/emerald - ) - -/mob/living/simple_animal/slime/green/Life() - if(stat != DEAD) - irradiate() - ..() - -/mob/living/simple_animal/slime/green/proc/irradiate() - SSradiation.radiate(src, rads) - - -/mob/living/simple_animal/slime/pink - desc = "This slime has regenerative properties." - color = "#FF0080" - slime_color = "pink" - coretype = /obj/item/slime_extract/pink - glows = TRUE - - description_info = "This slime will passively heal nearby entities within two tiles, including itself. It will only do this while alive." - - slime_mutation = list( - /mob/living/simple_animal/slime/blue, - /mob/living/simple_animal/slime/light_pink, - /mob/living/simple_animal/slime/light_pink, - /mob/living/simple_animal/slime/pink - ) - -/mob/living/simple_animal/slime/pink/Life() - if(stat != DEAD) - heal_aura() - ..() - -/mob/living/simple_animal/slime/pink/proc/heal_aura() - for(var/mob/living/L in view(src, 2)) - if(L.stat == DEAD || L == target_mob) - continue - L.add_modifier(/datum/modifier/slime_heal, 5 SECONDS, src) - -/datum/modifier/slime_heal - name = "slime mending" - desc = "You feel somewhat gooy." - mob_overlay_state = "pink_sparkles" - - on_created_text = "Twinkling spores of goo surround you. It makes you feel healthier." - on_expired_text = "The spores of goo have faded, although you feel much healthier than before." - stacks = MODIFIER_STACK_EXTEND - -/datum/modifier/slime_heal/tick() - if(holder.stat == DEAD) // Required or else simple animals become immortal. - expire() - - if(ishuman(holder)) // Robolimbs need this code sadly. - var/mob/living/carbon/human/H = holder - for(var/obj/item/organ/external/E in H.organs) - var/obj/item/organ/external/O = E - O.heal_damage(2, 2, 0, 1) - else - holder.adjustBruteLoss(-2) - holder.adjustFireLoss(-2) - - holder.adjustToxLoss(-2) - holder.adjustOxyLoss(-2) - holder.adjustCloneLoss(-1) - - - -/mob/living/simple_animal/slime/gold - desc = "This slime absorbs energy, and cannot be stunned by normal means." - color = "#EEAA00" - shiny = TRUE - slime_color = "gold" - coretype = /obj/item/slime_extract/gold - description_info = "This slime is immune to the slimebaton and taser, and will actually charge the slime, however it will still discipline the slime." - - slime_mutation = list( - /mob/living/simple_animal/slime/metal, - /mob/living/simple_animal/slime/gold, - /mob/living/simple_animal/slime/sapphire, - /mob/living/simple_animal/slime/sapphire - ) - -/mob/living/simple_animal/slime/gold/Weaken(amount) - power_charge = between(0, power_charge + amount, 10) - return - -/mob/living/simple_animal/slime/gold/Stun(amount) - power_charge = between(0, power_charge + amount, 10) - return - -/mob/living/simple_animal/slime/gold/get_description_interaction() // So it doesn't say to use a baton on them. - return list() - - -// Tier 5 - -/mob/living/simple_animal/slime/oil - desc = "This slime is explosive and volatile. Smoking near it is probably a bad idea." - color = "#333333" - slime_color = "oil" - shiny = TRUE - coretype = /obj/item/slime_extract/oil - - description_info = "If this slime suffers damage from a fire or heat based source, or if it is caught inside \ - an explosion, it will explode. Rabid oil slimes will charge at enemies, then suicide-bomb themselves. \ - Bomb suits can protect from the explosion." - - slime_mutation = list( - /mob/living/simple_animal/slime/oil, - /mob/living/simple_animal/slime/oil, - /mob/living/simple_animal/slime/red, - /mob/living/simple_animal/slime/red - ) - -/mob/living/simple_animal/slime/oil/proc/explode() - if(stat != DEAD) - // explosion(src.loc, 1, 2, 4) - explosion(src.loc, 0, 2, 4) // A bit weaker since the suicide charger tended to gib the poor sod being targeted. - if(src) // Delete ourselves if the explosion didn't do it. - qdel(src) - -/mob/living/simple_animal/slime/oil/post_attack(var/mob/living/L, var/intent = I_HURT) - if(!rabid) - return ..() - if(intent == I_HURT || intent == I_GRAB) - say(pick("Sacrifice...!", "Sssss...", "Boom...!")) - sleep(2 SECOND) - log_and_message_admins("[src] has suicide-bombed themselves while trying to kill \the [L].") - explode() - -/mob/living/simple_animal/slime/oil/ex_act(severity) - log_and_message_admins("[src] exploded due to a chain reaction with another explosion.") - explode() - -/mob/living/simple_animal/slime/oil/fire_act(datum/gas_mixture/air, temperature, volume) - log_and_message_admins("[src] exploded due to exposure to fire.") - explode() - -/mob/living/simple_animal/slime/oil/bullet_act(var/obj/item/projectile/P, var/def_zone) - if(P.damage_type && P.damage_type == BURN && P.damage) // Most bullets won't trigger the explosion, as a mercy towards Security. - log_and_message_admins("[src] exploded due to bring hit by a burning projectile[P.firer ? " by [key_name(P.firer)]" : ""].") - explode() - else - ..() - -/mob/living/simple_animal/slime/oil/attackby(var/obj/item/weapon/W, var/mob/user) - if(istype(W) && W.force && W.damtype == BURN) - log_and_message_admins("[src] exploded due to being hit with a burning weapon ([W]) by [key_name(user)].") - explode() - else - ..() - - -/mob/living/simple_animal/slime/sapphire - desc = "This slime seems a bit brighter than the rest, both figuratively and literally." - color = "#2398FF" - slime_color = "sapphire" - shiny = TRUE - glows = TRUE - coretype = /obj/item/slime_extract/sapphire - - optimal_combat = TRUE // Lift combat AI restrictions to look smarter. - run_at_them = FALSE // Use fancy A* pathing. - astar_adjacent_proc = /turf/proc/TurfsWithAccess // Normal slimes don't care about cardinals (because BYOND) so smart slimes shouldn't as well. - move_to_delay = 3 // A* chasing is slightly slower in terms of movement speed than regular pathing so reducing this hopefully makes up for that. - - description_info = "This slime uses more robust tactics when fighting and won't hold back, so it is dangerous to be alone \ - with one if hostile, and especially dangerous if they outnumber you." - - slime_mutation = list( - /mob/living/simple_animal/slime/sapphire, - /mob/living/simple_animal/slime/sapphire, - /mob/living/simple_animal/slime/gold, - /mob/living/simple_animal/slime/gold - ) - -/mob/living/simple_animal/slime/emerald - desc = "This slime is faster than usual, even more so than the red slimes." - color = "#22FF22" - shiny = TRUE - glows = TRUE - slime_color = "emerald" - coretype = /obj/item/slime_extract/emerald - - description_info = "This slime will make everything around it, and itself, faster for a few seconds, if close by." - move_to_delay = 2 - - slime_mutation = list( - /mob/living/simple_animal/slime/green, - /mob/living/simple_animal/slime/green, - /mob/living/simple_animal/slime/emerald, - /mob/living/simple_animal/slime/emerald - ) - -/mob/living/simple_animal/slime/emerald/Life() - if(stat != DEAD) - zoom_aura() - ..() - -/mob/living/simple_animal/slime/emerald/proc/zoom_aura() - for(var/mob/living/L in view(src, 2)) - if(L.stat == DEAD || L == target_mob) - continue - L.add_modifier(/datum/modifier/technomancer/haste, 5 SECONDS, src) - -/mob/living/simple_animal/slime/light_pink - desc = "This slime seems a lot more peaceful than the others." - color = "#FF8888" - slime_color = "light pink" - coretype = /obj/item/slime_extract/light_pink - - description_info = "This slime is effectively always disciplined initially." - obedience = 5 - discipline = 5 - - slime_mutation = list( - /mob/living/simple_animal/slime/pink, - /mob/living/simple_animal/slime/pink, - /mob/living/simple_animal/slime/light_pink, - /mob/living/simple_animal/slime/light_pink - ) - -// Special -/mob/living/simple_animal/slime/rainbow - desc = "This slime changes colors constantly." - color = null // Only slime subtype that uses a different icon_state. - slime_color = "rainbow" - coretype = /obj/item/slime_extract/rainbow - icon_state_override = "rainbow" - unity = TRUE - - description_info = "This slime is considered to be the same color as all other slime colors at the same time for the purposes of \ - other slimes being friendly to them, and therefore will never be harmed by another slime. \ - Attacking this slime will provoke the wrath of all slimes within range." - - slime_mutation = list( - /mob/living/simple_animal/slime/rainbow, - /mob/living/simple_animal/slime/rainbow, - /mob/living/simple_animal/slime/rainbow, - /mob/living/simple_animal/slime/rainbow - ) - -/mob/living/simple_animal/slime/rainbow/New() - unify() - ..() - -// The RD's pet slime. -/mob/living/simple_animal/slime/rainbow/kendrick - name = "Kendrick" - desc = "The Research Director's pet slime. It shifts colors constantly." - rainbow_core_candidate = FALSE - -/mob/living/simple_animal/slime/rainbow/kendrick/New() - pacify() - ..() \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/simple_mob.dm b/code/modules/mob/living/simple_mob/simple_mob.dm index c70094d579..7cfb5d4156 100644 --- a/code/modules/mob/living/simple_mob/simple_mob.dm +++ b/code/modules/mob/living/simple_mob/simple_mob.dm @@ -106,7 +106,7 @@ var/attack_sharp = FALSE // Is the attack sharp? var/attack_edge = FALSE // Does the attack have an edge? - var/melee_attack_delay = null // If set, the mob will do a windup animation and can miss if the target moves out of the way. + var/melee_attack_delay = 2 // If set, the mob will do a windup animation and can miss if the target moves out of the way. var/ranged_attack_delay = null var/special_attack_delay = null diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_captive.dm b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_captive.dm index f5da079b97..738251b308 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_captive.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_captive.dm @@ -9,7 +9,7 @@ if (src.client) if(client.prefs.muted & MUTE_IC) - src << "You cannot speak in IC (muted)." + to_chat(src, "You cannot speak in IC (muted).") return if(istype(src.loc, /mob/living/simple_mob/animal/borer)) @@ -22,7 +22,7 @@ return say_dead(message) var/mob/living/simple_mob/animal/borer/B = src.loc - src << "You whisper silently, \"[message]\"" + to_chat(src, "You whisper silently, \"[message]\"") B.host << "The captive mind of [src] whispers, \"[message]\"" for (var/mob/M in player_list) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_powers.dm b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_powers.dm index 55dac2492a..dec8dd8ca4 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_powers.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_powers.dm @@ -4,19 +4,19 @@ set desc = "Slither out of your host." if(!host) - src << "You are not inside a host body." + to_chat(src, "You are not inside a host body.") return if(stat) - src << "You cannot leave your host in your current state." + to_chat(src, "You cannot leave your host in your current state.") if(docile) - src << "You are feeling far too docile to do that." + to_chat(src, "You are feeling far too docile to do that.") return if(!host || !src) return - src << "You begin disconnecting from [host]'s synapses and prodding at their internal ear canal." + to_chat(src, "You begin disconnecting from [host]'s synapses and prodding at their internal ear canal.") if(!host.stat) host << "An odd, uncomfortable pressure begins to build inside your skull, behind your ear..." @@ -26,10 +26,10 @@ if(!host || !src) return if(src.stat) - src << "You cannot release your host in your current state." + to_chat(src, "You cannot release your host in your current state.") return - src << "You wiggle out of [host]'s ear and plop to the ground." + to_chat(src, "You wiggle out of [host]'s ear and plop to the ground.") if(host.mind) if(!host.stat) host << "Something slimy wiggles out of your ear and plops to the ground!" @@ -44,11 +44,11 @@ set desc = "Infest a suitable humanoid host." if(host) - src << "You are already within a host." + to_chat(src, "You are already within a host.") return if(stat) - src << "You cannot infest a target in your current state." + to_chat(src, "You cannot infest a target in your current state.") return var/list/choices = list() @@ -57,7 +57,7 @@ choices += C if(!choices.len) - src << "There are no viable hosts within range..." + to_chat(src, "There are no viable hosts within range...") return var/mob/living/carbon/M = input(src,"Who do you wish to infest?") in null|choices @@ -67,7 +67,7 @@ if(!(src.Adjacent(M))) return if(M.has_brain_worms()) - src << "You cannot infest someone who is already infested!" + to_chat(src, "You cannot infest someone who is already infested!") return if(istype(M,/mob/living/carbon/human)) @@ -75,31 +75,31 @@ var/obj/item/organ/external/E = H.organs_by_name[BP_HEAD] if(!E || E.is_stump()) - src << "\The [H] does not have a head!" + to_chat(src, "\The [H] does not have a head!") if(!H.should_have_organ("brain")) - src << "\The [H] does not seem to have an ear canal to breach." + to_chat(src, "\The [H] does not seem to have an ear canal to breach.") return if(H.check_head_coverage()) - src << "You cannot get through that host's protective gear." + to_chat(src, "You cannot get through that host's protective gear.") return M << "Something slimy begins probing at the opening of your ear canal..." - src << "You slither up [M] and begin probing at their ear canal..." + to_chat(src, "You slither up [M] and begin probing at their ear canal...") if(!do_after(src,30)) - src << "As [M] moves away, you are dislodged and fall to the ground." + to_chat(src, "As [M] moves away, you are dislodged and fall to the ground.") return if(!M || !src) return if(src.stat) - src << "You cannot infest a target in your current state." + to_chat(src, "You cannot infest a target in your current state.") return if(M in view(1, src)) - src << "You wiggle into [M]'s ear." + to_chat(src, "You wiggle into [M]'s ear.") if(!M.stat) M << "Something disgusting and slimy wiggles into your ear!" @@ -122,7 +122,7 @@ return else - src << "They are no longer in range!" + to_chat(src, "They are no longer in range!") return /* @@ -132,22 +132,22 @@ set desc = "Take permanent control of a dead host." if(!host) - src << "You are not inside a host body." + to_chat(src, "You are not inside a host body.") return if(host.stat != 2) - src << "Your host is still alive." + to_chat(src, "Your host is still alive.") return if(stat) - src << "You cannot do that in your current state." + to_chat(src, "You cannot do that in your current state.") if(docile) - src << "You are feeling far too docile to do that." + to_chat(src, "You are feeling far too docile to do that.") return - src << "It only takes a few moments to render the dead host brain down into a nutrient-rich slurry..." + to_chat(src, "It only takes a few moments to render the dead host brain down into a nutrient-rich slurry...") replace_brain() */ @@ -157,10 +157,10 @@ var/mob/living/carbon/human/H = host if(!istype(host)) - src << "This host does not have a suitable brain." + to_chat(src, "This host does not have a suitable brain.") return - src << "You settle into the empty brainpan and begin to expand, fusing inextricably with the dead flesh of [H]." + to_chat(src, "You settle into the empty brainpan and begin to expand, fusing inextricably with the dead flesh of [H].") H.add_language("Cortical Link") @@ -204,25 +204,25 @@ set desc = "Push some chemicals into your host's bloodstream." if(!host) - src << "You are not inside a host body." + to_chat(src, "You are not inside a host body.") return if(stat) - src << "You cannot secrete chemicals in your current state." + to_chat(src, "You cannot secrete chemicals in your current state.") if(docile) - src << "You are feeling far too docile to do that." + to_chat(src, "You are feeling far too docile to do that.") return if(chemicals < 50) - src << "You don't have enough chemicals!" + to_chat(src, "You don't have enough chemicals!") var/chem = input("Select a chemical to secrete.", "Chemicals") as null|anything in list("alkysine","bicaridine","hyperzine","tramadol") if(!chem || chemicals < 50 || !host || controlling || !src || stat) //Sanity check. return - src << "You squirt a measure of [chem] from your reservoirs into [host]'s bloodstream." + to_chat(src, "You squirt a measure of [chem] from your reservoirs into [host]'s bloodstream.") host.reagents.add_reagent(chem, 10) chemicals -= 50 @@ -232,15 +232,15 @@ set desc = "Freeze the limbs of a potential host with supernatural fear." if(world.time - used_dominate < 150) - src << "You cannot use that ability again so soon." + to_chat(src, "You cannot use that ability again so soon.") return if(host) - src << "You cannot do that from within a host body." + to_chat(src, "You cannot do that from within a host body.") return if(src.stat) - src << "You cannot do that in your current state." + to_chat(src, "You cannot do that in your current state.") return var/list/choices = list() @@ -249,7 +249,7 @@ choices += C if(world.time - used_dominate < 150) - src << "You cannot use that ability again so soon." + to_chat(src, "You cannot use that ability again so soon.") return var/mob/living/carbon/M = input(src,"Who do you wish to dominate?") in null|choices @@ -257,10 +257,10 @@ if(!M || !src) return if(M.has_brain_worms()) - src << "You cannot infest someone who is already infested!" + to_chat(src, "You cannot infest someone who is already infested!") return - src << "You focus your psychic lance on [M] and freeze their limbs with a wave of terrible dread." + to_chat(src, "You focus your psychic lance on [M] and freeze their limbs with a wave of terrible dread.") M << "You feel a creeping, horrible sense of dread come over you, freezing your limbs and setting your heart racing." M.Weaken(10) @@ -272,18 +272,18 @@ set desc = "Fully connect to the brain of your host." if(!host) - src << "You are not inside a host body." + to_chat(src, "You are not inside a host body.") return if(src.stat) - src << "You cannot do that in your current state." + to_chat(src, "You cannot do that in your current state.") return if(docile) - src << "You are feeling far too docile to do that." + to_chat(src, "You are feeling far too docile to do that.") return - src << "You begin delicately adjusting your connection to the host brain..." + to_chat(src, "You begin delicately adjusting your connection to the host brain...") spawn(100+(host.brainloss*5)) @@ -291,7 +291,7 @@ return else - src << "You plunge your probosci deep into the cortex of the host brain, interfacing directly with their nervous system." + to_chat(src, "You plunge your probosci deep into the cortex of the host brain, interfacing directly with their nervous system.") host << "You feel a strange shifting sensation behind your eyes as an alien consciousness displaces yours." host.add_language("Cortical Link") diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm index b146167218..6cd5ea9c5b 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm @@ -117,3 +117,17 @@ if(prob(poison_chance)) to_chat(L, "You feel a tiny prick.") L.reagents.add_reagent(poison_type, poison_per_bite) + +/mob/living/simple_mob/animal/giant_spider/proc/make_spiderling() + adjust_scale(icon_scale_x * 0.7, icon_scale_y * 0.7) + maxHealth = round(maxHealth * 0.5) + health = round(health * 0.5) + melee_damage_lower *= 0.7 + melee_damage_upper *= 0.7 + + response_harm = "kicks" + + see_in_dark = max(2, round(see_in_dark * 0.6)) + + if(poison_per_bite) + poison_per_bite *= 1.3 diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/webslinger.dm b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/webslinger.dm index ce46c55d4c..d793e1ae53 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/webslinger.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/webslinger.dm @@ -24,6 +24,10 @@ icon_dead = "webslinger_dead" maxHealth = 90 health = 90 + + projectile_dispersion = 12 + projectile_accuracy = -25 + projectilesound = 'sound/weapons/thudswoosh.ogg' projectiletype = /obj/item/projectile/webball base_attack_cooldown = 10 diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/lizard.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/lizard.dm index c8dfe1c3a6..af647587a6 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/lizard.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/lizard.dm @@ -22,3 +22,23 @@ speak_emote = list("hisses") say_list_type = /datum/say_list/lizard + +/mob/living/simple_mob/animal/passive/lizard/large + desc = "A cute, big lizard." + maxHealth = 20 + health = 20 + + melee_damage_lower = 5 + melee_damage_upper = 15 + + attack_sharp = TRUE + +/mob/living/simple_mob/animal/passive/lizard/large/Initialize() + ..() + adjust_scale(rand(12, 20) / 10) + +/mob/living/simple_mob/animal/passive/lizard/large/defensive + maxHealth = 30 + health = 30 + + ai_holder_type = /datum/ai_holder/simple_mob/retaliate/cooperative 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 e1cb92ada3..88d504483e 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 @@ -55,6 +55,12 @@ desc = "A small [body_color] rodent, often seen hiding in maintenance areas and making a nuisance of itself." /mob/living/simple_mob/animal/passive/mouse/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if( ishuman(AM) ) if(!stat) var/mob/M = AM @@ -97,6 +103,17 @@ body_color = "brown" icon_state = "mouse_brown" +/mob/living/simple_mob/animal/passive/mouse/rat + name = "rat" + maxHealth = 20 + health = 20 + + ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive + +/mob/living/simple_mob/animal/passive/mouse/rat/Initialize() + ..() + adjust_scale(1.2) + //TOM IS ALIVE! SQUEEEEEEEE~K :) /mob/living/simple_mob/animal/passive/mouse/brown/Tom name = "Tom" diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm index e86cfd3934..92bddd4f79 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm @@ -9,9 +9,14 @@ desc = "A small rodent, often seen hiding in maintenance areas and making a nuisance of itself. And stealing cheese, or annoying the chef. SQUEAK! <3" -/mob/living/simple_mob/animal/passive/mouse/attack_hand(mob/living/hander) - if(hander.a_intent == I_HELP) //if lime intent - get_scooped(hander) //get scooped + size_multiplier = 0.25 + movement_cooldown = 1 //roughly half the speed of a person + universal_understand = 1 + +/mob/living/simple_mob/animal/passive/mouse/attack_hand(mob/living/L) + if(L.a_intent == I_HELP) //if lime intent + if(!src.attempt_to_scoop(L)) //the superior way to handle scooping, checks size + ..() //mouse too big to grab? pet the large mouse instead else ..() @@ -20,3 +25,33 @@ if((I_HELP) && U.canClick()) //a little snowflakey, but makes it use the same cooldown as interacting with non-inventory objects U.setClickCooldown(U.get_attack_speed()) //if there's a cleaner way in baycode, I'll change this U.visible_message("[U] [M.response_help] \the [M].") + + +/mob/living/simple_mob/animal/passive/mouse/MouseDrop(var/obj/O) //this proc would be very easy to apply to all mobs with holders + if(!(usr == src || O)) + return ..() + if(istype(O, /mob/living) && O.Adjacent(src)) //controls scooping by mobs + var/mob/living/L = O + if(!src.attempt_to_scoop(L, (src == usr))) + return //this way it doesnt default to the generic animal pickup which isnt size restricted + if(istype(O, /obj/item/weapon/storage) && O.Adjacent(src)) //controls diving into storage + var/obj/item/weapon/storage/S = O + var/obj/item/weapon/holder/H = new holder_type(get_turf(src)) //this works weird, but it creates an empty holder, to see if that holder can fit + if(S.can_be_inserted(H) && (src.size_multiplier <= 0.75)) + H.held_mob = src + src.forceMove(H) + visible_message("\the [src] squeezes into \the [S].") + H.forceMove(S) + H.sync(src) + return 1 + else + qdel(H) //this deletes the empty holder if it doesnt work + to_chat(usr,"You can't fit inside \the [S]!") + return 0 + else + ..() + +/mob/living/simple_mob/animal/passive/mouse/resize(var/new_size, var/animate = TRUE) + size_multiplier = max(size_multiplier + 0.75, 1) //keeps sprite sizes consistent, keeps multiplier values low + ..() + size_multiplier = max(size_multiplier - 0.75, 0.25) //the limits here ensure no negative values or infinite shrinkage \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm index 237612acae..3973a17add 100644 --- a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm +++ b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm @@ -159,6 +159,8 @@ loot_list = list(/obj/item/weapon/gun/projectile/automatic/c20r = 100) + projectile_dispersion = 7 + projectile_accuracy = -20 base_attack_cooldown = 5 // Two attacks a second or so. reload_max = 20 @@ -181,6 +183,8 @@ loot_list = list(/obj/item/weapon/gun/energy/laser = 100) + projectile_dispersion = 5 + projectile_accuracy = -20 reload_max = 10 // Ion Rifle @@ -206,6 +210,8 @@ reload_max = 4 reload_time = 1.5 SECONDS // It's a shotgun, it takes a moment + projectile_dispersion = 8 + projectile_accuracy = -40 special_attack_charges = 5 @@ -256,6 +262,9 @@ max_n2 = 0 minbodytemp = 0 + projectile_dispersion = 7 + projectile_accuracy = -20 + corpse = /obj/effect/landmark/mobcorpse/syndicatecommando /mob/living/simple_mob/humanoid/merc/ranged/space/Process_Spacemove(var/check_drift = 0) diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/ranged_damage.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/ranged_damage.dm index bf2e3eb18a..a99d073a53 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/ranged_damage.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/ranged_damage.dm @@ -9,7 +9,8 @@ /mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic name = "ranged hivebot" desc = "A robot with a makeshift integrated ballistic weapon." - + projectile_dispersion = 10 + projectile_accuracy = -20 // This one shoots quickly, and is considerably more dangerous. /mob/living/simple_mob/mechanical/hivebot/ranged_damage/rapid @@ -17,7 +18,8 @@ desc = "A robot with a crude but deadly integrated rifle." base_attack_cooldown = 5 // Two attacks a second or so. player_msg = "You have a rapid fire attack." - + projectile_dispersion = 7 + projectile_accuracy = -10 // Shoots deadly lasers. /mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser @@ -26,7 +28,8 @@ projectiletype = /obj/item/projectile/beam/blue projectilesound = 'sound/weapons/Laser.ogg' player_msg = "You have a laser attack." - + projectile_dispersion = 7 + projectile_accuracy = -20 // Shoots EMPs, to screw over other robots. /mob/living/simple_mob/mechanical/hivebot/ranged_damage/ion @@ -48,6 +51,8 @@ health = 4 LASERS_TO_KILL melee_damage_lower = 15 melee_damage_upper = 15 + projectile_dispersion = 5 + projectile_accuracy = -15 // Also beefy, but tries to stay at their 'home', ideal for base defense. /mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/durand.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/durand.dm index 198bc1bd7d..f5baafcc24 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/durand.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/durand.dm @@ -38,6 +38,8 @@ melee_damage_upper = 40 base_attack_cooldown = 2 SECONDS projectiletype = /obj/item/projectile/beam/heavylaser + projectile_dispersion = 10 + projectile_accuracy = -30 var/defense_mode = FALSE var/defense_deflect = 35 @@ -45,6 +47,7 @@ /mob/living/simple_mob/mechanical/mecha/combat/durand/proc/set_defense_mode(new_mode) defense_mode = new_mode deflect_chance = defense_mode ? defense_deflect : initial(deflect_chance) + projectile_accuracy = defense_mode ? -10 : initial(projectile_accuracy) to_chat(src, span("notice", "You [defense_mode ? "en" : "dis"]able defense mode.")) /mob/living/simple_mob/mechanical/mecha/combat/durand/SelfMove(turf/n, direct) diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/gygax.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/gygax.dm index 14ad41c05a..cecd4bcb7f 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/gygax.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/gygax.dm @@ -31,6 +31,7 @@ "rad" = 100 ) + projectile_dispersion = 8 projectiletype = /obj/item/projectile/beam/midlaser ai_holder_type = /datum/ai_holder/simple_mob/intentional/adv_dark_gygax @@ -80,3 +81,4 @@ icon_state = "medgax" wreckage = /obj/structure/loot_pile/mecha/gygax/medgax + projectile_dispersion = 8 diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/hoverpod.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/hoverpod.dm index d113835654..eea54e7212 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/hoverpod.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/hoverpod.dm @@ -23,6 +23,8 @@ maxHealth = 150 hovering = TRUE // Can fly. + projectile_dispersion = 10 + projectile_accuracy = -30 projectiletype = /obj/item/projectile/beam base_attack_cooldown = 2 SECONDS diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/viscerator.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/viscerator.dm index 3d6d43e575..89281bf4fc 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/viscerator.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/viscerator.dm @@ -36,6 +36,7 @@ mob_swap_flags = 0 mob_push_flags = 0 + melee_attack_delay = null // No attack delay, as their movement is functionally an attack. melee_damage_lower = 4 // Approx 8 DPS. melee_damage_upper = 4 base_attack_cooldown = 5 // Two attacks a second or so. diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/bee.dm b/code/modules/mob/living/simple_mob/subtypes/vore/bee.dm index db6a5d4795..f39e5dc666 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/bee.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/bee.dm @@ -7,9 +7,9 @@ icon_dead = "bee-dead" icon = 'icons/mob/vore.dmi' - response_help = "pets the" - response_disarm = "gently pushes aside the" - response_harm = "hits the" + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "hits" movement_cooldown = 5 // speed = 5 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/catgirl.dm b/code/modules/mob/living/simple_mob/subtypes/vore/catgirl.dm index 7d1178270c..ac65c8b8bc 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/catgirl.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/catgirl.dm @@ -10,9 +10,9 @@ melee_damage_lower = 2 melee_damage_upper = 5 - response_help = "pets the" - response_disarm = "gently baps the" - response_harm = "hits the" + response_help = "pets" + response_disarm = "gently baps" + response_harm = "hits" attacktext = list("swatted","bapped") diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/corrupt_hounds.dm b/code/modules/mob/living/simple_mob/subtypes/vore/corrupt_hounds.dm index 3c8550c9ab..0dd52d2496 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/corrupt_hounds.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/corrupt_hounds.dm @@ -27,14 +27,15 @@ maxHealth = 200 health = 200 movement_sound = 'sound/effects/houndstep.ogg' + see_in_dark = 8 melee_damage_lower = 5 melee_damage_upper = 10 //makes it so 4 max dmg hits don't instakill you. grab_resist = 100 - response_help = "pets the" - response_disarm = "bops the" - response_harm = "hits the" + response_help = "pets" + response_disarm = "bops" + response_harm = "hits" attacktext = list("ravaged") friendly = list("nuzzles", "slobberlicks", "noses softly at", "noseboops", "headbumps against", "leans on", "nibbles affectionately on") @@ -111,6 +112,7 @@ if(!riding_datum) riding_datum = new /datum/riding/simple_mob(src) verbs |= /mob/living/simple_mob/proc/animal_mount + movement_cooldown = 0 /mob/living/simple_mob/vore/aggressive/corrupthound/MouseDrop_T(mob/living/M, mob/living/user) return diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm b/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm index 5f0be2bbf8..7b5bef5415 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm @@ -20,6 +20,7 @@ maxHealth = 200 health = 200 + see_in_dark = 8 melee_damage_lower = 5 melee_damage_upper = 30 @@ -48,16 +49,15 @@ vore_pounce_chance = 0 // Beat them into crit before eating. vore_icons = SA_ICON_LIVING -/* //VOREStation AI Temporary Removal -/mob/living/simple_animal/hostile/deathclaw/Login() +/mob/living/simple_mob/vore/aggressive/deathclaw/Login() . = ..() if(!riding_datum) - riding_datum = new /datum/riding/simple_animal(src) - verbs |= /mob/living/simple_animal/proc/animal_mount + riding_datum = new /datum/riding/simple_mob(src) + verbs |= /mob/living/simple_mob/proc/animal_mount + movement_cooldown = 0 -/mob/living/simple_animal/hostile/deathclaw/MouseDrop_T(mob/living/M, mob/living/user) +/mob/living/simple_mob/vore/aggressive/deathclaw/MouseDrop_T(mob/living/M, mob/living/user) return -*/ /datum/ai_holder/simple_mob/melee/deathclaw can_breakthrough = TRUE diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon.dm b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon.dm index b330e8fcb0..f8ad8a2a4c 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon.dm @@ -13,6 +13,9 @@ health = 30 movement_cooldown = 0 + see_in_dark = 10 + seedarkness = FALSE + min_oxy = 0 max_oxy = 0 min_tox = 0 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm b/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm index 9f201380cf..b2c68d6f1c 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm @@ -10,6 +10,7 @@ faction = "dragon" maxHealth = 500 // Boss health = 500 + see_in_dark = 8 melee_damage_lower = 5 melee_damage_upper = 30 @@ -26,6 +27,10 @@ minbodytemp = 0 maxbodytemp = 700 + response_help = "pats" + response_disarm = "tries to shove" + response_harm = "hits" + old_x = -16 old_y = 0 default_pixel_x = -16 @@ -55,16 +60,15 @@ health = 200 faction = "virgo3b" -/* //VOREStation AI Temporary Removal -/mob/living/simple_animal/hostile/dragon/Login() +/mob/living/simple_mob/vore/aggressive/dragon/Login() . = ..() if(!riding_datum) - riding_datum = new /datum/riding/simple_animal(src) - verbs |= /mob/living/simple_animal/proc/animal_mount + riding_datum = new /datum/riding/simple_mob(src) + verbs |= /mob/living/simple_mob/proc/animal_mount + movement_cooldown = 0 -/mob/living/simple_animal/hostile/dragon/MouseDrop_T(mob/living/M, mob/living/user) +/mob/living/simple_mob/vore/aggressive/dragon/MouseDrop_T(mob/living/M, mob/living/user) return -*/ /datum/say_list/dragonboss say_got_target = list("roars and snaps it jaws!") diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm b/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm index 605e445853..c35e421fab 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm @@ -21,9 +21,9 @@ maxHealth = 30 health = 30 - response_help = "pats the" - response_disarm = "gently pushes aside the" - response_harm = "hits the" + response_help = "pats" + response_disarm = "gently pushes aside" + response_harm = "hits" harm_intent_damage = 5 melee_damage_lower = 1 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/fennix.dm b/code/modules/mob/living/simple_mob/subtypes/vore/fennix.dm index 2b9126eefd..9fa3ba3d94 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/fennix.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/fennix.dm @@ -12,9 +12,9 @@ maxHealth = 60 health = 60 - response_help = "pats the" - response_disarm = "gently pushes aside the" - response_harm = "hits the" + response_help = "pats" + response_disarm = "gently pushes aside" + response_harm = "hits" harm_intent_damage = 20 melee_damage_lower = 1 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/hippo.dm b/code/modules/mob/living/simple_mob/subtypes/vore/hippo.dm index b0026b7740..933ec987c1 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/hippo.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/hippo.dm @@ -23,9 +23,9 @@ "bio" = 0, "rad" = 0) - response_help = "pets the" - response_disarm = "gently pushes aside the" - response_harm = "hits the" + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "hits" attacktext = list("bit") melee_damage_upper = 12 @@ -66,13 +66,15 @@ vore_stomach_flavor = "You are squeezed into the sweltering insides of the herbivore rumen." vore_icons = SA_ICON_LIVING -/* //VOREStation AI Temporary Removal /mob/living/simple_mob/vore/hippo/Login() . = ..() if(!riding_datum) - riding_datum = new /datum/riding/simple_animal(src) - verbs |= /mob/living/simple_animal/proc/animal_mount -*/ + riding_datum = new /datum/riding/simple_mob(src) + verbs |= /mob/living/simple_mob/proc/animal_mount + movement_cooldown = 0 + +/mob/living/simple_mob/vore/hippo/MouseDrop_T(mob/living/M, mob/living/user) + return /mob/living/simple_mob/vore/hippo/MouseDrop_T(mob/living/M, mob/living/user) return diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm b/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm index f73942a066..5b1b09f724 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm @@ -40,16 +40,15 @@ vore_active = 1 vore_icons = SA_ICON_LIVING -/* //VOREStation AI Temporary Removal -/mob/living/simple_animal/horse/Login() +/mob/living/simple_mob/vore/horse/Login() . = ..() if(!riding_datum) - riding_datum = new /datum/riding/simple_animal(src) - verbs |= /mob/living/simple_animal/proc/animal_mount + riding_datum = new /datum/riding/simple_mob(src) + verbs |= /mob/living/simple_mob/proc/animal_mount + movement_cooldown = 0 -/mob/living/simple_animal/horse/MouseDrop_T(mob/living/M, mob/living/user) +/mob/living/simple_mob/vore/horse/MouseDrop_T(mob/living/M, mob/living/user) return -*/ /datum/say_list/horse speak = list("NEHEHEHEHEH","Neh?") diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm index 07eb1a38e2..4328c297fb 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm @@ -21,9 +21,10 @@ minbodytemp = 200 melee_damage_lower = 2 melee_damage_upper = 7 //Don't break my bones bro - response_help = "pets the" - response_disarm = "bops the" - response_harm = "hits the" + see_in_dark = 8 + response_help = "pets" + response_disarm = "bops" + response_harm = "hits" attacktext = list("mauled") friendly = list("nuzzles", "slobberlicks", "noses softly at", "noseboops", "headbumps against", "leans on", "nibbles affectionately on") meat_amount = 6 @@ -261,6 +262,7 @@ if(!riding_datum) riding_datum = new /datum/riding/simple_mob(src) verbs |= /mob/living/simple_mob/proc/animal_mount + movement_cooldown = 0 /mob/living/simple_mob/otie/MouseDrop_T(mob/living/M, mob/living/user) return diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/panther.dm b/code/modules/mob/living/simple_mob/subtypes/vore/panther.dm index 8a4e26d937..7c8439a5ab 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/panther.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/panther.dm @@ -12,11 +12,16 @@ maxHealth = 200 health = 200 movement_cooldown = 4 + see_in_dark = 8 melee_damage_lower = 5 melee_damage_upper = 15 attack_sharp = TRUE + response_help = "pats" + response_disarm = "tries to shove" + response_harm = "hits" + old_x = -16 old_y = 0 default_pixel_x = -16 @@ -39,16 +44,15 @@ vore_pounce_chance = 10 vore_icons = SA_ICON_LIVING | SA_ICON_REST -/* //VOREStation AI Temporary Removal -/mob/living/simple_animal/vore/panther/Login() +/mob/living/simple_mob/vore/aggressive/panther/Login() . = ..() if(!riding_datum) - riding_datum = new /datum/riding/simple_animal(src) - verbs |= /mob/living/simple_animal/proc/animal_mount + riding_datum = new /datum/riding/simple_mob(src) + verbs |= /mob/living/simple_mob/proc/animal_mount + movement_cooldown = 0 -/mob/living/simple_animal/vore/panther/MouseDrop_T(mob/living/M, mob/living/user) +/mob/living/simple_mob/vore/aggressive/panther/MouseDrop_T(mob/living/M, mob/living/user) return -*/ /datum/say_list/panther speak = list("RAWR!","Rawr!","GRR!","Growl!") diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm b/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm index f7881a15c1..33f9455bf0 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm @@ -23,10 +23,11 @@ melee_damage_lower = 2 melee_damage_upper = 7 grab_resist = 100 + see_in_dark = 8 - response_help = "pets the" - response_disarm = "bops the" - response_harm = "hits the" + response_help = "pets" + response_disarm = "bops" + response_harm = "hits" attacktext = list("ravaged") friendly = list("nuzzles", "licks", "noses softly at", "noseboops", "headbumps against", "leans on", "nibbles affectionately on") @@ -168,16 +169,15 @@ playsound(src, 'sound/effects/mouse_squeak_loud.ogg', 50, 1) ..() -/* //VOREStation AI Temporary Removal -/mob/living/simple_mob/vore/rat/Login() +/mob/living/simple_mob/vore/aggressive/rat/Login() . = ..() if(!riding_datum) - riding_datum = new /datum/riding/simple_animal(src) - verbs |= /mob/living/simple_animal/proc/animal_mount + riding_datum = new /datum/riding/simple_mob(src) + verbs |= /mob/living/simple_mob/proc/animal_mount + movement_cooldown = 0 /mob/living/simple_mob/vore/aggressive/rat/MouseDrop_T(mob/living/M, mob/living/user) return -*/ /mob/living/simple_mob/vore/aggressive/rat/phoron name = "phoron rat" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/redpanda.dm b/code/modules/mob/living/simple_mob/subtypes/vore/redpanda.dm index f52b3c7e79..fa75b5bc69 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/redpanda.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/redpanda.dm @@ -13,9 +13,9 @@ maxHealth = 30 health = 30 - response_help = "pats the" - response_disarm = "gently pushes aside the" - response_harm = "hits the" + response_help = "pats" + response_disarm = "gently pushes aside" + response_harm = "hits" harm_intent_damage = 3 melee_damage_lower = 3 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm index 6990623043..40355f7ab0 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm @@ -91,7 +91,7 @@ return if(!my_kin.mend_other()) my_kin.energy += cost //Refund due to abort - +/* /datum/modifier/shadekin/heal_boop name = "Shadekin Regen" desc = "You feel serene and well rested." @@ -110,6 +110,7 @@ holder.adjustToxLoss(-2) holder.adjustOxyLoss(-2) holder.adjustCloneLoss(-2) +*/ ///////////////////////////////////////////////////////////////// /obj/effect/shadekin_ability/create_shade ability_name = "Create Shade" @@ -122,6 +123,7 @@ if(!..()) return my_kin.add_modifier(/datum/modifier/shadekin/create_shade,20 SECONDS) +/* /datum/modifier/shadekin/create_shade name = "Shadekin Shadegen" desc = "Darkness envelops you." @@ -151,6 +153,7 @@ holder.glow_color = initial(holder.glow_color) holder.set_light(0) my_kin = null +*/ /* ///////////////////////////////////////////////////////////////// /obj/effect/shadekin_ability/energy_feast 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 71d21d9377..f8025167b7 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 @@ -1,8 +1,3 @@ -/datum/category_item/catalogue/fauna/shadekin //TODO: VIRGO_LORE_WRITING_WIP - name = "Sapients - Shadekin" - desc = "" - value = CATALOGUER_REWARD_EASY - /mob/living/simple_mob/shadekin //Spawning the prototype spawns a random one, see initialize() name = "shadekin" desc = "Some sort of fluffer. Big ears, long tail." @@ -41,9 +36,9 @@ say_list_type = /datum/say_list/shadekin - response_help = "pets the" - response_disarm = "bops the" - response_harm = "hits the" + response_help = "pets" + response_disarm = "bops" + response_harm = "hits" attacktext = list("mauled","slashed","clawed") friendly = list("boops", "pawbs", "mars softly at", "sniffs on") @@ -449,14 +444,3 @@ say_maybe_target = list("...mar?") say_got_target = list("MAR!!!") //reactions = list("Mar?" = "Marrr!", "Mar!" = "Marrr???", "Mar." = "Marrr.") - -/datum/language/shadekin - name = "Shadekin Empathy" - desc = "Shadekin seem to always know what the others are thinking. This is probably why." - colour = "changeling" - speech_verb = "mars" - ask_verb = "mars" - exclaim_verb = "mars" - key = "m" - machine_understands = 0 - flags = WHITELISTED | HIVEMIND diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm b/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm index e2687feba6..5b6bd24139 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm @@ -14,6 +14,10 @@ melee_damage_lower = 5 melee_damage_upper = 12 + response_help = "pats" + response_disarm = "tries to shove" + response_harm = "hits" + old_x = -16 old_y = -16 default_pixel_x = -16 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm index afe1d73135..258cd9e17e 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm @@ -15,6 +15,10 @@ icon_state = "wolf" icon = 'icons/mob/vore.dmi' + response_help = "pets" + response_disarm = "bops" + response_harm = "hits" + movement_cooldown = 5 harm_intent_damage = 5 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/wolfgirl.dm b/code/modules/mob/living/simple_mob/subtypes/vore/wolfgirl.dm index 3d0d553f98..4cf5e49ad1 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/wolfgirl.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/wolfgirl.dm @@ -2,7 +2,7 @@ name = "wolfgirl" desc = "AwooOOOOoooo!" tt_desc = "Homo lupus" - + icon_state = "wolfgirl" icon_living = "wolfgirl" icon_dead = "wolfgirl-dead" @@ -12,9 +12,9 @@ maxHealth = 30 health = 30 - response_help = "pats the" - response_disarm = "gently pushes aside the" - response_harm = "hits the" + response_help = "pats" + response_disarm = "gently pushes aside" + response_harm = "hits" harm_intent_damage = 8 melee_damage_lower = 7 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm b/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm index b5a3bc2c60..ef38ed0491 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm @@ -31,6 +31,9 @@ icon_dead = "xenohunter-dead" icon_gib = "gibbed-a" vore_icons = SA_ICON_LIVING + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "hits" /mob/living/simple_mob/animal/space/alien/drone vore_active = 1 @@ -90,6 +93,9 @@ icon_dead = "spacebear-dead" icon_gib = "bear-gib" vore_icons = SA_ICON_LIVING + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "hits" /mob/living/simple_mob/animal/space/bear/hudson name = "Hudson" @@ -108,6 +114,9 @@ icon = 'icons/mob/vore.dmi' vore_active = 1 vore_icons = SA_ICON_LIVING + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "hits" /* //VOREStation AI Temporary removal /mob/living/simple_mob/hostile/creature/vore @@ -225,11 +234,17 @@ vore_active = 1 // NO VORE SPRITES vore_max_size = RESIZE_SMALL + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "hits" /mob/living/simple_mob/animal/passive/penguin vore_active = 1 // NO VORE SPRITES vore_max_size = RESIZE_SMALL + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "hits" /mob/living/simple_mob/hostile/carp/pike diff --git a/code/modules/mob/living/voice/voice.dm b/code/modules/mob/living/voice/voice.dm index 5b5d3005a1..8d7337df07 100644 --- a/code/modules/mob/living/voice/voice.dm +++ b/code/modules/mob/living/voice/voice.dm @@ -69,7 +69,7 @@ if(comm) comm.close_connection(user = src, target = src, reason = "[src] hung up") else - src << "You appear to not be inside a communicator. This is a bug and you should report it." + to_chat(src, "You appear to not be inside a communicator. This is a bug and you should report it.") // Verb: change_name() // Parameters: None @@ -90,7 +90,7 @@ log_game(msg) src.name = new_name else - src << "Invalid name. Rejected." + to_chat(src, "Invalid name. Rejected.") // Proc: Life() // Parameters: None diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index d8c9412ff2..271449a46d 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -229,7 +229,7 @@ set category = "IC" if((is_blind(src) || usr.stat) && !isobserver(src)) - src << "Something is there but you can't see it." + to_chat(src, "Something is there but you can't see it.") return 1 face_atom(A) @@ -286,7 +286,7 @@ if(mind) mind.show_memory(src) else - src << "The game appears to have misplaced your mind datum, so we can't show you your notes." + to_chat(src, "The game appears to have misplaced your mind datum, so we can't show you your notes.") /mob/verb/add_memory(msg as message) set name = "Add Note" @@ -297,7 +297,7 @@ if(mind) mind.store_memory(msg) else - src << "The game appears to have misplaced your mind datum, so we can't show you your notes." + to_chat(src, "The game appears to have misplaced your mind datum, so we can't show you your notes.") /mob/proc/store_memory(msg as message, popup, sane = 1) msg = copytext(msg, 1, MAX_MESSAGE_LEN) @@ -324,13 +324,13 @@ /mob/proc/warn_flavor_changed() if(flavor_text && flavor_text != "") // don't spam people that don't use it! - src << "

OOC Warning:

" - src << "Your flavor text is likely out of date! Change" + to_chat(src, "

OOC Warning:

") + to_chat(src, "Your flavor text is likely out of date! Change") /mob/proc/print_flavor_text() if (flavor_text && flavor_text != "") var/msg = replacetext(flavor_text, "\n", " ") - if(lentext(msg) <= 40) + if(length(msg) <= 40) return "[msg]" else return "[copytext_preserve_html(msg, 1, 37)]... More..." @@ -566,22 +566,22 @@ return if (AM.anchored) - src << "It won't budge!" + to_chat(src, "It won't budge!") return var/mob/M = AM if(ismob(AM)) if(!can_pull_mobs || !can_pull_size) - src << "They won't budge!" + to_chat(src, "They won't budge!") return if((mob_size < M.mob_size) && (can_pull_mobs != MOB_PULL_LARGER)) - src << "[M] is too large for you to move!" + to_chat(src, "[M] is too large for you to move!") return if((mob_size == M.mob_size) && (can_pull_mobs == MOB_PULL_SMALLER)) - src << "[M] is too heavy for you to move!" + to_chat(src, "[M] is too heavy for you to move!") return // If your size is larger than theirs and you have some @@ -597,7 +597,7 @@ else qdel(G) if(!.) - src << "Somebody has a grip on them!" + to_chat(src, "Somebody has a grip on them!") return if(!iscarbon(src)) @@ -608,7 +608,7 @@ else if(isobj(AM)) var/obj/I = AM if(!can_pull_size || can_pull_size < I.w_class) - src << "It won't budge!" + to_chat(src, "It won't budge!") return if(pulling) @@ -627,7 +627,7 @@ if(ishuman(AM)) var/mob/living/carbon/human/H = AM if(H.pull_damage()) - src << "Pulling \the [H] in their current condition would probably be a bad idea." + to_chat(src, "Pulling \the [H] in their current condition would probably be a bad idea.") //Attempted fix for people flying away through space when cuffed and dragged. if(ismob(AM)) @@ -952,7 +952,7 @@ mob/proc/yank_out_object() valid_objects = get_visible_implants(0) if(!valid_objects.len) if(self) - src << "You have nothing stuck in your body that is large enough to remove." + to_chat(src, "You have nothing stuck in your body that is large enough to remove.") else U << "[src] has nothing stuck in their wounds that is large enough to remove." return @@ -960,7 +960,7 @@ mob/proc/yank_out_object() var/obj/item/weapon/selection = input("What do you want to yank out?", "Embedded objects") in valid_objects if(self) - src << "You attempt to get a good grip on [selection] in your body." + to_chat(src, "You attempt to get a good grip on [selection] in your body.") else U << "You attempt to get a good grip on [selection] in [S]'s body." diff --git a/code/modules/mob/mob_defines_vr.dm b/code/modules/mob/mob_defines_vr.dm index 806da9a317..70cd778e8e 100644 --- a/code/modules/mob/mob_defines_vr.dm +++ b/code/modules/mob/mob_defines_vr.dm @@ -4,3 +4,6 @@ var/mob/temporary_form // For holding onto a temporary form var/disconnect_time = null //Time of client loss, set by Logout(), for timekeeping + + var/obj/screen/shadekin/darkness/shadekin_dark_display = null + var/obj/screen/shadekin/energy/shadekin_energy_display = null \ No newline at end of file diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index a60586bbf2..2b74151cdd 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -186,8 +186,8 @@ proc/getsensorlevel(A) proc/slur(phrase) phrase = html_decode(phrase) - var/leng=lentext(phrase) - var/counter=lentext(phrase) + var/leng=length(phrase) + var/counter=length(phrase) var/newphrase="" var/newletter="" while(counter>=1) @@ -425,6 +425,20 @@ proc/is_blind(A) lname = "[lname] " M << "" + create_text_tag("dead", "DEAD:", M.client) + " [lname][follow][message]" +/proc/say_dead_object(var/message, var/obj/subject = null) + for(var/mob/M in player_list) + if(M.client && ((!istype(M, /mob/new_player) && M.stat == DEAD) || (M.client.holder && M.client.holder.rights)) && M.is_preference_enabled(/datum/client_preference/show_dsay)) + var/follow + var/lname = "Game Master" + if(M.forbid_seeing_deadchat && !M.client.holder) + continue + + if(subject) + lname = "[subject.name] ([subject.x],[subject.y],[subject.z])" + + lname = "[lname] " + M << "" + create_text_tag("event_dead", "EVENT:", M.client) + " [lname][follow][message]" + //Announces that a ghost has joined/left, mainly for use with wizards /proc/announce_ghost_joinleave(O, var/joined_ghosts = 1, var/message = "") var/client/C diff --git a/code/modules/mob/mob_movement.dm b/code/modules/mob/mob_movement.dm index e66cf6f4ac..c4dd1b86b0 100644 --- a/code/modules/mob/mob_movement.dm +++ b/code/modules/mob/mob_movement.dm @@ -185,13 +185,13 @@ for(var/mob/M in range(mob, 1)) if(M.pulling == mob) if(!M.restrained() && M.stat == 0 && M.canmove && mob.Adjacent(M)) - src << "You're restrained! You can't move!" + to_chat(src, "You're restrained! You can't move!") return 0 else M.stop_pulling() if(mob.pinned.len) - src << "You're pinned to a wall by [mob.pinned[1]]!" + to_chat(src, "You're pinned to a wall by [mob.pinned[1]]!") return 0 mob.move_delay = world.time//set move delay @@ -385,6 +385,11 @@ ///Return 1 for movement 0 for none /mob/proc/Process_Spacemove(var/check_drift = 0) + //VOREStation Edit begin: SHADEKIN + if(shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN + if(!Check_Dense_Object()) //Nothing to push off of so end here update_floating(0) return 0 @@ -396,7 +401,7 @@ //Check to see if we slipped if(prob(Process_Spaceslipping(5)) && !buckled) - src << "You slipped!" + to_chat(src, "You slipped!") src.inertia_dir = src.last_move step(src, src.inertia_dir) return 0 diff --git a/code/modules/mob/new_player/login.dm b/code/modules/mob/new_player/login.dm index aef78c28ec..19c79b0658 100644 --- a/code/modules/mob/new_player/login.dm +++ b/code/modules/mob/new_player/login.dm @@ -27,7 +27,7 @@ var/obj/effect/lobby_image = new /obj/effect/lobby_image /mob/new_player/Login() update_Login_details() //handles setting lastKnownIP and computer_id for use by the ban systems as well as checking for multikeying if(join_motd) - src << "
[join_motd]
" + to_chat(src, "
[join_motd]
") if(!mind) mind = new /datum/mind(key) diff --git a/code/modules/mob/new_player/sprite_accessories.dm b/code/modules/mob/new_player/sprite_accessories.dm index 73ce4ca04b..31aa13b542 100644 --- a/code/modules/mob/new_player/sprite_accessories.dm +++ b/code/modules/mob/new_player/sprite_accessories.dm @@ -52,45 +52,62 @@ eighties name = "80's" icon_state = "hair_80s" + flags = HAIR_TIEABLE afro name = "Afro" icon_state = "hair_afro" + flags = HAIR_TIEABLE afro2 name = "Afro 2" icon_state = "hair_afro2" + flags = HAIR_TIEABLE afro_large name = "Big Afro" icon_state = "hair_bigafro" + flags = HAIR_TIEABLE + + amazon + name = "Amazon" + icon_state = "hair_amazon" + flags = HAIR_TIEABLE + + antenna + name = "Antenna" + icon_state = "hair_antenna" bald name = "Bald" icon_state = "bald" - gender = MALE flags = HAIR_VERY_SHORT species_allowed = list(SPECIES_HUMAN,SPECIES_UNATHI,SPECIES_PROMETHEAN,SPECIES_HUMAN_VATBORN,SPECIES_VOX) baldfade name = "Balding Fade" icon_state = "hair_baldfade" - gender = MALE flags = HAIR_VERY_SHORT balding name = "Balding Hair" icon_state = "hair_e" - gender = MALE flags = HAIR_VERY_SHORT + beachwave + name = "Beach Waves" + icon_state = "hair_beachwave" + flags = HAIR_TIEABLE + bedhead name = "Bedhead" icon_state = "hair_bedhead" + flags = HAIR_TIEABLE bedhead2 name = "Bedhead 2" icon_state = "hair_bedheadv2" + flags = HAIR_TIEABLE bedhead3 name = "Bedhead 3" @@ -147,6 +164,10 @@ name = "Bowl 2" icon_state = "hair_bowlcut2" + bowlcut2 + name = "Bowl, Overeye" + icon_state = "hair_overeyebowl" + grandebraid name = "Braid Grande" icon_state = "hair_grande" @@ -167,21 +188,34 @@ icon_state = "hair_braid" flags = HAIR_TIEABLE + front_braid + name = "Braided front" + icon_state = "hair_braidfront" + flags = HAIR_TIEABLE + + braidtail + name = "Braided Tail" + icon_state = "hair_braidtail" + flags = HAIR_TIEABLE + bun name = "Bun" icon_state = "hair_bun" + flags = HAIR_TIEABLE bun2 name = "Bun 2" icon_state = "hair_bun2" + flags = HAIR_TIEABLE bun3 name = "Bun 3" icon_state = "hair_bun3" + flags = HAIR_TIEABLE - bun - name = "Bun Casual" - icon_state = "hair_bun" + bunhead + name = "Bun Head " + icon_state = "hair_bunhead" flags = HAIR_TIEABLE doublebun @@ -192,18 +226,43 @@ tightbun name = "Bun Tight" icon_state = "hair_tightbun" - gender = FEMALE flags = HAIR_VERY_SHORT | HAIR_TIEABLE + business + name = "Business Hair" + icon_state = "hair_business" + flags = HAIR_VERY_SHORT + + business2 + name = "Business Hair 2" + icon_state = "hair_business2" + flags = HAIR_VERY_SHORT + + business3 + name = "Business Hair 3" + icon_state = "hair_business3" + flags = HAIR_VERY_SHORT + + business4 + name = "Business Hair 4" + icon_state = "hair_business4" + flags = HAIR_VERY_SHORT + buzz name = "Buzzcut" icon_state = "hair_buzzcut" flags = HAIR_VERY_SHORT species_allowed = list(SPECIES_HUMAN,SPECIES_PROMETHEAN,SPECIES_HUMAN_VATBORN,SPECIES_UNATHI) + celebcurls + name = "Celeb Curls" + icon_state = "hair_celebcurls" + flags = HAIR_TIEABLE + crono name = "Chrono" icon_state = "hair_toriyama" + flags = HAIR_TIEABLE cia name = "CIA" @@ -222,6 +281,7 @@ country name = "Country" icon_state = "hair_country" + flags = HAIR_TIEABLE crew name = "Crewcut" @@ -246,21 +306,29 @@ name = "Devil Lock" icon_state = "hair_devilock" + donutbun + name = "Donut Bun" + icon_state = "hair_donutbun" + dreadlocks name = "Dreadlocks" icon_state = "hair_dreads" + flags = HAIR_TIEABLE mahdrills name = "Drillruru" icon_state = "hair_drillruru" + flags = HAIR_TIEABLE emo name = "Emo" icon_state = "hair_emo" + flags = HAIR_TIEABLE emo2 name = "Emo Alt" icon_state = "hair_emo2" + flags = HAIR_TIEABLE fringeemo name = "Emo Fringe" @@ -270,6 +338,7 @@ halfshaved name = "Emo Half-Shaved" icon_state = "hair_halfshaved" + flags = HAIR_TIEABLE longemo name = "Emo Long" @@ -344,12 +413,18 @@ gelled name = "Gelled Back" icon_state = "hair_gelled" + flags = HAIR_TIEABLE gentle name = "Gentle" icon_state = "hair_gentle" flags = HAIR_TIEABLE + gentle + name = "Gentle 2, Long" + icon_state = "hair_gentle2long" + flags = HAIR_TIEABLE + glossy name = "Glossy" icon_state = "hair_glossy" @@ -373,6 +448,11 @@ icon_state = "hair_himecut" flags = HAIR_TIEABLE + himeup + name = "Hime Updo" + icon_state = "hair_himeup" + flags = HAIR_TIEABLE + shorthime name = "Hime Cut Short" icon_state = "hair_shorthime" @@ -385,11 +465,18 @@ jade name = "Jade" icon_state = "hair_jade" + flags = HAIR_TIEABLE jensen name = "Jensen" icon_state = "hair_jensen" + + jessica + name = "Jessica" + icon_state = "hair_jessica" + flags = HAIR_TIEABLE + joestar name = "Joestar" icon_state = "hair_joestar" @@ -399,6 +486,10 @@ icon_state = "hair_kagami" flags = HAIR_TIEABLE + keanu + name = "Keanu Hair" + icon_state = "hair_keanu" + kusangi name = "Kusanagi Hair" icon_state = "hair_kusanagi" @@ -423,19 +514,38 @@ icon_state = "hair_longeralt2" flags = HAIR_TIEABLE + sidepartlongalt + name = "Long Side Part" + icon_state = "hair_longsidepart" + flags = HAIR_TIEABLE + longest name = "Very Long Hair" icon_state = "hair_longest" flags = HAIR_TIEABLE + lowbraid + name = "Low Braid" + icon_state = "hair_hbraid" + flags = HAIR_TIEABLE + manbun name = "Manbun" icon_state = "hair_manbun" flags = HAIR_TIEABLE + marysue + name = "Mary Sue" + icon_state = "hair_marysue" + + miles + name = "Miles Hair" + icon_state = "hair_miles" + modern name = "Modern" icon_state = "hair_modern" + flags = HAIR_TIEABLE mohawk name = "Mohawk" @@ -467,6 +577,7 @@ nia name = "Nia" icon_state = "hair_nia" + flags = HAIR_TIEABLE nitori name = "Nitori" @@ -495,6 +606,7 @@ shortovereye name = "Overeye Short" icon_state = "hair_shortovereye" + flags = HAIR_TIEABLE veryshortovereyealternate name = "Overeye Very Short, Alternate" @@ -512,13 +624,20 @@ name = "Parted Alt" icon_state = "hair_partedalt" + + pixie + name = "Pixie Cut" + icon_state = "hair_pixie" + pompadour name = "Pompadour" icon_state = "hair_pompadour" + flags = HAIR_TIEABLE dandypomp name = "Pompadour Dandy" icon_state = "hair_dandypompadour" + flags = HAIR_TIEABLE ponytail1 name = "Ponytail 1" @@ -570,6 +689,10 @@ icon_state = "hair_poofy2" flags = HAIR_TIEABLE + proper + name = "Proper" + icon_state = "hair_proper" + quiff name = "Quiff" icon_state = "hair_quiff" @@ -580,6 +703,11 @@ gender = MALE flags = HAIR_VERY_SHORT + newyou + name = "New You" + icon_state = "hair_newyou" + flags = HAIR_TIEABLE + ronin name = "Ronin" icon_state = "hair_ronin" @@ -588,6 +716,7 @@ rosa name = "Rosa" icon_state = "hair_rosa" + flags = HAIR_TIEABLE rows name = "Rows" @@ -645,6 +774,7 @@ shy name = "Shy" icon_state = "hair_shy" + flags = HAIR_TIEABLE sideponytail name = "Side Ponytail" @@ -666,6 +796,11 @@ icon_state = "hair_tressshoulder" flags = HAIR_TIEABLE + sideundercut + name = "Side Undercut" + icon_state = "hair_sideundercut" + flags = HAIR_VERY_SHORT + skinhead name = "Skinhead" icon_state = "hair_skinhead" @@ -676,11 +811,25 @@ icon_state = "hair_sleeze" flags = HAIR_VERY_SHORT + protagonist + name = "Slightly Long" + icon_state = "hair_protagonist" + flags = HAIR_TIEABLE + spiky name = "Spiky" icon_state = "hair_spikey" species_allowed = list(SPECIES_HUMAN,SPECIES_PROMETHEAN,SPECIES_HUMAN_VATBORN,SPECIES_UNATHI) + straightlong + name = "Straight Long" + icon_state = "hair_straightlong" + flags = HAIR_TIEABLE + + sweepshave + name = "Sweep Shave" + icon_state = "hair_sweepshave" + thinning name = "Thinning" icon_state = "hair_thinning" @@ -739,6 +888,7 @@ unkept name = "Unkept" icon_state = "hair_unkept" + flags = HAIR_TIEABLE updo name = "Updo" @@ -749,6 +899,10 @@ name = "Vegeta" icon_state = "hair_toriyama2" + vivi + name = "Vivi" + icon_state = "hair_vivi" + volaju name = "Volaju" icon_state = "hair_volaju" @@ -1465,6 +1619,14 @@ body_parts = list(BP_TORSO) species_allowed = list(SPECIES_UNATHI) + //Tesh stuff. + + teshi_fluff + name = "Underfluff (Teshari)" + icon_state = "teshi_fluff" + body_parts = list(BP_HEAD, BP_TORSO, BP_GROIN, BP_R_LEG, BP_L_LEG) + species_allowed = list(SPECIES_TESHARI) + //skin styles - WIP //going to have to re-integrate this with surgery //let the icon_state hold an icon preview for now diff --git a/code/modules/mob/new_player/sprite_accessories_vr.dm b/code/modules/mob/new_player/sprite_accessories_vr.dm index 0ab4cc128b..f9a736dc82 100644 --- a/code/modules/mob/new_player/sprite_accessories_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_vr.dm @@ -8,7 +8,7 @@ //var/icon_add = 'icons/mob/human_face.dmi' //Already defined in sprite_accessories.dm line 49. var/color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) //This lets all races use the default hairstyles. + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, 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 the default hairstyles. astolfo name = "Astolfo" @@ -378,7 +378,7 @@ gender = NEUTER vulp_hair_bun - name = "Bun" + name = "Vulp Bun" icon = 'icons/mob/human_face_vr.dmi' icon_add = 'icons/mob/human_face_vr_add.dmi' icon_state = "bun" @@ -474,6 +474,41 @@ species_allowed = list(SPECIES_XENOHYBRID) gender = NEUTER +// Shadekin stuffs + + shadekin_hair_short + name = "Shadekin Short Hair" + icon = 'icons/mob/human_face_vr.dmi' + icon_add = 'icons/mob/human_face_vr_add.dmi' + icon_state = "shadekin_short" + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) + gender = NEUTER + + shadekin_hair_poofy + name = "Shadekin Poofy Hair" + icon = 'icons/mob/human_face_vr.dmi' + icon_add = 'icons/mob/human_face_vr_add.dmi' + icon_state = "shadekin_poofy" + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) + gender = NEUTER + + shadekin_hair_long + name = "Shadekin Long Hair" + icon = 'icons/mob/human_face_vr.dmi' + icon_add = 'icons/mob/human_face_vr_add.dmi' + icon_state = "shadekin_long" + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) + gender = NEUTER + + shadekin_hair_rivyr + name = "Rivyr Hair" + icon = 'icons/mob/human_face_vr.dmi' + icon_add = 'icons/mob/human_face_vr_add.dmi' + icon_state = "shadekin_rivyr" + ckeys_allowed = list("verysoft") + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) + gender = NEUTER + /datum/sprite_accessory/facial_hair icon = 'icons/mob/human_face_or_vr.dmi' var/color_blend_mode = ICON_MULTIPLY @@ -485,6 +520,12 @@ gender = NEUTER species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) //This needed to be manually defined, apparantly. + neck_fluff + name = "Neck Fluff" + icon = 'icons/mob/human_face_or_vr.dmi' + icon_state = "facial_neckfluff" + gender = NEUTER + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) vulp_none name = "None" @@ -549,15 +590,6 @@ species_allowed = list(SPECIES_VULPKANIN) gender = NEUTER -//Special hairstyles -/datum/sprite_accessory/ears/inkling - name = "colorable mature inkling hair" - desc = "" - icon = 'icons/mob/human_face_vr.dmi' - icon_state = "inkling-colorable" - color_blend_mode = ICON_MULTIPLY - do_colouration = 1 - //VOREStation Body Markings and Overrides //Reminder: 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_TORSO,BP_GROIN,BP_HEAD @@ -995,12 +1027,6 @@ color_blend_mode = ICON_MULTIPLY body_parts = list(BP_L_LEG) - teshi_fluff - name = "Teshari underfluff" - icon_state = "teshi_fluff" - color_blend_mode = ICON_MULTIPLY - body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_GROIN,BP_TORSO,BP_HEAD) - teshi_small_feathers name = "Teshari small wingfeathers" icon_state = "teshi_sf" @@ -1096,4 +1122,11 @@ icon_state = "werewolf" color_blend_mode = ICON_MULTIPLY 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) - species_allowed = list(SPECIES_WEREBEAST) \ No newline at end of file + species_allowed = list(SPECIES_WEREBEAST) + + shadekin_snoot + name = "Shadekin Snoot" + icon_state = "shadekin-snoot" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) \ No newline at end of file diff --git a/code/modules/mob/say.dm b/code/modules/mob/say.dm index 947853055c..0a44e9adb5 100644 --- a/code/modules/mob/say.dm +++ b/code/modules/mob/say.dm @@ -44,14 +44,14 @@ if(!src.client.holder) if(!config.dsay_allowed) - src << "Deadchat is globally muted." + to_chat(src, "Deadchat is globally muted.") return if(!is_preference_enabled(/datum/client_preference/show_dsay)) usr << "You have deadchat muted." return - message = say_emphasis(message) + message = encode_html_emphasis(message) say_dead_direct("[pick("complains","moans","whines","laments","blubbers")], \"[message]\"", src) diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index bd5b516f9d..0e5bd02d45 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -23,7 +23,7 @@ /mob/proc/custom_emote_vr(var/m_type=1,var/message = null) //This would normally go in emote.dm if(stat || !use_me && usr == src) - src << "You are unable to emote." + to_chat(src, "You are unable to emote.") return var/muzzled = is_muzzled() @@ -42,7 +42,7 @@ return if (message) - message = say_emphasis(message) + message = encode_html_emphasis(message) var/list/vis = get_mobs_and_objs_in_view_fast(get_turf(src),1,2) //Turf, Range, and type 2 is emote var/list/vis_mobs = vis["mobs"] diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index 6f05b298e6..28673c9fd7 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -36,7 +36,7 @@ dna.SetSEState(MONKEYBLOCK,1) dna.SetSEValueRange(MONKEYBLOCK,0xDAC, 0xFFF) - src << "You are now [species.name]. " + to_chat(src, "You are now [species.name]. ") qdel(animation) return src diff --git a/code/modules/modular_computers/computers/subtypes/dev_console.dm b/code/modules/modular_computers/computers/subtypes/dev_console.dm index d7f977f33b..32f24b6001 100644 --- a/code/modules/modular_computers/computers/subtypes/dev_console.dm +++ b/code/modules/modular_computers/computers/subtypes/dev_console.dm @@ -9,6 +9,7 @@ hardware_flag = PROGRAM_CONSOLE anchored = TRUE density = 1 + layer = 2.9 base_idle_power_usage = 100 base_active_power_usage = 500 max_hardware_size = 3 diff --git a/code/modules/multiz/basic.dm b/code/modules/multiz/basic.dm index 0ed4e5364a..62ffc46518 100644 --- a/code/modules/multiz/basic.dm +++ b/code/modules/multiz/basic.dm @@ -1,25 +1,27 @@ // If you add a more comprehensive system, just untick this file. -// WARNING: Only works for up to 17 z-levels! -var/z_levels = 0 // Each bit represents a connection between adjacent levels. So the first bit means levels 1 and 2 are connected. +var/list/z_levels = list()// Each bit re... haha just kidding this is a list of bools now // If the height is more than 1, we mark all contained levels as connected. /obj/effect/landmark/map_data/New() - ASSERT(height <= z) - // Due to the offsets of how connections are stored v.s. how z-levels are indexed, some magic number silliness happened. - for(var/i = (z - height) to (z - 2)) - z_levels |= (1 << i) - qdel(src) + for(var/i = (z - height + 1) to (z-1)) + if (z_levels.len = world.maxz || z > 16 || z < 1) + if(z >= world.maxz || z < 1 || z > z_levels.len) return 0 - return z_levels & (1 << (z - 1)) + return z_levels[z] /proc/HasBelow(var/z) - if(z > world.maxz || z > 17 || z < 2) + if(z > world.maxz || z < 2 || (z-1) > z_levels.len) return 0 - return z_levels & (1 << (z - 2)) + return z_levels[z-1] // Thankfully, no bitwise magic is needed here. /proc/GetAbove(var/atom/atom) diff --git a/code/modules/nifsoft/nif_softshop.dm b/code/modules/nifsoft/nif_softshop.dm index 818a53d38c..6abbeff162 100644 --- a/code/modules/nifsoft/nif_softshop.dm +++ b/code/modules/nifsoft/nif_softshop.dm @@ -217,3 +217,8 @@ currently_vending = null SSnanoui.update_uis(src) return 1 + +//Can't throw intangible software at people. +/obj/machinery/vending/nifsoft_shop/throw_item() + //TODO: Make it throw disks at people with random software? That might be fun. EVEN THE ILLEGAL ONES? ;o + return 0 diff --git a/code/modules/nifsoft/nifsoft.dm b/code/modules/nifsoft/nifsoft.dm index 6f110de856..0df241799f 100644 --- a/code/modules/nifsoft/nifsoft.dm +++ b/code/modules/nifsoft/nifsoft.dm @@ -61,13 +61,15 @@ //Called when the software is installed in the NIF /datum/nifsoft/proc/install() + if(!nif) + return return nif.install(src) //Called when the software is removed from the NIF /datum/nifsoft/proc/uninstall() - if(active) - deactivate() if(nif) + if(active) + deactivate() . = nif.uninstall(src) nif = null if(!QDESTROYING(src)) diff --git a/code/modules/nifsoft/software/13_soulcatcher.dm b/code/modules/nifsoft/software/13_soulcatcher.dm index 9f46eac243..1dd2c354c6 100644 --- a/code/modules/nifsoft/software/13_soulcatcher.dm +++ b/code/modules/nifsoft/software/13_soulcatcher.dm @@ -55,10 +55,14 @@ nif.human.verbs -= /mob/living/carbon/human/proc/nme proc/save_settings() + if(!nif) + return nif.save_data["[list_pos]"] = inside_flavor return TRUE proc/load_settings() + if(!nif) + return var/load = nif.save_data["[list_pos]"] if(load) inside_flavor = load @@ -369,7 +373,7 @@ return if (src.client) if (client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (stat) return diff --git a/code/modules/organs/blood.dm b/code/modules/organs/blood.dm index 198b88f88c..0a3685d61e 100644 --- a/code/modules/organs/blood.dm +++ b/code/modules/organs/blood.dm @@ -97,10 +97,10 @@ var/const/CE_STABLE_THRESHOLD = 0.5 pale = 1 update_icons_body() var/word = pick("dizzy","woosey","faint") - src << "You feel [word]" + to_chat(src, "You feel [word]") if(prob(1)) var/word = pick("dizzy","woosey","faint") - src << "You feel [word]" + to_chat(src, "You feel [word]") if(getOxyLoss() < 20 * threshold_coef) adjustOxyLoss(3 * dmg_coef) else if(blood_volume >= BLOOD_VOLUME_BAD) @@ -114,13 +114,13 @@ var/const/CE_STABLE_THRESHOLD = 0.5 if(prob(15)) Paralyse(rand(1,3)) var/word = pick("dizzy","woosey","faint") - src << "You feel extremely [word]" + to_chat(src, "You feel extremely [word]") else if(blood_volume >= BLOOD_VOLUME_SURVIVE) adjustOxyLoss(5 * dmg_coef) // adjustToxLoss(3 * dmg_coef) if(prob(15)) var/word = pick("dizzy","woosey","faint") - src << "You feel extremely [word]" + to_chat(src, "You feel extremely [word]") else //Not enough blood to survive (usually) if(!pale) pale = 1 @@ -303,8 +303,8 @@ proc/blood_incompatible(donor,receiver,donor_species,receiver_species) if(donor_species != receiver_species) return 1 - var/donor_antigen = copytext(donor,1,lentext(donor)) - var/receiver_antigen = copytext(receiver,1,lentext(receiver)) + var/donor_antigen = copytext(donor,1,length(donor)) + var/receiver_antigen = copytext(receiver,1,length(receiver)) var/donor_rh = (findtext(donor,"+")>0) var/receiver_rh = (findtext(receiver,"+")>0) diff --git a/code/modules/organs/organ.dm b/code/modules/organs/organ.dm index 215ef65ced..b9aecbe250 100644 --- a/code/modules/organs/organ.dm +++ b/code/modules/organs/organ.dm @@ -14,6 +14,7 @@ var/list/organ_cache = list() var/vital // Lose a vital limb, die immediately. var/damage = 0 // Current damage to the organ var/robotic = 0 + var/stapled_nerves = FALSE // Reference data. var/mob/living/carbon/human/owner // Current mob owning the organ. @@ -431,6 +432,8 @@ var/list/organ_cache = list() return 0 if(robotic && robotic < ORGAN_LIFELIKE) //Super fancy humanlike robotics probably have sensors, or something? return 0 + if(stapled_nerves) + return 0 return 1 /obj/item/organ/proc/handle_organ_mod_special(var/removed = FALSE) // Called when created, transplanted, and removed. diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index c8b02f02b8..bd4317787a 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -25,6 +25,7 @@ var/burn_dam = 0 // Actual current burn damage. var/last_dam = -1 // used in healing/processing calculations. var/spread_dam = 0 + var/thick_skin = 0 // If a needle has a chance to fail to penetrate. // Appearance vars. var/nonsolid // Snowflake warning, reee. Used for slime limbs. @@ -1031,7 +1032,7 @@ Note that amputating the affected organ does in fact remove the infection from t W.germ_level = 0 return rval -/obj/item/organ/external/proc/clamp() +/obj/item/organ/external/proc/organ_clamp() var/rval = 0 src.status &= ~ORGAN_BLEEDING for(var/datum/wound/W in wounds) diff --git a/code/modules/organs/organ_icon.dm b/code/modules/organs/organ_icon.dm index 203664e51a..4445f1ed67 100644 --- a/code/modules/organs/organ_icon.dm +++ b/code/modules/organs/organ_icon.dm @@ -46,8 +46,10 @@ var/global/list/limb_icon_cache = list() /obj/item/organ/external/head/sync_colour_to_human(var/mob/living/carbon/human/human) ..() - var/obj/item/organ/internal/eyes/eyes = owner.internal_organs_by_name[O_EYES] - if(eyes) eyes.update_colour() + + if(owner) + var/obj/item/organ/internal/eyes/eyes = owner.internal_organs_by_name[O_EYES] + if(eyes) eyes.update_colour() /obj/item/organ/external/head/get_icon() ..() @@ -69,7 +71,8 @@ var/global/list/limb_icon_cache = list() if(should_have_eyes) //And we have them if(eyes) - eyes_icon.Blend(rgb(eyes.eye_colour[1], eyes.eye_colour[2], eyes.eye_colour[3]), ICON_ADD) + if(has_eye_color) + eyes_icon.Blend(rgb(eyes.eye_colour[1], eyes.eye_colour[2], eyes.eye_colour[3]), ICON_ADD) //They're gone! else eyes_icon.Blend(rgb(128,0,0), ICON_ADD) diff --git a/code/modules/organs/robolimbs_vr.dm b/code/modules/organs/robolimbs_vr.dm index cdf873b2ec..3a872ea690 100644 --- a/code/modules/organs/robolimbs_vr.dm +++ b/code/modules/organs/robolimbs_vr.dm @@ -46,6 +46,23 @@ icon = 'icons/obj/items_vr.dmi' icon_state = "verkdisk" + +// tucker0666 : Frost +/datum/robolimb/zenghu_frost + company = "Zeng-Hu" + desc = "This limb has realistic synthetic flesh covering with 'blue accents'." + icon = 'icons/mob/human_races/cyberlimbs/_fluff_vr/Frosty.dmi' + blood_color = "#45ccff" + lifelike = 1 + skin_tone = 1 + unavailable_to_build = 1 + whitelisted_to = list("tucker0666") + + +/obj/item/weapon/disk/limb/zenghu_frost + company = "Zeng-Hu (Modified)" + catalogue_data = list(/datum/category_item/catalogue/information/organization/zeng_hu) + //////////////// General VS-only ones ///////////////// /datum/robolimb/talon //They're buildable by default due to being extremely basic. company = "Talon LLC" diff --git a/code/modules/organs/subtypes/indestructible.dm b/code/modules/organs/subtypes/indestructible.dm index 2f2e13400f..169b7f2c38 100644 --- a/code/modules/organs/subtypes/indestructible.dm +++ b/code/modules/organs/subtypes/indestructible.dm @@ -63,3 +63,9 @@ cannot_amputate = 1 cannot_break = 1 dislocated = -1 + +/obj/item/organ/external/head/no_eyes/indestructible + cannot_gib = 1 + cannot_amputate = 1 + cannot_break = 1 + dislocated = -1 diff --git a/code/modules/organs/subtypes/shadekin.dm b/code/modules/organs/subtypes/shadekin.dm new file mode 100644 index 0000000000..fd1dd0a8c0 --- /dev/null +++ b/code/modules/organs/subtypes/shadekin.dm @@ -0,0 +1,6 @@ +/obj/item/organ/internal/brain/shadekin + can_assist = FALSE + + var/dark_energy = 100 + var/max_dark_energy = 100 + var/dark_energy_infinite = FALSE \ No newline at end of file diff --git a/code/modules/organs/subtypes/shadekin_vr.dm b/code/modules/organs/subtypes/shadekin_vr.dm new file mode 100644 index 0000000000..8b17b70d6e --- /dev/null +++ b/code/modules/organs/subtypes/shadekin_vr.dm @@ -0,0 +1,35 @@ +/obj/item/organ/external/chest/crewkin + min_broken_damage = 20 + +/obj/item/organ/external/groin/crewkin + min_broken_damage = 20 + +/obj/item/organ/external/head/vr/crewkin + min_broken_damage = 15 + + eye_icons_vr = 'icons/mob/human_face_vr.dmi' + eye_icon_vr = "eyes_shadekin_station" + +/obj/item/organ/external/arm/crewkin + min_broken_damage = 15 + +/obj/item/organ/external/arm/right/crewkin + min_broken_damage = 15 + +/obj/item/organ/external/leg/crewkin + min_broken_damage = 15 + +/obj/item/organ/external/leg/right/crewkin + min_broken_damage = 15 + +/obj/item/organ/external/foot/crewkin + min_broken_damage = 7 + +/obj/item/organ/external/foot/right/crewkin + min_broken_damage = 7 + +/obj/item/organ/external/hand/crewkin + min_broken_damage = 7 + +/obj/item/organ/external/hand/right/crewkin + min_broken_damage = 7 \ No newline at end of file diff --git a/code/modules/organs/subtypes/standard_vr.dm b/code/modules/organs/subtypes/standard_vr.dm index 8c123ed5ef..ce6eaf9d9f 100644 --- a/code/modules/organs/subtypes/standard_vr.dm +++ b/code/modules/organs/subtypes/standard_vr.dm @@ -20,7 +20,8 @@ if(eye_icon) var/icon/eyes_icon = new/icon(eye_icons_vr, eye_icon_vr) if(eyes) - eyes_icon.Blend(rgb(eyes.eye_colour[1], eyes.eye_colour[2], eyes.eye_colour[3]), ICON_ADD) + if(owner.species.appearance_flags & HAS_EYE_COLOR) + eyes_icon.Blend(rgb(eyes.eye_colour[1], eyes.eye_colour[2], eyes.eye_colour[3]), ICON_ADD) else eyes_icon.Blend(rgb(128,0,0), ICON_ADD) mob_icon.Blend(eyes_icon, ICON_OVERLAY) @@ -46,7 +47,6 @@ if(hair_style.do_colouration && islist(h_col) && h_col.len >= 3) hair_s.Blend(rgb(h_col[1], h_col[2], h_col[3]), ICON_MULTIPLY) overlays |= image(hair_s, "pixel_y" = head_offset) - return mob_icon /obj/item/organ/external/head/vr @@ -61,4 +61,11 @@ /obj/item/organ/external/head/vr/werebeast eye_icons_vr = 'icons/mob/werebeast_face_vr.dmi' eye_icon_vr = "werebeast_eyes" - head_offset = 6 \ No newline at end of file + head_offset = 6 + +/obj/item/organ/external/head/vr/shadekin + cannot_gib = 1 + cannot_amputate = 1 + + eye_icons_vr = 'icons/mob/human_face_vr.dmi' + eye_icon_vr = "eyes_shadekin" diff --git a/code/modules/organs/subtypes/xenos.dm b/code/modules/organs/subtypes/xenos.dm index dd860ab235..1c4cfa6907 100644 --- a/code/modules/organs/subtypes/xenos.dm +++ b/code/modules/organs/subtypes/xenos.dm @@ -137,3 +137,79 @@ if(ishuman(owner)) H = owner color = H.species.blood_color + + +// XENOMORPH EXTERNAL ORGANS + +/obj/item/organ/external/chest/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + thick_skin = TRUE + +/obj/item/organ/external/groin/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/arm/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/arm/right/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/leg/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/leg/right/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/foot/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/foot/right/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/hand/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/hand/right/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/head/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + thick_skin = TRUE + eye_icon = "blank_eyes" diff --git a/code/modules/power/cells/power_cells.dm b/code/modules/power/cells/power_cells.dm index 07eb9996a3..3afb0d5450 100644 --- a/code/modules/power/cells/power_cells.dm +++ b/code/modules/power/cells/power_cells.dm @@ -18,6 +18,7 @@ /obj/item/weapon/cell/secborg/empty/New() ..() charge = 0 + update_icon() /obj/item/weapon/cell/apc name = "heavy-duty power cell" @@ -35,6 +36,7 @@ /obj/item/weapon/cell/high/empty/New() ..() charge = 0 + update_icon() /obj/item/weapon/cell/super name = "super-capacity power cell" @@ -46,6 +48,7 @@ /obj/item/weapon/cell/super/empty/New() ..() charge = 0 + update_icon() /obj/item/weapon/cell/hyper name = "hyper-capacity power cell" @@ -57,6 +60,7 @@ /obj/item/weapon/cell/hyper/empty/New() ..() charge = 0 + update_icon() /obj/item/weapon/cell/infinite name = "infinite-capacity power cell!" diff --git a/code/modules/projectiles/guns/energy/stun.dm b/code/modules/projectiles/guns/energy/stun.dm index 4240abe9e3..e429330042 100644 --- a/code/modules/projectiles/guns/energy/stun.dm +++ b/code/modules/projectiles/guns/energy/stun.dm @@ -22,6 +22,12 @@ charge_cost = 400 recharge_time = 7 //Time it takes for shots to recharge (in ticks) +/obj/item/weapon/gun/energy/taser/mounted/cyborg/swarm + name = "disabler" + desc = "An archaic device which attacks the target's nervous-system or control circuits." + projectile_type = /obj/item/projectile/beam/stun/disabler + charge_cost = 200 + recharge_time = 0.5 SECONDS /obj/item/weapon/gun/energy/stunrevolver name = "stun revolver" @@ -32,7 +38,6 @@ projectile_type = /obj/item/projectile/energy/electrode/strong charge_cost = 300 - /obj/item/weapon/gun/energy/crossbow name = "mini energy-crossbow" desc = "A weapon favored by many mercenary stealth specialists." diff --git a/code/modules/projectiles/guns/magnetic/magnetic_railgun.dm b/code/modules/projectiles/guns/magnetic/magnetic_railgun.dm index 0be62e0688..a2934d29e1 100644 --- a/code/modules/projectiles/guns/magnetic/magnetic_railgun.dm +++ b/code/modules/projectiles/guns/magnetic/magnetic_railgun.dm @@ -108,3 +108,89 @@ list(mode_name="semiauto", burst=1, fire_delay=0, move_delay=null, one_handed_penalty=15, burst_accuracy=null, dispersion=null), list(mode_name="short bursts", burst=3, fire_delay=null, move_delay=5, one_handed_penalty=30, burst_accuracy=list(0,-15,-15), dispersion=list(0.0, 0.6, 1.0)), ) + +/obj/item/weapon/gun/magnetic/railgun/heater + name = "coil rifle" + desc = "A large rifle designed and produced after the Grey Hour." + description_info = "The MI-51B is a Martian weapon designed in the days after the Grey Hour, in preparation for the need for updated equipment by Solar forces.
\ + The design is based upon a larger rail-type weapon design." + icon_state = "railgun_sec" + item_state = "cshotgun" + + removable_components = TRUE + + initial_cell_type = /obj/item/weapon/cell/high + initial_capacitor_type = /obj/item/weapon/stock_parts/capacitor + + fire_delay = 8 + + slot_flags = SLOT_BACK + + slowdown = 0 + slowdown_held = 0 + slowdown_worn = 0 + + power_cost = 400 + projectile_type = /obj/item/projectile/bullet/magnetic/heated + loaded = null + empty_sound = 'sound/weapons/smg_empty_alarm.ogg' + + firemodes = list( + list(mode_name="high power", power_cost = 400, projectile_type = /obj/item/projectile/bullet/magnetic/heated, burst=1, fire_delay=8, move_delay=null, one_handed_penalty=15), + list(mode_name="low power", power_cost = 150, projectile_type = /obj/item/projectile/bullet/magnetic/heated/weak, burst=1, fire_delay=5, move_delay=null, one_handed_penalty=15), + ) + +/obj/item/weapon/gun/magnetic/railgun/heater/pistol + name = "coil pistol" + desc = "A large pistol designed and produced after the Grey Hour." + description_info = "The MI-60D `Peacemaker` is a Martian weapon designed in the days after the Grey Hour, in preparation for the need for updated equipment by Solar forces.
\ + The design is based upon a larger rail-type hybrid weapon design, though much smaller in scale." + icon_state = "peacemaker" + item_state = "revolver" + + w_class = ITEMSIZE_NORMAL + + initial_cell_type = /obj/item/weapon/cell/high + initial_capacitor_type = /obj/item/weapon/stock_parts/capacitor + + slot_flags = SLOT_BELT|SLOT_HOLSTER + + firemodes = list( + list(mode_name="lethal", power_cost = 2000, projectile_type = /obj/item/projectile/bullet/magnetic/heated, burst=1, fire_delay=8, move_delay=null, one_handed_penalty=0), + list(mode_name="stun", power_cost = 1500, projectile_type = /obj/item/projectile/energy/electrode/stunshot, burst=1, fire_delay=5, move_delay=null, one_handed_penalty=0), + ) + +/obj/item/weapon/gun/magnetic/railgun/heater/pistol/hos + name = "prototype peacemaker" + + dna_lock = TRUE + + description_antag = "This weapon starts with a DNA locking chip attached. Using an EMAG on the weapon will disarm it, and allow you to use the chip as your own." + + firemodes = list( + list(mode_name="lethal", power_cost = 1500, projectile_type = /obj/item/projectile/bullet/magnetic/heated, burst=1, fire_delay=8, move_delay=null, one_handed_penalty=0), + list(mode_name="stun", power_cost = 1200, projectile_type = /obj/item/projectile/energy/electrode/stunshot, burst=1, fire_delay=5, move_delay=null, one_handed_penalty=0), + ) + +/obj/item/weapon/gun/magnetic/railgun/flechette/sif + name = "shredder rifle" + desc = "The MI-12B Kaldr is a burst fire capable coilgun that fires modified slugs intended for damaging soft targets." + description_fluff = "The Kaldr is a weapon recently deployed to various outposts on Sif, as well as local hunting guilds for the rapid dispatching of invasive wildlife." + icon_state = "railgun_sifguard" + item_state = "z8carbine" + + initial_cell_type = /obj/item/weapon/cell/high + initial_capacitor_type = /obj/item/weapon/stock_parts/capacitor/adv + + slot_flags = SLOT_BACK + + slowdown = 0.3 + + power_cost = 200 + projectile_type = /obj/item/projectile/bullet/magnetic/flechette/hunting + empty_sound = 'sound/weapons/smg_empty_alarm.ogg' + + firemodes = list( + list(mode_name="semiauto", burst=1, fire_delay=0, move_delay=null, one_handed_penalty=15, burst_accuracy=null, dispersion=null), + list(mode_name="short bursts", burst=3, fire_delay=null, move_delay=5, one_handed_penalty=30, burst_accuracy=list(0,-15,-15), dispersion=list(0.0, 0.6, 1.0)), + ) diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index f3603a783d..b3b70aa7af 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -219,6 +219,12 @@ Range() /obj/item/projectile/Crossed(atom/movable/AM) //A mob moving on a tile with a projectile is hit by it. + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN ..() if(isliving(AM) && !(pass_flags & PASSMOB)) var/mob/living/L = AM diff --git a/code/modules/projectiles/projectile/beams.dm b/code/modules/projectiles/projectile/beams.dm index ec2670c61d..b00fa8221a 100644 --- a/code/modules/projectiles/projectile/beams.dm +++ b/code/modules/projectiles/projectile/beams.dm @@ -86,6 +86,19 @@ tracer_type = /obj/effect/projectile/tracer/xray impact_type = /obj/effect/projectile/impact/xray +/obj/item/projectile/beam/gamma + name = "gamma beam" + icon_state = "xray" + fire_sound = 'sound/weapons/eluger.ogg' + damage = 10 + armor_penetration = 90 + irradiate = 20 + light_color = "#00CC33" + + muzzle_type = /obj/effect/projectile/muzzle/xray + tracer_type = /obj/effect/projectile/tracer/xray + impact_type = /obj/effect/projectile/impact/xray + /obj/item/projectile/beam/cyan name = "cyan beam" icon_state = "cyan" @@ -215,6 +228,23 @@ icon_state = "stun" agony = 30 +/obj/item/projectile/beam/stun/disabler + muzzle_type = /obj/effect/projectile/muzzle/laser_omni + tracer_type = /obj/effect/projectile/tracer/laser_omni + impact_type = /obj/effect/projectile/impact/laser_omni + +/obj/item/projectile/beam/stun/disabler/on_hit(atom/target, blocked = 0, def_zone) + . = ..(target, blocked, def_zone) + + if(. && istype(target, /mob/living/silicon/robot) && prob(agony)) + var/mob/living/silicon/robot/R = target + var/drainamt = agony * (rand(5, 15) / 10) + R.drain_power(0, 0, drainamt) + if(istype(firer, /mob/living/silicon/robot)) // Mischevious sappers, the swarm drones are. + var/mob/living/silicon/robot/A = firer + if(A.cell) + A.cell.give(drainamt * 2) + /obj/item/projectile/beam/shock name = "shock beam" icon_state = "lightning" diff --git a/code/modules/projectiles/projectile/magnetic.dm b/code/modules/projectiles/projectile/magnetic.dm index 8185fb127e..9e76c3551f 100644 --- a/code/modules/projectiles/projectile/magnetic.dm +++ b/code/modules/projectiles/projectile/magnetic.dm @@ -22,6 +22,28 @@ damage = 20 armor_penetration = 100 +/obj/item/projectile/bullet/magnetic/flechette/hunting + name = "shredder slug" + armor_penetration = 30 + SA_bonus_damage = 40 + SA_vulnerability = SA_ANIMAL + +/obj/item/projectile/bullet/magnetic/heated + name = "slug" + icon_state = "gauss" + weaken = 0 + stun = 0 + damage = 30 + damage_type = SEARING + embed_chance = 0 + +/obj/item/projectile/bullet/magnetic/heated/weak + icon_state = "gauss_silenced" + damage = 15 + agony = 5 + embed_chance = 0 + armor_penetration = 50 + /obj/item/projectile/bullet/magnetic/fuelrod name = "fuel rod" icon_state = "fuel-deuterium" diff --git a/code/modules/projectiles/targeting/targeting_mob.dm b/code/modules/projectiles/targeting/targeting_mob.dm index 765b59b478..1f2921354b 100644 --- a/code/modules/projectiles/targeting/targeting_mob.dm +++ b/code/modules/projectiles/targeting/targeting_mob.dm @@ -12,7 +12,7 @@ M.aiming = new(src) M.aiming.toggle_active() else - src << "This verb may only be used by living mobs, sorry." + to_chat(src, "This verb may only be used by living mobs, sorry.") return /mob/living/proc/stop_aiming(var/obj/item/thing, var/no_message = 0) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm index 48afe19b7e..b077dd52c1 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm @@ -68,17 +68,16 @@ switch(alien) if(IS_SKRELL) M.adjustToxLoss(0.5 * removed) - return if(IS_TESHARI) ..(M, alien, removed*1.2) // Teshari get a bit more nutrition from meat. - return if(IS_UNATHI) ..(M, alien, removed*2.25) //Unathi get most of their nutrition from meat. //VOREStation Edit Start if(IS_CHIMERA) ..(M, alien, removed*4) //Xenochimera are obligate carnivores. //VOREStation Edit End - ..() + else + ..() /datum/reagent/nutriment/protein/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) if(alien && alien == IS_SKRELL) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm index b904067813..5d7fc8992e 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm @@ -37,6 +37,8 @@ strength = 50 color = "#d3785d" metabolism = REM * 2.5 // about right for mixing nutriment and ethanol. + var/alt_nutriment_factor = 5 //half as much as protein since it's half protein. + //using a new variable instead of nutriment_factor so we can call ..() without that adding nutrition for us without taking factors for protein into account glass_name = "Monster Tamer" glass_desc = "This looks like a vaguely-alcoholic slurry of meat. Gross." @@ -45,7 +47,18 @@ ..() if(M.species.gets_food_nutrition) //it's still food! - M.nutrition += (nutriment_factor * removed)/2 // For hunger and fatness + switch(alien) + if(IS_DIONA) //Diona don't get any nutrition from nutriment or protein. + if(IS_SKRELL) + M.adjustToxLoss(0.25 * removed) //Equivalent to half as much protein, since it's half protein. + if(IS_TESHARI) + M.nutrition += (alt_nutriment_factor * 1.2 * removed) //Give them the same nutrition they would get from protein. + if(IS_UNATHI) + M.nutrition += (alt_nutriment_factor * 1.125 * removed) //Give them the same nutrition they would get from protein. + //Takes into account the 0.5 factor for all nutriment which is applied on top of the 2.25 factor for protein. + //Chimera don't need their own case here since their factors for nutriment and protein cancel out. + else + M.nutrition += (alt_nutriment_factor * removed) if(ishuman(M)) var/mob/living/carbon/human/H = M if(H.feral > 0 && H.nutrition > 100 && H.traumatic_shock < min(60, H.nutrition/10) && H.jitteriness < 100) // same check as feral triggers to stop them immediately re-feralling @@ -54,3 +67,11 @@ H.feral = 0 H << "Your mind starts to clear, soothed into a state of clarity as your senses return." log_and_message_admins("is no longer feral.", H) + +/datum/reagent/ethanol/monstertamer/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + ..() + if(alien == IS_SKRELL) + M.adjustToxLoss(removed) //Equivalent to half as much protein, since it's half protein. + if(M.species.gets_food_nutrition) + if(alien == IS_SLIME || alien == IS_CHIMERA) //slimes and chimera can get nutrition from injected nutriment and protein + M.nutrition += (alt_nutriment_factor * removed) \ No newline at end of file diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index b2bb2ec8c3..2255860547 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -2478,13 +2478,13 @@ id = "virginsexonthebeach" result = "virginsexonthebeach" required_reagents = list("orangejuice" = 3, "grenadine" = 2) - result_amount = 4 + result_amount = 5 /datum/chemical_reaction/drinks/sexonthebeach name = "Sex On The Beach" id = "sexonthebeach" result = "sexonthebeach" - required_reagents = list("orangejuice" = 3, "grenadine" = 2, "vodka" = 1) + required_reagents = list("virginsexonthebeach" = 5, "vodka" = 1) result_amount = 6 /datum/chemical_reaction/drinks/eggnog diff --git a/code/modules/reagents/reagent_containers/syringes.dm b/code/modules/reagents/reagent_containers/syringes.dm index 092070e0a4..66c5f652f9 100644 --- a/code/modules/reagents/reagent_containers/syringes.dm +++ b/code/modules/reagents/reagent_containers/syringes.dm @@ -183,8 +183,6 @@ if(H.wear_suit) if(istype(H.wear_suit, /obj/item/clothing/suit/space)) injtime = injtime * 2 - else if(!H.can_inject(user, 1)) - return else if(isliving(target)) diff --git a/code/modules/research/designs.dm b/code/modules/research/designs.dm index 938495b00f..f55bd71d77 100644 --- a/code/modules/research/designs.dm +++ b/code/modules/research/designs.dm @@ -61,4 +61,13 @@ other types of metals and chemistry for reagents). return new build_path(newloc) /datum/design/item - build_type = PROTOLATHE \ No newline at end of file + build_type = PROTOLATHE + +//Make sure items don't get free power +/datum/design/item/Fabricate() + var/obj/item/I = ..() + var/obj/item/weapon/cell/C = I.get_cell() + if(C) + C.charge = 0 + I.update_icon() + return I \ No newline at end of file diff --git a/code/modules/research/designs/power_cells.dm b/code/modules/research/designs/power_cells.dm index a387f7cc4c..bbfd593bff 100644 --- a/code/modules/research/designs/power_cells.dm +++ b/code/modules/research/designs/power_cells.dm @@ -12,6 +12,7 @@ /datum/design/item/powercell/Fabricate() var/obj/item/weapon/cell/C = ..() C.charge = 0 //shouldn't produce power out of thin air. + C.update_icon() return C /datum/design/item/powercell/basic diff --git a/code/modules/resleeving/infomorph.dm b/code/modules/resleeving/infomorph.dm index 6166bb6456..9f5528d547 100644 --- a/code/modules/resleeving/infomorph.dm +++ b/code/modules/resleeving/infomorph.dm @@ -154,7 +154,7 @@ var/list/infomorph_emotions = list( // 20% chance to kill src.silence_time = world.timeofday + 120 * 10 // Silence for 2 minutes - src << "Communication circuit overload. Shutting down and reloading communication circuits - speech and messaging functionality will be unavailable until the reboot is complete." + to_chat(src, "Communication circuit overload. Shutting down and reloading communication circuits - speech and messaging functionality will be unavailable until the reboot is complete.") if(prob(20)) var/turf/T = get_turf_or_move(src.loc) for (var/mob/M in viewers(T)) @@ -337,7 +337,7 @@ var/list/infomorph_emotions = list( resting = !resting icon_state = resting ? "[chassis]_rest" : "[chassis]" - src << "You are now [resting ? "resting" : "getting up"]" + to_chat(src, "You are now [resting ? "resting" : "getting up"]") canmove = !resting @@ -384,11 +384,11 @@ var/list/infomorph_emotions = list( if(idaccessible == 0) idaccessible = 1 - src << "You allow access modifications." + to_chat(src, "You allow access modifications.") else idaccessible = 0 - src << "You block access modfications." + to_chat(src, "You block access modfications.") /mob/living/silicon/infomorph/verb/wipe_software() set name = "Suspend Self" @@ -423,7 +423,7 @@ var/list/infomorph_emotions = list( /mob/living/silicon/infomorph/say(var/msg) if(silence_time) - src << "Communication circuits remain uninitialized." + to_chat(src, "Communication circuits remain uninitialized.") else ..(msg) @@ -563,7 +563,7 @@ var/global/list/default_infomorph_software = list() if(print_flavor_text()) msg += "\n[print_flavor_text()]\n" if (pose) - if( findtext(pose,".",lentext(pose)) == 0 && findtext(pose,"!",lentext(pose)) == 0 && findtext(pose,"?",lentext(pose)) == 0 ) + if( findtext(pose,".",length(pose)) == 0 && findtext(pose,"!",length(pose)) == 0 && findtext(pose,"?",length(pose)) == 0 ) pose = addtext(pose,".") //Makes sure all emotes end with a period. msg += "\nIt is [pose]" @@ -594,7 +594,7 @@ var/global/list/default_infomorph_software = list() if(silence_time) if(world.timeofday >= silence_time) silence_time = null - src << "Communication circuit reinitialized. Speech and messaging functionality restored." + to_chat(src, "Communication circuit reinitialized. Speech and messaging functionality restored.") handle_statuses() diff --git a/code/modules/scripting/Implementations/_Logic.dm b/code/modules/scripting/Implementations/_Logic.dm index aa4080d440..5522d0e2aa 100644 --- a/code/modules/scripting/Implementations/_Logic.dm +++ b/code/modules/scripting/Implementations/_Logic.dm @@ -141,7 +141,7 @@ proc/string_tolist(var/string) var/list/L = new/list() var/i - for(i=1, i<=lentext(string), i++) + for(i=1, i<=length(string), i++) L.Add(copytext(string, i, i)) return L @@ -154,12 +154,12 @@ proc/string_explode(var/string, var/separator) var/lasti = 1 var/list/L = new/list() - for(i=1, i<=lentext(string)+1, i++) + for(i=1, i<=length(string)+1, i++) if(copytext(string, i, i+1) == separator) // We found a separator L.Add(copytext(string, lasti, i)) lasti = i+1 - L.Add(copytext(string, lasti, lentext(string)+1)) // Adds the last segment + L.Add(copytext(string, lasti, length(string)+1)) // Adds the last segment return L @@ -186,7 +186,7 @@ proc/n_reverse(var/string) if(istext(string)) var/newstring = "" var/i - for(i=lentext(string), i>0, i--) + for(i=length(string), i>0, i--) if(i>=1000) break newstring = newstring + copytext(string, i, i+1) @@ -250,9 +250,9 @@ proc/n_inrange(var/num, var/min=-1, var/max=1) /proc/string_replacetext(var/haystack,var/a,var/b) if(istext(haystack)&&istext(a)&&istext(b)) var/i = 1 - var/lenh=lentext(haystack) - var/lena=lentext(a) - //var/lenb=lentext(b) + var/lenh=length(haystack) + var/lena=length(a) + //var/lenb=length(b) var/count = 0 var/list/dat = list() while (i < lenh) diff --git a/code/modules/scripting/Options.dm b/code/modules/scripting/Options.dm index 22774455dc..c8ca1d5830 100644 --- a/code/modules/scripting/Options.dm +++ b/code/modules/scripting/Options.dm @@ -31,8 +31,8 @@ n_scriptOptions IsValidID(id) //returns true if all the characters in the string are okay to be in an identifier name if(!CanStartID(id)) //don't need to grab first char in id, since text2ascii does it automatically return 0 - if(lentext(id)==1) return 1 - for(var/i=2 to lentext(id)) + if(length(id)==1) return 1 + for(var/i=2 to length(id)) if(!IsValidIDChar(copytext(id, i, i+1))) return 0 return 1 diff --git a/code/modules/scripting/Scanner/Scanner.dm b/code/modules/scripting/Scanner/Scanner.dm index 35f21b39fd..0162119760 100644 --- a/code/modules/scripting/Scanner/Scanner.dm +++ b/code/modules/scripting/Scanner/Scanner.dm @@ -115,7 +115,7 @@ Scan() //Creates a list of tokens from source code var/list/tokens=new - for(, src.codepos<=lentext(code), src.codepos++) + for(, src.codepos<=length(code), src.codepos++) var/char=copytext(code, codepos, codepos+1) if(char=="\n") @@ -155,7 +155,7 @@ ReadString(start) var buf - for(, codepos <= lentext(code), codepos++)//codepos to lentext(code)) + for(, codepos <= length(code), codepos++)//codepos to length(code)) var/char=copytext(code, codepos, codepos+1) switch(char) if("\\") //Backslash (\) encountered in string @@ -192,7 +192,7 @@ var char=copytext(code, codepos, codepos+1) buf - while(!delim.Find(char) && codepos<=lentext(code)) + while(!delim.Find(char) && codepos<=length(code)) buf+=char char=copytext(code, ++codepos, codepos+1) codepos-- //allow main Scan() proc to read the delimiter @@ -212,7 +212,7 @@ while(options.symbols.Find(buf+char)) buf+=char - if(++codepos>lentext(code)) break + if(++codepos>length(code)) break char=copytext(code, codepos, codepos+1) codepos-- //allow main Scan() proc to read the next character @@ -260,7 +260,7 @@ comm = 2 // starts a multi-line comment while(comm) - if(++codepos>lentext(code)) break + if(++codepos>length(code)) break if(expectedend) // ending statement expected... char = copytext(code, codepos, codepos+1) diff --git a/code/modules/surgery/generic.dm b/code/modules/surgery/generic.dm index 64de0aeef4..02003dd950 100644 --- a/code/modules/surgery/generic.dm +++ b/code/modules/surgery/generic.dm @@ -102,7 +102,7 @@ affected.open = 1 affected.createwound(CUT, 1) - affected.clamp() + affected.organ_clamp() spread_germs_to_organ(affected, user) /datum/surgery_step/generic/cut_with_laser/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) @@ -148,7 +148,7 @@ affected.status |= ORGAN_BLEEDING affected.createwound(CUT, 1) - affected.clamp() + affected.organ_clamp() affected.open = 2 /datum/surgery_step/generic/incision_manager/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) @@ -188,7 +188,7 @@ var/obj/item/organ/external/affected = target.get_organ(target_zone) user.visible_message("[user] clamps bleeders in [target]'s [affected.name] with \the [tool].", \ "You clamp bleeders in [target]'s [affected.name] with \the [tool].") - affected.clamp() + affected.organ_clamp() spread_germs_to_organ(affected, user) /datum/surgery_step/generic/clamp_bleeders/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) diff --git a/code/modules/turbolift/turbolift_console.dm b/code/modules/turbolift/turbolift_console.dm index cb9e93f4fb..a0cf1dbd52 100644 --- a/code/modules/turbolift/turbolift_console.dm +++ b/code/modules/turbolift/turbolift_console.dm @@ -90,7 +90,7 @@ return light_up() pressed(user) - if(floor == lift.current_floor) + if(floor == lift.current_floor && !(lift.target_floor)) //Make sure we're not going anywhere before opening doors lift.open_doors() spawn(3) reset() diff --git a/code/modules/vore/appearance/spider_taur_powers_vr.dm b/code/modules/vore/appearance/spider_taur_powers_vr.dm index 0fccc108ac..5675c6378a 100644 --- a/code/modules/vore/appearance/spider_taur_powers_vr.dm +++ b/code/modules/vore/appearance/spider_taur_powers_vr.dm @@ -29,7 +29,7 @@ mob/proc/weaveWeb() spawn(30) //3 seconds to form new /obj/effect/spider/stickyweb(src.loc) else - src << "You do not have enough nutrition to create webbing!" + to_chat(src, "You do not have enough nutrition to create webbing!") */ mob/proc/weaveWebBindings() @@ -42,4 +42,4 @@ mob/proc/weaveWebBindings() var/obj/item/clothing/suit/web_bindings/bindings = new() //This sprite is amazing, I must say. src.put_in_hands(bindings) else - src << "You do not have enough nutrition to create webbing!" //CK~ + to_chat(src, "You do not have enough nutrition to create webbing!") //CK~ diff --git a/code/modules/vore/appearance/sprite_accessories_taur_vr.dm b/code/modules/vore/appearance/sprite_accessories_taur_vr.dm index d4fd1f13dc..1383de68de 100644 --- a/code/modules/vore/appearance/sprite_accessories_taur_vr.dm +++ b/code/modules/vore/appearance/sprite_accessories_taur_vr.dm @@ -157,25 +157,49 @@ clip_mask_icon = 'icons/mob/vore/taurs_vr.dmi' clip_mask_state = "taur_clip_mask_def" //Used to clip off the lower part of suits & uniforms. -/datum/sprite_accessory/tail/taur/roiz_long_lizard // Not ACTUALLY a taur, but it uses 32x64 so it wouldn't fit in tails.dmi, and having it as a tail bugs up the sprite. - name = "Long Lizard Tail (Roiz Lizden)" - icon_state = "roiz_tail_s" - do_colouration = 0 - ckeys_allowed = list("spoopylizz") +// Species-unique long tails/taurhalves + +/datum/sprite_accessory/tail/taur/shadekin_tail + name = "Shadekin Tail (Shadekin)" + icon_state = "shadekin_s" + can_ride = 0 hide_body_parts = null clip_mask_icon = null clip_mask_state = null + apply_restrictions = TRUE + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) + +/datum/sprite_accessory/tail/taur/shadekin_tail/shadekin_tail_2c + name = "Shadekin Tail dual-color (Shadekin)" + extra_overlay = "shadekin_markings" + +/datum/sprite_accessory/tail/taur/shadekin_tail/shadekin_tail_long + name = "Shadekin Long Tail (Shadekin)" + icon_state = "shadekin_long_s" + +// Tails/taurhalves for everyone /datum/sprite_accessory/tail/taur/wolf name = "Wolf (Taur)" icon_state = "wolf_s" suit_sprites = 'icons/mob/taursuits_wolf_vr.dmi' +//TFF 22/11/19 - CHOMPStation port of fat taur sprites +/datum/sprite_accessory/tail/taur/fatwolf + name = "Fat Wolf (Taur)" + icon_state = "fatwolf_s" + /datum/sprite_accessory/tail/taur/wolf/wolf_2c name = "Wolf dual-color (Taur)" icon_state = "wolf_s" extra_overlay = "wolf_markings" +//TFF 22/11/19 - CHOMPStation port of fat taur sprites +/datum/sprite_accessory/tail/taur/wolf/fatwolf_2c + name = "Fat Wolf dual-color (Taur)" + icon_state = "fatwolf_s" + extra_overlay = "fatwolf_markings" + /datum/sprite_accessory/tail/taur/wolf/synthwolf name = "SynthWolf dual-color (Taur)" icon_state = "synthwolf_s" @@ -347,11 +371,27 @@ name = "Feline (Taur)" icon_state = "feline_s" +//TFF 22/11/19 - CHOMPStation port of fat taur sprites +/datum/sprite_accessory/tail/taur/fatfeline + name = "Fat Feline (Taur)" + icon_state = "fatfeline_s" + +/datum/sprite_accessory/tail/taur/fatfeline_wag + name = "Fat Feline (Taur) (vwag)" + icon_state = "fatfeline_s" + ani_state = "fatfeline_w" + /datum/sprite_accessory/tail/taur/feline/feline_2c name = "Feline dual-color (Taur)" icon_state = "feline_s" extra_overlay = "feline_markings" +//TFF 22/11/19 - CHOMPStation port of fat taur sprites +/datum/sprite_accessory/tail/taur/feline/fatfeline_2c + name = "Fat Feline dual-color (Taur)" + icon_state = "fatfeline_s" + extra_overlay = "fatfeline_markings" + /datum/sprite_accessory/tail/taur/feline/synthfeline name = "SynthFeline dual-color (Taur)" icon_state = "synthfeline_s" @@ -402,6 +442,49 @@ icon_state = "otie_s" extra_overlay = "otie_markings" +/datum/sprite_accessory/tail/taur/alraune/alraune_2c + name = "Alraune (dual color)" + icon_state = "alraunecolor_s" + ani_state = "alraunecolor_closed_s" + ckeys_allowed = null + do_colouration = 1 + extra_overlay = "alraunecolor_markings" + extra_overlay_w = "alraunecolor_closed_markings" + clip_mask_state = "taur_clip_mask_alraune" + +/datum/sprite_accessory/tail/taur/wasp + name = "Wasp (dual color)" + icon_state = "wasp_s" + extra_overlay = "wasp_markings" + clip_mask_state = "taur_clip_mask_wasp" + + msg_owner_disarm_run = "You quickly push %prey to the ground with your leg!" + msg_prey_disarm_run = "%owner pushes you down to the ground with their leg!" + + msg_owner_disarm_walk = "You firmly push your leg down on %prey, painfully but harmlessly pinning them to the ground!" + msg_prey_disarm_walk = "%owner firmly pushes their leg down on you, quite painfully but harmlessly pinning you to the ground!" + + msg_owner_harm_walk = "You methodically place your leg down upon %prey's body, slowly applying pressure, crushing them against the floor!" + msg_prey_harm_walk = "%owner methodically places their leg upon your body, slowly applying pressure, crushing you against the floor!" + + msg_owner_grab_success = "You pin %prey down on the ground with your front leg before using your other leg to pick them up, trapping them between two of your front legs!" + msg_prey_grab_success = "%owner pins you down on the ground with their front leg before using their other leg to pick you up, trapping you between two of their front legs!" + + msg_owner_grab_fail = "You step down onto %prey, squishing them and forcing them down to the ground!" + msg_prey_grab_fail = "%owner steps down and squishes you with their leg, forcing you down to the ground!" + +// Special snowflake tails/taurhalves + +//spoopylizz: Roiz Lizden +/datum/sprite_accessory/tail/taur/roiz_long_lizard // Not ACTUALLY a taur, but it uses 32x64 so it wouldn't fit in tails.dmi, and having it as a tail bugs up the sprite. + name = "Long Lizard Tail (Roiz Lizden)" + icon_state = "roiz_tail_s" + do_colouration = 0 + ckeys_allowed = list("spoopylizz") + hide_body_parts = null + clip_mask_icon = null + clip_mask_state = null + //wickedtemp: Chakat Tempest /datum/sprite_accessory/tail/taur/feline/tempest name = "Feline (wickedtemp) (Taur)" @@ -436,7 +519,7 @@ msg_owner_grab_fail = "You step down onto %prey, squishing them and forcing them down to the ground!" msg_prey_grab_fail = "%owner steps down and squishes you with their leg, forcing you down to the ground!" -//liquidfirefly: Ariana Scol +//natje: /datum/sprite_accessory/tail/taur/alraune name = "Alraune (natje) (Taur)" icon_state = "alraune_s" @@ -466,35 +549,4 @@ msg_prey_grab_success = "%owner slides over you with their vines, smushing you against the ground before wrapping one up around you, trapping you within the tight confines of their vines!" msg_owner_grab_fail = "You step down onto %prey with one of your vines, forcing them onto the ground!" - msg_prey_grab_fail = "%owner steps down onto you with one of their vines, squishing you and forcing you onto the ground!" - -/datum/sprite_accessory/tail/taur/alraune/alraune_2c - name = "Alraune (dual color)" - icon_state = "alraunecolor_s" - ani_state = "alraunecolor_closed_s" - ckeys_allowed = null - do_colouration = 1 - extra_overlay = "alraunecolor_markings" - extra_overlay_w = "alraunecolor_closed_markings" - clip_mask_state = "taur_clip_mask_alraune" - -/datum/sprite_accessory/tail/taur/wasp - name = "Wasp (dual color)" - icon_state = "wasp_s" - extra_overlay = "wasp_markings" - clip_mask_state = "taur_clip_mask_wasp" - - msg_owner_disarm_run = "You quickly push %prey to the ground with your leg!" - msg_prey_disarm_run = "%owner pushes you down to the ground with their leg!" - - msg_owner_disarm_walk = "You firmly push your leg down on %prey, painfully but harmlessly pinning them to the ground!" - msg_prey_disarm_walk = "%owner firmly pushes their leg down on you, quite painfully but harmlessly pinning you to the ground!" - - msg_owner_harm_walk = "You methodically place your leg down upon %prey's body, slowly applying pressure, crushing them against the floor!" - msg_prey_harm_walk = "%owner methodically places their leg upon your body, slowly applying pressure, crushing you against the floor!" - - msg_owner_grab_success = "You pin %prey down on the ground with your front leg before using your other leg to pick them up, trapping them between two of your front legs!" - msg_prey_grab_success = "%owner pins you down on the ground with their front leg before using their other leg to pick you up, trapping you between two of their front legs!" - - msg_owner_grab_fail = "You step down onto %prey, squishing them and forcing them down to the ground!" - msg_prey_grab_fail = "%owner steps down and squishes you with their leg, forcing you down to the ground!" + msg_prey_grab_fail = "%owner steps down onto you with one of their vines, squishing you and forcing you onto the ground!" \ No newline at end of file diff --git a/code/modules/vore/appearance/sprite_accessories_vr.dm b/code/modules/vore/appearance/sprite_accessories_vr.dm index efdb36d628..ff2c109d32 100644 --- a/code/modules/vore/appearance/sprite_accessories_vr.dm +++ b/code/modules/vore/appearance/sprite_accessories_vr.dm @@ -12,6 +12,7 @@ /datum/sprite_accessory // Ckey of person allowed to use this, if defined. var/list/ckeys_allowed = null + var/apply_restrictions = FALSE //whether to apply restrictions for specific tails/ears/wings /* //////////////////////////// @@ -29,6 +30,17 @@ var/extra_overlay // Icon state of an additional overlay to blend in. var/desc = "You should not see this..." +// Species-unique ears + +/datum/sprite_accessory/ears/shadekin + name = "Shadekin Ears, colorable" + desc = "" + icon_state = "shadekin" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + apply_restrictions = TRUE + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) + // Ears avaliable to anyone /datum/sprite_accessory/ears/squirrel_orange @@ -386,6 +398,14 @@ color_blend_mode = ICON_MULTIPLY extra_overlay = "tesharilowinner" +/datum/sprite_accessory/ears/inkling + name = "colorable mature inkling hair" + desc = "" + icon = 'icons/mob/human_face_vr.dmi' + icon_state = "inkling-colorable" + color_blend_mode = ICON_MULTIPLY + do_colouration = 1 + // Special snowflake ears go below here. @@ -467,6 +487,12 @@ icon_state = "alurane-ears" ckeys_allowed = list("natje") +/datum/sprite_accessory/ears/frost + name = "Frost antenna" + desc = "" + icon_state = "frosted_tips" + ckeys_allowed = list("tucker0666") + /* //////////////////////////// / =--------------------= / @@ -657,6 +683,19 @@ var/icon/clip_mask_icon = null //Icon file used for clip mask. var/clip_mask_state = null //Icon state to generate clip mask. Clip mask is used to 'clip' off the lower part of clothing such as jumpsuits & full suits. +// Species-unique tails + +/datum/sprite_accessory/tail/shadekin_short + name = "Shadekin Short Tail, colorable" + desc = "" + icon_state = "shadekin-short" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + apply_restrictions = TRUE + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) + +// Everyone tails + /datum/sprite_accessory/tail/invisible name = "hide species-sprite tail" icon = null @@ -915,6 +954,18 @@ icon_state = "aronai" ckeys_allowed = list("arokha") +/datum/sprite_accessory/tail/cabletail + name = "cabletail" + desc = "cabletail" + icon_state = "cabletail" + ckeys_allowed = list("tucker0666") + +/datum/sprite_accessory/tail/featherfluff_tail + name = "featherfluff_tail" + desc = "" + icon_state = "featherfluff_tail" + ckeys_allowed = list("tucker0666") + /datum/sprite_accessory/tail/ketrai_wag name = "fennix tail (vwag)" desc = "" @@ -992,6 +1043,7 @@ extra_overlay = "sneptail_mark" extra_overlay_w = "sneptail_mark_w" + /datum/sprite_accessory/tail/tiger_new name = "tiger tail (vwag)" desc = "" diff --git a/code/modules/vore/eating/belly_dat_vr.dm b/code/modules/vore/eating/belly_dat_vr.dm index accd3c9bf2..01bda55389 100644 --- a/code/modules/vore/eating/belly_dat_vr.dm +++ b/code/modules/vore/eating/belly_dat_vr.dm @@ -14,6 +14,7 @@ var/human_prey_swallow_time = 100 // Time in deciseconds to swallow /mob/living/carbon/human var/nonhuman_prey_swallow_time = 30 // Time in deciseconds to swallow anything else var/emoteTime = 600 // How long between stomach emotes at prey + var/nutrition_percent = 100 // Nutritional percent per tick in digestion mode. var/digest_brute = 2 // Brute damage per tick in digestion mode var/digest_burn = 3 // Burn damage per tick in digestion mode var/digest_tickrate = 3 // Modulus this of air controller tick number to iterate gurgles on @@ -105,6 +106,7 @@ new_belly.human_prey_swallow_time = human_prey_swallow_time new_belly.nonhuman_prey_swallow_time = nonhuman_prey_swallow_time new_belly.emote_time = emoteTime + new_belly.nutrition_percent = nutrition_percent new_belly.digest_brute = digest_brute new_belly.digest_burn = digest_burn new_belly.immutable = immutable diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 0afa43f649..3183aaef8d 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -19,6 +19,7 @@ var/human_prey_swallow_time = 100 // Time in deciseconds to swallow /mob/living/carbon/human var/nonhuman_prey_swallow_time = 30 // Time in deciseconds to swallow anything else var/emote_time = 60 SECONDS // How long between stomach emotes at prey + var/nutrition_percent = 100 // Nutritional percentage per tick in digestion mode var/digest_brute = 2 // Brute damage per tick in digestion mode var/digest_burn = 2 // Burn damage per tick in digestion mode var/immutable = FALSE // Prevents this belly from being deleted @@ -129,6 +130,7 @@ "human_prey_swallow_time", "nonhuman_prey_swallow_time", "emote_time", + "nutrition_percent", "digest_brute", "digest_burn", "immutable", @@ -478,7 +480,7 @@ if(!digested) items_preserved |= item else - owner.nutrition += (5 * digested) + owner.nutrition += ((nutrition_percent / 100) * 5 * digested) if(isrobot(owner)) var/mob/living/silicon/robot/R = owner R.cell.charge += (50 * digested) @@ -661,6 +663,7 @@ dupe.human_prey_swallow_time = human_prey_swallow_time dupe.nonhuman_prey_swallow_time = nonhuman_prey_swallow_time dupe.emote_time = emote_time + dupe.nutrition_percent = nutrition_percent dupe.digest_brute = digest_brute dupe.digest_burn = digest_burn dupe.immutable = immutable diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm index 39f480fda5..7bdeb648b6 100644 --- a/code/modules/vore/eating/bellymodes_vr.dm +++ b/code/modules/vore/eating/bellymodes_vr.dm @@ -186,12 +186,14 @@ digestion_death(M) if(!ishuman(owner)) owner.update_icons() + if(compensation == 0) //Slightly sloppy way at making sure certain mobs don't give ZERO nutrition (fish and so on) + compensation = 21 //This reads as 20*4.5 due to the calculations afterward, making the backup nutrition value 94.5 per mob. Not op compared to regular prey. if(compensation > 0) if(isrobot(owner)) var/mob/living/silicon/robot/R = owner R.cell.charge += 25*compensation else - owner.nutrition += 4.5*compensation + owner.nutrition += (nutrition_percent / 100)*4.5*compensation to_update = TRUE continue @@ -211,9 +213,9 @@ var/mob/living/silicon/robot/R = owner R.cell.charge += 25*damage_gain if(offset) // If any different than default weight, multiply the % of offset. - owner.nutrition += offset*(4.5*(damage_gain)/difference) //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. + owner.nutrition += offset*((nutrition_percent / 100)*4.5*(damage_gain)/difference) //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 - owner.nutrition += 4.5*(damage_gain)/difference + owner.nutrition += (nutrition_percent / 100)*4.5*(damage_gain)/difference //////////////////////////// DM_ABSORB //////////////////////////// diff --git a/code/modules/vore/eating/silicon_vr.dm b/code/modules/vore/eating/silicon_vr.dm index ef8b089777..65400c7707 100644 --- a/code/modules/vore/eating/silicon_vr.dm +++ b/code/modules/vore/eating/silicon_vr.dm @@ -78,7 +78,7 @@ return hologram.visible_message("[hologram] starts engulfing [prey] in hardlight holograms!") - src << "You begin engulfing [prey] in hardlight holograms." //Can't be part of the above, because the above is from the hologram. + to_chat(src, "You begin engulfing [prey] in hardlight holograms.") //Can't be part of the above, because the above is from the hologram. if(do_after(user=eyeobj,delay=50,target=prey,needhand=0) && holo && hologram && !hologram.bellied) //Didn't move and still projecting and effect exists and no other bellied people hologram.get_prey(prey) diff --git a/code/modules/vore/eating/vore_vr.dm b/code/modules/vore/eating/vore_vr.dm index 168ec9ccfa..aff39a3c4c 100644 --- a/code/modules/vore/eating/vore_vr.dm +++ b/code/modules/vore/eating/vore_vr.dm @@ -138,9 +138,9 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE if(isnull(permit_healbelly)) permit_healbelly = TRUE if(isnull(can_be_drop_prey)) - allowmobvore = FALSE + can_be_drop_prey = FALSE if(isnull(can_be_drop_pred)) - allowmobvore = FALSE + can_be_drop_pred = FALSE if(isnull(belly_prefs)) belly_prefs = list() diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index c9a212f293..c31fe98714 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -4,8 +4,8 @@ #define BELLIES_MAX 30 #define BELLIES_NAME_MIN 2 -#define BELLIES_NAME_MAX 12 -#define BELLIES_DESC_MAX 1024 +#define BELLIES_NAME_MAX 20 +#define BELLIES_DESC_MAX 2048 #define FLAVOR_MAX 40 /mob/living/proc/insidePanel() @@ -255,6 +255,10 @@ dat += "
Can Taste:" dat += " [selected.can_taste ? "Yes" : "No"]" + //Nutritional percentage + dat += "
Nutritional Gain:" + dat += " [selected.nutrition_percent]%" + //How much brute damage dat += "
Digest Brute Damage:" dat += " [selected.digest_brute]" @@ -771,6 +775,13 @@ else if(new_grow) selected.shrink_grow_size = (new_grow*0.01) + if(href_list["b_nutritionpercent"]) + var/new_damage = input(user, "Choose the nutrition gain percentage you will recieve per tick from prey. Ranges from 0.01 to 100.", "Set Nutrition Gain Percentage.", selected.digest_brute) as num|null + if(new_damage == null) + return + var/new_new_damage = CLAMP(new_damage, 0.01, 100) + selected.nutrition_percent = new_new_damage + if(href_list["b_burn_dmg"]) var/new_damage = input(user, "Choose the amount of burn damage prey will take per tick. Ranges from 0 to 6.", "Set Belly Burn Damage.", selected.digest_burn) as num|null if(new_damage == null) diff --git a/code/modules/vore/fluffstuff/custom_boxes_vr.dm b/code/modules/vore/fluffstuff/custom_boxes_vr.dm index 07e018f7a6..489cab17f5 100644 --- a/code/modules/vore/fluffstuff/custom_boxes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_boxes_vr.dm @@ -60,9 +60,7 @@ desc = "A kit containing Tasald's equipment." has_items = list( /obj/item/clothing/suit/storage/det_suit/fluff/tasald, - /obj/item/clothing/suit/storage/det_suit/fluff/tas_coat, - /obj/item/clothing/under/det/fluff/tasald, - /obj/item/weapon/implanter/loyalty) + /obj/item/clothing/under/det/fluff/tasald) //bwoincognito:Octavious Ward /obj/item/weapon/storage/box/fluff/octavious diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index 1ba3941bbe..7617586597 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -502,22 +502,6 @@ body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS armor = list(melee = 40, bullet = 30, laser = 30, energy = 10, bomb = 10, bio = 0, rad = 0) -// bwoincognito:Tasald Corlethian -/obj/item/clothing/suit/storage/det_suit/fluff/tas_coat - name = "Armored Colony coat" - desc = "Dark green and grey colored sleeveless long coat with two thick metal shoulder pads. has seen some wear and tear, with noticeable patches in the fabric, scratches on the shoulder pads, but with a clean patch on the left upper chest. It has a red NT marked on the right shoulder pad and red Security on the left. " - allowed = list(/obj/item/weapon/gun,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/handcuffs,/obj/item/device/flashlight/maglight,/obj/item/clothing/head/helmet) - - icon = 'icons/vore/custom_clothes_vr.dmi' - icon_state = "tasaldcoat" - - icon_override = 'icons/vore/custom_clothes_vr.dmi' - item_state = "tasaldcoat_mob" - - blood_overlay_type = "coat" - body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS - armor = list(melee = 60, bullet = 60, laser = 60, energy = 40, bomb = 40, bio = 0, rad = 0) - //Event Costumes Below /obj/item/clothing/head/helmet/fluff/freddy name = "Animatronic Suit Helmet" @@ -1915,3 +1899,19 @@ Departamental Swimsuits, for general use /obj/item/clothing/under/fluff/slime_skeleton/digest_act(var/atom/movable/item_storage = null) return FALSE //Indigestible + +//Bacon12366:Elly Brown +/obj/item/clothing/accessory/sweater/fluff/star + name = "Star Sweater" + desc = "It's a black long sweater with a big blue star at the chest area. It was made to show person's left shoulder." + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "star_sweater" + + + icon_override = 'icons/vore/custom_clothes_vr.dmi' + item_state = "star_sweater" + + slot_flags = SLOT_OCLOTHING | SLOT_TIE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + w_class = ITEMSIZE_NORMAL + slot = ACCESSORY_SLOT_OVER diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 94f427abc3..e717262689 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -250,7 +250,7 @@ name = "Mouse Plushie" desc = "A plushie of a delightful mouse! What was once considered a vile rodent is now your very best friend." slot_flags = SLOT_HEAD - icon_state = "mouse_brown" + icon_state = "mouse_brown" //TFF 12/11/19 - Change sprite to not look dead. Heck you for that choice! >:C item_state = "mouse_brown_head" icon = 'icons/vore/custom_items_vr.dmi' icon_override = 'icons/vore/custom_items_vr.dmi' @@ -614,9 +614,17 @@ no_message = "These saddlebags seem to be fitted for someone else, and keep slipping off!" action_button_name = "Toggle Mlembulance Mode" var/ambulance = FALSE + var/datum/looping_sound/ambulance/soundloop var/ambulance_state = FALSE var/ambulance_last_switch = 0 - var/ambulance_volume = 25 //Allows for varediting, just in case + +/obj/item/weapon/storage/backpack/saddlebag/tempest/Initialize() + soundloop = new(list(src), FALSE) + return ..() + +/obj/item/weapon/storage/backpack/saddlebag/tempest/Destroy() + QDEL_NULL(soundloop) + return ..() /obj/item/weapon/storage/backpack/saddlebag/tempest/ui_action_click() ambulance = !(ambulance) @@ -629,9 +637,7 @@ M.update_inv_back() ambulance_state = FALSE set_light(2, 1, "#FF0000") - while(ambulance) - playsound(src.loc, 'sound/items/amulanceweeoo.ogg', ambulance_volume, 0) - sleep(20) + soundloop.start() else item_state = "tempestsaddlebag" icon_state = "tempestbag" @@ -639,6 +645,7 @@ var/mob/M = loc M.update_inv_back() set_light(0) + soundloop.stop() /obj/item/weapon/storage/backpack/saddlebag/tempest/process() if(!ambulance) @@ -655,6 +662,11 @@ set_light(2, 1, newlight) ambulance_last_switch = world.time +/datum/looping_sound/ambulance + mid_sounds = list('sound/items/amulanceweeoo.ogg'=1) + mid_length = 20 + volume = 25 + //WickedTempest: Chakat Tempest /obj/item/weapon/implant/reagent_generator/tempest generated_reagents = list("milk" = 2) @@ -1235,394 +1247,6 @@ slot_flags = SLOT_TIE slot = ACCESSORY_SLOT_DECOR -//The perfect adminboos device? -/obj/item/device/perfect_tele - name = "personal translocator" - desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command." - icon = 'icons/obj/device_alt.dmi' - icon_state = "hand_tele" - w_class = ITEMSIZE_SMALL - origin_tech = list(TECH_MAGNET = 5, TECH_BLUESPACE = 5, TECH_ILLEGAL = 7) - - var/cell_type = /obj/item/weapon/cell/device/weapon - var/obj/item/weapon/cell/power_source - var/charge_cost = 800 // cell/device/weapon has 2400 - - var/list/beacons = list() - var/ready = 1 - var/beacons_left = 3 - var/failure_chance = 5 //Percent - var/obj/item/device/perfect_tele_beacon/destination - var/datum/effect/effect/system/spark_spread/spk - var/list/warned_users = list() - var/list/logged_events = list() - -/obj/item/device/perfect_tele/New() - ..() - flags |= NOBLUDGEON - if(cell_type) - power_source = new cell_type(src) - else - power_source = new /obj/item/weapon/cell/device(src) - spk = new(src) - spk.set_up(5, 0, src) - spk.attach(src) - -/obj/item/device/perfect_tele/Destroy() - // Must clear the beacon's backpointer or we won't GC. Someday maybe do something nicer even. - for(var/obj/item/device/perfect_tele_beacon/B in beacons) - B.tele_hand = null - beacons.Cut() - QDEL_NULL(power_source) - QDEL_NULL(spk) - return ..() - -/obj/item/device/perfect_tele/update_icon() - if(!power_source) - icon_state = "[initial(icon_state)]_o" - else if(ready && (power_source.check_charge(charge_cost) || power_source.fully_charged())) - icon_state = "[initial(icon_state)]" - else - icon_state = "[initial(icon_state)]_w" - - ..() - -/obj/item/device/perfect_tele/attack_hand(mob/user) - if(user.get_inactive_hand() == src && power_source) - to_chat(user,"You eject \the [power_source] from \the [src].") - user.put_in_hands(power_source) - power_source = null - update_icon() - else - return ..() - -/obj/item/device/perfect_tele/attack_self(mob/user) - if(!(user.ckey in warned_users)) - warned_users |= user.ckey - alert(user,"This device can be easily used to break ERP preferences due to the nature of teleporting \ - and tele-vore. Make sure you carefully examine someone's OOC prefs before teleporting them if you are \ - going to use this device for ERP purposes. This device records all warnings given and teleport events for \ - admin review in case of pref-breaking, so just don't do it.","OOC WARNING") - - var/choice = alert(user,"What do you want to do?","[src]","Create Beacon","Cancel","Target Beacon") - switch(choice) - if("Create Beacon") - if(beacons_left <= 0) - alert("The translocator can't support any more beacons!","Error") - return - - var/new_name = html_encode(input(user,"New beacon's name (2-20 char):","[src]") as text|null) - - if(length(new_name) > 20 || length(new_name) < 2) - alert("Entered name length invalid (must be longer than 2, no more than than 20).","Error") - return - if(new_name in beacons) - alert("No duplicate names, please. '[new_name]' exists already.","Error") - return - - var/obj/item/device/perfect_tele_beacon/nb = new(get_turf(src)) - nb.tele_name = new_name - nb.tele_hand = src - nb.creator = user.ckey - beacons[new_name] = nb - beacons_left-- - if(isliving(user)) - var/mob/living/L = user - L.put_in_any_hand_if_possible(nb) - - if("Target Beacon") - if(!beacons.len) - to_chat(user,"\The [src] doesn't have any beacons!") - else - var/target = input("Which beacon do you target?","[src]") in beacons|null - if(target && (target in beacons)) - destination = beacons[target] - to_chat(user,"Destination set to '[target]'.") - else - return - -/obj/item/device/perfect_tele/attackby(obj/W, mob/user) - if(istype(W,cell_type) && !power_source) - power_source = W - power_source.update_icon() //Why doesn't a cell do this already? :| - user.unEquip(power_source) - power_source.forceMove(src) - to_chat(user,"You insert \the [power_source] into \the [src].") - update_icon() - - else if(istype(W,/obj/item/device/perfect_tele_beacon)) - var/obj/item/device/perfect_tele_beacon/tb = W - if(tb.tele_name in beacons) - to_chat(user,"You re-insert \the [tb] into \the [src].") - beacons -= tb.tele_name - user.unEquip(tb) - qdel(tb) - beacons_left++ - else - to_chat(user,"\The [tb] doesn't belong to \the [src].") - return - else - ..() - -/obj/item/device/perfect_tele/proc/teleport_checks(mob/living/target,mob/living/user) - //Uhhuh, need that power source - if(!power_source) - to_chat(user,"\The [src] has no power source!") - return FALSE - - //Check for charge - if((!power_source.check_charge(charge_cost)) && (!power_source.fully_charged())) - to_chat(user,"\The [src] does not have enough power left!") - return FALSE - - //Only mob/living need apply. - if(!istype(user) || !istype(target)) - return FALSE - - //No, you can't teleport buckled people. - if(target.buckled) - to_chat(user,"The target appears to be attached to something...") - return FALSE - - //No, you can't teleport if it's not ready yet. - if(!ready) - to_chat(user,"\The [src] is still recharging!") - return FALSE - - //No, you can't teleport if there's no destination. - if(!destination) - to_chat(user,"\The [src] doesn't have a current valid destination set!") - return FALSE - - //No, you can't teleport if there's a jammer. - if(is_jammed(src) || is_jammed(destination)) - to_chat(user,"\The [src] refuses to teleport you, due to strong interference!") - return FALSE - - //No, you can't port to or from away missions. Stupidly complicated check. - var/turf/uT = get_turf(user) - var/turf/dT = get_turf(destination) - var/list/dat = list() - dat["z_level_detection"] = using_map.get_map_levels(uT.z) - - if(!uT || !dT) - return FALSE - - if( (uT.z != dT.z) && (!(dT.z in dat["z_level_detection"])) ) - to_chat(user,"\The [src] can't teleport you that far!") - return FALSE - - if(uT.block_tele || dT.block_tele) - to_chat(user,"Something is interfering with \the [src]!") - return FALSE - - //Seems okay to me! - return TRUE - -/obj/item/device/perfect_tele/afterattack(mob/living/target, mob/living/user, proximity) - //No, you can't teleport people from over there. - if(!proximity) - return - - if(!teleport_checks(target,user)) - return //The checks proc can send them a message if it wants. - - //Bzzt. - ready = 0 - power_source.use(charge_cost) - - //Failure chance - if(prob(failure_chance) && beacons.len >= 2) - var/list/wrong_choices = beacons - destination.tele_name - var/wrong_name = pick(wrong_choices) - destination = beacons[wrong_name] - to_chat(user,"\The [src] malfunctions and sends you to the wrong beacon!") - - //Destination beacon vore checking - var/turf/dT = get_turf(destination) - var/atom/real_dest = dT - - var/atom/real_loc = destination.loc - if(isbelly(real_loc)) - real_dest = real_loc - if(isliving(real_loc)) - var/mob/living/L = real_loc - if(L.vore_selected) - real_dest = L.vore_selected - else if(L.vore_organs.len) - real_dest = pick(L.vore_organs) - - //Confirm televore - var/televored = FALSE - if(isbelly(real_dest)) - var/obj/belly/B = real_dest - if(!target.can_be_drop_prey && B.owner != user) - to_chat(target,"\The [src] narrowly avoids teleporting you right into \a [lowertext(real_dest.name)]!") - real_dest = dT //Nevermind! - else - televored = TRUE - to_chat(target,"\The [src] teleports you right into \a [lowertext(real_dest.name)]!") - - //Phase-out effect - phase_out(target,get_turf(target)) - - //Move them - target.forceMove(real_dest) - - //Phase-in effect - phase_in(target,get_turf(target)) - - //And any friends! - for(var/obj/item/weapon/grab/G in target.contents) - if(G.affecting && (G.state >= GRAB_AGGRESSIVE)) - - //Phase-out effect for grabbed person - phase_out(G.affecting,get_turf(G.affecting)) - - //Move them, and televore if necessary - G.affecting.forceMove(real_dest) - if(televored) - to_chat(target,"\The [src] teleports you right into \a [lowertext(real_dest.name)]!") - - //Phase-in effect for grabbed person - phase_in(G.affecting,get_turf(G.affecting)) - - update_icon() - spawn(30 SECONDS) - ready = 1 - update_icon() - - logged_events["[world.time]"] = "[user] teleported [target] to [real_dest] [televored ? "(Belly: [lowertext(real_dest.name)])" : null]" - -/obj/item/device/perfect_tele/proc/phase_out(var/mob/M,var/turf/T) - - if(!M || !T) - return - - spk.set_up(5, 0, M) - spk.attach(M) - playsound(T, "sparks", 50, 1) - anim(T,M,'icons/mob/mob.dmi',,"phaseout",,M.dir) - -/obj/item/device/perfect_tele/proc/phase_in(var/mob/M,var/turf/T) - - if(!M || !T) - return - - spk.start() - playsound(T, 'sound/effects/phasein.ogg', 25, 1) - playsound(T, 'sound/effects/sparks2.ogg', 50, 1) - anim(T,M,'icons/mob/mob.dmi',,"phasein",,M.dir) - spk.set_up(5, 0, src) - spk.attach(src) - -/obj/item/device/perfect_tele_beacon - name = "translocator beacon" - desc = "That's unusual." - icon = 'icons/obj/device_alt.dmi' - icon_state = "motion2" - w_class = ITEMSIZE_TINY - - var/tele_name - var/obj/item/device/perfect_tele/tele_hand - var/creator - var/warned_users = list() - -/obj/item/device/perfect_tele_beacon/New() - ..() - flags |= NOBLUDGEON - -/obj/item/device/perfect_tele_beacon/Destroy() - tele_name = null - tele_hand = null - return ..() - -/obj/item/device/perfect_tele_beacon/attack_hand(mob/user) - if((user.ckey != creator) && !(user.ckey in warned_users)) - warned_users |= user.ckey - var/choice = alert(user,"This device is a translocator beacon. Having it on your person may mean that anyone \ - who teleports to this beacon gets teleported into your selected vore-belly. If you are prey-only \ - or don't wish to potentially have a random person teleported into you, it's suggested that you \ - not carry this around.","OOC WARNING","Take It","Leave It") - if(choice == "Leave It") - return - - ..() - -/obj/item/device/perfect_tele_beacon/attack_self(mob/user) - if(!isliving(user)) - return - var/mob/living/L = user - var/confirm = alert(user, "You COULD eat the beacon...", "Eat beacon?", "Eat it!", "No, thanks.") - if(confirm == "Eat it!") - var/obj/belly/bellychoice = input("Which belly?","Select A Belly") as null|anything in L.vore_organs - if(bellychoice) - user.visible_message("[user] is trying to stuff \the [src] into [user.gender == MALE ? "his" : user.gender == FEMALE ? "her" : "their"] [bellychoice]!","You begin putting \the [src] into your [bellychoice]!") - if(do_after(user,5 SECONDS,src)) - user.unEquip(src) - forceMove(bellychoice) - user.visible_message("[user] eats a telebeacon!","You eat the the beacon!") - -// A single-beacon variant for use by miners (or whatever) -/obj/item/device/perfect_tele/one_beacon - name = "mini-translocator" - desc = "A more limited translocator with a single beacon, useful for some things, like setting the mining department on fire accidentally. Legal for use in the pursuit of NanoTrasen interests, namely mining and exploration." - icon_state = "minitrans" - beacons_left = 1 //Just one - cell_type = /obj/item/weapon/cell/device - origin_tech = list(TECH_MAGNET = 5, TECH_BLUESPACE = 5) - -/* -/obj/item/device/perfect_tele/one_beacon/teleport_checks(mob/living/target,mob/living/user) - var/turf/T = get_turf(destination) - if(T && user.z != T.z) - to_chat(user,"\The [src] is too far away from the beacon. Try getting closer first!") - return FALSE - return ..() -*/ - -/obj/item/device/perfect_tele/admin - name = "alien translocator" - desc = "This strange device allows one to teleport people and objects across large distances." - - cell_type = /obj/item/weapon/cell/device/weapon/recharge/alien - charge_cost = 400 - beacons_left = 6 - failure_chance = 0 //Percent - -/obj/item/device/perfect_tele/admin/teleport_checks(mob/living/target,mob/living/user) - //Uhhuh, need that power source - if(!power_source) - to_chat(user,"\The [src] has no power source!") - return FALSE - - //Check for charge - if((!power_source.check_charge(charge_cost)) && (!power_source.fully_charged())) - to_chat(user,"\The [src] does not have enough power left!") - return FALSE - - //Only mob/living need apply. - if(!istype(user) || !istype(target)) - return FALSE - - //No, you can't teleport buckled people. - if(target.buckled) - to_chat(user,"The target appears to be attached to something...") - return FALSE - - //No, you can't teleport if it's not ready yet. - if(!ready) - to_chat(user,"\The [src] is still recharging!") - return FALSE - - //No, you can't teleport if there's no destination. - if(!destination) - to_chat(user,"\The [src] doesn't have a current valid destination set!") - return FALSE - - //Seems okay to me! - return TRUE - //InterroLouis: Ruda Lizden /obj/item/clothing/accessory/badge/holo/detective/ruda name = "Hisstective's Badge" diff --git a/code/modules/vore/fluffstuff/custom_permits_vr.dm b/code/modules/vore/fluffstuff/custom_permits_vr.dm index 4eebf38f51..635b9831d4 100644 --- a/code/modules/vore/fluffstuff/custom_permits_vr.dm +++ b/code/modules/vore/fluffstuff/custom_permits_vr.dm @@ -6,10 +6,13 @@ to_chat(user, "You cannot reset the naming locks on [src]. It's issued by CentCom and totally tamper-proof!") return +//TFF 28/11/19 - Remove expired permit +/* // jertheace:Jeremiah 'Ace' Acacius /obj/item/clothing/accessory/permit/gun/fluff/ace name = "Jeremiah Acacius's Sidearm Permit" desc = "A card indicating that the owner is allowed to carry a sidearm. It is issued by CentCom, so it is valid until it expires on November 10th, 2563." +*/ // ValiTheWolf: Vakashi /obj/item/clothing/accessory/permit/gun/fluff/Vakashi diff --git a/code/modules/vore/resizing/resize_vr.dm b/code/modules/vore/resizing/resize_vr.dm index 2073f499c1..8fc76eeb30 100644 --- a/code/modules/vore/resizing/resize_vr.dm +++ b/code/modules/vore/resizing/resize_vr.dm @@ -125,7 +125,7 @@ var/const/RESIZE_A_SMALLTINY = (RESIZE_SMALL + RESIZE_TINY) / 2 * Attempt to scoop up this mob up into H's hands, if the size difference is large enough. * @return false if normal code should continue, 1 to prevent normal code. */ -/mob/living/proc/attempt_to_scoop(var/mob/living/M) +/mob/living/proc/attempt_to_scoop(var/mob/living/M, var/mob/living/G) //second one is for the Grabber, only exists for animals to self-grab var/size_diff = M.get_effective_size() - get_effective_size() if(!holder_default && holder_type) holder_default = holder_type @@ -140,7 +140,7 @@ var/const/RESIZE_A_SMALLTINY = (RESIZE_SMALL + RESIZE_TINY) / 2 return 0 if(size_diff >= 0.50) holder_type = /obj/item/weapon/holder/micro - var/obj/item/weapon/holder/m_holder = get_scooped(M) + var/obj/item/weapon/holder/m_holder = get_scooped(M, G) holder_type = holder_default if (m_holder) return 1 diff --git a/code/modules/xenoarcheaology/artifacts/replicator.dm b/code/modules/xenoarcheaology/artifacts/replicator.dm index af78f320e5..3b65436177 100644 --- a/code/modules/xenoarcheaology/artifacts/replicator.dm +++ b/code/modules/xenoarcheaology/artifacts/replicator.dm @@ -92,9 +92,9 @@ var/spawn_type = pop(spawning_types) var/obj/spawned_obj = new spawn_type(src.loc) if(source_material) - if(lentext(source_material.name) < MAX_MESSAGE_LEN) + if(length(source_material.name) < MAX_MESSAGE_LEN) spawned_obj.name = "[source_material] " + spawned_obj.name - if(lentext(source_material.desc) < MAX_MESSAGE_LEN * 2) + if(length(source_material.desc) < MAX_MESSAGE_LEN * 2) if(spawned_obj.desc) spawned_obj.desc += " It is made of [source_material]." else diff --git a/code/modules/xenoarcheaology/finds/finds.dm b/code/modules/xenoarcheaology/finds/finds.dm index 8e89dcd947..4713ac0e76 100644 --- a/code/modules/xenoarcheaology/finds/finds.dm +++ b/code/modules/xenoarcheaology/finds/finds.dm @@ -21,6 +21,7 @@ icon_state = "strange" var/datum/geosample/geologic_data origin_tech = list(TECH_MATERIAL = 5) + w_class = ITEMSIZE_SMALL //TFF 25/11/19 - fixes the strange rocks to be small size like before and not normal. /obj/item/weapon/strangerock/New(loc, var/inside_item_type = 0) pixel_x = rand(0,16)-8 diff --git a/code/modules/xenoarcheaology/finds/talking.dm b/code/modules/xenoarcheaology/finds/talking.dm index 01af7f7a0e..33206366f4 100644 --- a/code/modules/xenoarcheaology/finds/talking.dm +++ b/code/modules/xenoarcheaology/finds/talking.dm @@ -34,7 +34,7 @@ else if(findtext(msg," ")==0) return else - /*var/l = lentext(msg) + /*var/l = length(msg) if(findtext(msg," ",l,l+1)==0) msg+=" "*/ seperate = splittext(msg, " ") @@ -79,12 +79,12 @@ text = "[pick(heard_words)]" else text = pick(splittext(word, " ")) - if(lentext(text)==1) + if(length(text)==1) text=uppertext(text) else var/cap = copytext(text,1,2) cap = uppertext(cap) - cap += copytext(text,2,lentext(text)+1) + cap += copytext(text,2,length(text)+1) text=cap var/q = 0 msg+=text diff --git a/config/custom_items.txt b/config/custom_items.txt index 16734abd70..44d79f3b4c 100644 --- a/config/custom_items.txt +++ b/config/custom_items.txt @@ -482,7 +482,7 @@ item_path: /obj/item/clothing/accessory/storage/knifeharness { ckey: kitchifox -character_name: Rana Uma +character_name: Rana Starsong-Uma item_path: /obj/item/clothing/accessory/medal/silver/unity } diff --git a/html/changelogs/Nalarac - ED209.yml b/html/changelogs/Nalarac - ED209.yml new file mode 100644 index 0000000000..40a4ee8081 --- /dev/null +++ b/html/changelogs/Nalarac - ED209.yml @@ -0,0 +1,37 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Nalarac + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "ED-209 and ED-CLN now properly accept names given with a pen." + - tweak: "Removed maintenance access from ED-CLN to prevent maintenance wandering." \ No newline at end of file diff --git a/html/changelogs/Nalarac - Enables Headset Channels.yml b/html/changelogs/Nalarac - Enables Headset Channels.yml new file mode 100644 index 0000000000..4bcc0184b3 --- /dev/null +++ b/html/changelogs/Nalarac - Enables Headset Channels.yml @@ -0,0 +1,36 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Nalarac + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Enables all channels on captain's and HoP's headset by default." \ No newline at end of file diff --git a/html/changelogs/Nalarac - Protolathe.yml b/html/changelogs/Nalarac - Protolathe.yml new file mode 100644 index 0000000000..9ce8d7d3ed --- /dev/null +++ b/html/changelogs/Nalarac - Protolathe.yml @@ -0,0 +1,37 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Nalarac + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Power cells and device cells both properly show as empty when printed from the protolathe and mech fabricator." + - tweak: "Items with cells printed from the protolathe now start empty (e.g. phoron pistol)." \ No newline at end of file diff --git a/html/changelogs/PrismaticGynoid - GraffitiSelection.yml b/html/changelogs/PrismaticGynoid - GraffitiSelection.yml new file mode 100644 index 0000000000..52394316af --- /dev/null +++ b/html/changelogs/PrismaticGynoid - GraffitiSelection.yml @@ -0,0 +1,6 @@ +author: PrismaticGynoid + +delete-after: True + +changes: + - tweak: "You can now choose what type of graffiti or rune to draw when using crayons/markers." diff --git a/html/changelogs/TheFurryFeline - Lamps Light Lackluster.yml b/html/changelogs/TheFurryFeline - Lamps Light Lackluster.yml new file mode 100644 index 0000000000..bbf6c90a5e --- /dev/null +++ b/html/changelogs/TheFurryFeline - Lamps Light Lackluster.yml @@ -0,0 +1,36 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: TheFurryFeline + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Tweaks desk lamps to output twice as much light than before to compensate for a reduced level following a refactor." \ No newline at end of file diff --git a/html/changelogs/TheFurryFeline - Mouse_Plushie_Sprite_Change.yml b/html/changelogs/TheFurryFeline - Mouse_Plushie_Sprite_Change.yml new file mode 100644 index 0000000000..4bcfd9862d --- /dev/null +++ b/html/changelogs/TheFurryFeline - Mouse_Plushie_Sprite_Change.yml @@ -0,0 +1,36 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: TheFurryFeline + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - imageadd: "Changes mouse plushie sprite to be cuter and not break the hearts of rodent lovers. :3 Seriously, the change is from a dead mouse duplicate to one of a brown mouse resting in place." \ No newline at end of file diff --git a/html/changelogs/TheFurryFeline - Strange Rock Fixy.yml b/html/changelogs/TheFurryFeline - Strange Rock Fixy.yml new file mode 100644 index 0000000000..728c0b67c0 --- /dev/null +++ b/html/changelogs/TheFurryFeline - Strange Rock Fixy.yml @@ -0,0 +1,36 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: TheFurryFeline + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Fixes strange rocks size. Normal -> Small like it used to be before a refactor." \ No newline at end of file diff --git a/html/changelogs/atermonera - maintdronetime.yml b/html/changelogs/atermonera - maintdronetime.yml new file mode 100644 index 0000000000..db0d2f3f7d --- /dev/null +++ b/html/changelogs/atermonera - maintdronetime.yml @@ -0,0 +1,36 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Atermonera + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - tweak: "Ghosts can join as drones after only 5 minutes have passed, down from 10." \ No newline at end of file diff --git a/html/changelogs/woodrat - mapbugfixesnov.yml b/html/changelogs/woodrat - mapbugfixesnov.yml new file mode 100644 index 0000000000..025ebc4e3b --- /dev/null +++ b/html/changelogs/woodrat - mapbugfixesnov.yml @@ -0,0 +1,42 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Woodrat + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Fix missing scrubber in engineering." + - bugfix: "Shutter added to Kitchen door." + - maptweak: "Pressure Regulators at atmospheric cutoffs start unregulated at roundstart." + - tweak: "Set Modular Computers layer to 2.9 to bring them inline with regular computer layering." + - tweak: "Pump to distro set to 301 kpa to help offset issues with cutoff valves." + - rscadd: "One phase pistol to each explorer locker." + - rscadd: "One holster to each explorer locker." \ No newline at end of file diff --git a/icons/chattags.dmi b/icons/chattags.dmi index 699f1b53a1..a0b1d335d0 100644 Binary files a/icons/chattags.dmi and b/icons/chattags.dmi differ diff --git a/icons/mob/64x64robot_vr.dmi b/icons/mob/64x64robot_vr.dmi index b631aa61df..8bcd665ea4 100644 Binary files a/icons/mob/64x64robot_vr.dmi and b/icons/mob/64x64robot_vr.dmi differ diff --git a/icons/mob/alien.dmi b/icons/mob/alien.dmi index 63f2d47b24..f00110275d 100644 Binary files a/icons/mob/alien.dmi and b/icons/mob/alien.dmi differ diff --git a/icons/mob/head.dmi b/icons/mob/head.dmi index f5eba71f08..3dd2c190b7 100644 Binary files a/icons/mob/head.dmi and b/icons/mob/head.dmi differ diff --git a/icons/mob/human.dmi b/icons/mob/human.dmi index cbf20402e6..62f8883880 100644 Binary files a/icons/mob/human.dmi and b/icons/mob/human.dmi differ diff --git a/icons/mob/human_face.dmi b/icons/mob/human_face.dmi index 614f8e2076..c478e4a67f 100644 Binary files a/icons/mob/human_face.dmi and b/icons/mob/human_face.dmi differ diff --git a/icons/mob/human_face_m.dmi b/icons/mob/human_face_m.dmi index 9eff944078..4ad6ab2dd9 100644 Binary files a/icons/mob/human_face_m.dmi and b/icons/mob/human_face_m.dmi differ diff --git a/icons/mob/human_face_or_vr.dmi b/icons/mob/human_face_or_vr.dmi index 3642b50afb..920f63cf09 100644 Binary files a/icons/mob/human_face_or_vr.dmi and b/icons/mob/human_face_or_vr.dmi differ diff --git a/icons/mob/human_face_vr.dmi b/icons/mob/human_face_vr.dmi index dbca0876a0..fa90d462e3 100644 Binary files a/icons/mob/human_face_vr.dmi and b/icons/mob/human_face_vr.dmi differ diff --git a/icons/mob/human_face_vr_add.dmi b/icons/mob/human_face_vr_add.dmi index bcca31d011..78d1b60e4c 100644 Binary files a/icons/mob/human_face_vr_add.dmi and b/icons/mob/human_face_vr_add.dmi differ diff --git a/icons/mob/human_races/cyberlimbs/_fluff_vr/Frosty.dmi b/icons/mob/human_races/cyberlimbs/_fluff_vr/Frosty.dmi new file mode 100644 index 0000000000..6ff7e90517 Binary files /dev/null and b/icons/mob/human_races/cyberlimbs/_fluff_vr/Frosty.dmi differ diff --git a/icons/mob/human_races/markings.dmi b/icons/mob/human_races/markings.dmi index d89377dbf1..6841c92518 100644 Binary files a/icons/mob/human_races/markings.dmi and b/icons/mob/human_races/markings.dmi differ diff --git a/icons/mob/human_races/markings_vr.dmi b/icons/mob/human_races/markings_vr.dmi index d776a68b67..87c59161e6 100644 Binary files a/icons/mob/human_races/markings_vr.dmi and b/icons/mob/human_races/markings_vr.dmi differ diff --git a/icons/mob/human_races/r_shadekin_vr.dmi b/icons/mob/human_races/r_shadekin_vr.dmi new file mode 100644 index 0000000000..bc29b48cec Binary files /dev/null and b/icons/mob/human_races/r_shadekin_vr.dmi differ diff --git a/icons/mob/items/lefthand_melee_vr.dmi b/icons/mob/items/lefthand_melee_vr.dmi index 9605154645..dd43d4a503 100644 Binary files a/icons/mob/items/lefthand_melee_vr.dmi and b/icons/mob/items/lefthand_melee_vr.dmi differ diff --git a/icons/mob/items/righthand_melee_vr.dmi b/icons/mob/items/righthand_melee_vr.dmi index e669f0cc84..399c1d902d 100644 Binary files a/icons/mob/items/righthand_melee_vr.dmi and b/icons/mob/items/righthand_melee_vr.dmi differ diff --git a/icons/mob/pai_vr.dmi b/icons/mob/pai_vr.dmi index cb494851af..a631425ae9 100644 Binary files a/icons/mob/pai_vr.dmi and b/icons/mob/pai_vr.dmi differ diff --git a/icons/mob/pai_vr64x64.dmi b/icons/mob/pai_vr64x64.dmi new file mode 100644 index 0000000000..f9c99e51eb Binary files /dev/null and b/icons/mob/pai_vr64x64.dmi differ diff --git a/icons/mob/robots.dmi b/icons/mob/robots.dmi index edbd1ed90f..f265047239 100644 Binary files a/icons/mob/robots.dmi and b/icons/mob/robots.dmi differ diff --git a/icons/mob/robots_vr.dmi b/icons/mob/robots_vr.dmi index 2d6a4f2648..cdf2fd6a86 100644 Binary files a/icons/mob/robots_vr.dmi and b/icons/mob/robots_vr.dmi differ diff --git a/icons/mob/screen_spells.dmi b/icons/mob/screen_spells.dmi index c320d53590..4dd42bac21 100644 Binary files a/icons/mob/screen_spells.dmi and b/icons/mob/screen_spells.dmi differ diff --git a/icons/mob/shadekin_hud.dmi b/icons/mob/shadekin_hud.dmi index cf7259cb5c..707feea2a9 100644 Binary files a/icons/mob/shadekin_hud.dmi and b/icons/mob/shadekin_hud.dmi differ diff --git a/icons/mob/spacesuit.dmi b/icons/mob/spacesuit.dmi index 10953bd651..504a947b22 100644 Binary files a/icons/mob/spacesuit.dmi and b/icons/mob/spacesuit.dmi differ diff --git a/icons/mob/species/seromi/ears.dmi b/icons/mob/species/seromi/ears.dmi index f9be62ad9a..61b42f0908 100644 Binary files a/icons/mob/species/seromi/ears.dmi and b/icons/mob/species/seromi/ears.dmi differ diff --git a/icons/mob/species/seromi/head.dmi b/icons/mob/species/seromi/head.dmi index 8aacb79603..f1904c1e8e 100644 Binary files a/icons/mob/species/seromi/head.dmi and b/icons/mob/species/seromi/head.dmi differ diff --git a/icons/mob/species/seromi/suit.dmi b/icons/mob/species/seromi/suit.dmi index fb2243ef64..eefd49d94c 100644 Binary files a/icons/mob/species/seromi/suit.dmi and b/icons/mob/species/seromi/suit.dmi differ diff --git a/icons/mob/species/seromi/uniform.dmi b/icons/mob/species/seromi/uniform.dmi index a49299a4a1..c2122bd177 100644 Binary files a/icons/mob/species/seromi/uniform.dmi and b/icons/mob/species/seromi/uniform.dmi differ diff --git a/icons/mob/species/shadekin/tail.dmi b/icons/mob/species/shadekin/tail.dmi new file mode 100644 index 0000000000..51ac9d79ca Binary files /dev/null and b/icons/mob/species/shadekin/tail.dmi differ diff --git a/icons/mob/swarmbot.dmi b/icons/mob/swarmbot.dmi new file mode 100644 index 0000000000..e531ad3ed0 Binary files /dev/null and b/icons/mob/swarmbot.dmi differ diff --git a/icons/mob/vore/ears_vr.dmi b/icons/mob/vore/ears_vr.dmi index 9121d94d4d..338c7ee96e 100644 Binary files a/icons/mob/vore/ears_vr.dmi and b/icons/mob/vore/ears_vr.dmi differ diff --git a/icons/mob/vore/tails_vr.dmi b/icons/mob/vore/tails_vr.dmi index 8de015c01c..b07cc7118b 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_vr.dmi b/icons/mob/vore/taurs_vr.dmi index 3d5b2423d9..32f3bfa603 100644 Binary files a/icons/mob/vore/taurs_vr.dmi and b/icons/mob/vore/taurs_vr.dmi differ diff --git a/icons/mob/widerobot_vr.dmi b/icons/mob/widerobot_vr.dmi index 49e60d2c1d..529dd7231d 100644 Binary files a/icons/mob/widerobot_vr.dmi and b/icons/mob/widerobot_vr.dmi differ diff --git a/icons/obj/clothing/hats.dmi b/icons/obj/clothing/hats.dmi index 86e1e7945a..f913a4381b 100644 Binary files a/icons/obj/clothing/hats.dmi and b/icons/obj/clothing/hats.dmi differ diff --git a/icons/obj/clothing/modular_armor.dmi b/icons/obj/clothing/modular_armor.dmi index 180f52b902..1372ff9a5e 100644 Binary files a/icons/obj/clothing/modular_armor.dmi and b/icons/obj/clothing/modular_armor.dmi differ diff --git a/icons/obj/clothing/spacesuits.dmi b/icons/obj/clothing/spacesuits.dmi index a2ea4f7775..bffef09846 100644 Binary files a/icons/obj/clothing/spacesuits.dmi and b/icons/obj/clothing/spacesuits.dmi differ diff --git a/icons/obj/contraband.dmi b/icons/obj/contraband.dmi index 7e37655180..019e008e41 100644 Binary files a/icons/obj/contraband.dmi and b/icons/obj/contraband.dmi differ diff --git a/icons/obj/cult.dmi b/icons/obj/cult.dmi index 54c588f5ad..ebde622948 100644 Binary files a/icons/obj/cult.dmi and b/icons/obj/cult.dmi differ diff --git a/icons/obj/custom_books.dmi b/icons/obj/custom_books.dmi new file mode 100644 index 0000000000..2be098e848 Binary files /dev/null and b/icons/obj/custom_books.dmi differ diff --git a/icons/obj/device.dmi b/icons/obj/device.dmi index 11dcb38dec..6fd1a8d0d3 100644 Binary files a/icons/obj/device.dmi and b/icons/obj/device.dmi differ diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index 92ac55f966..6c5a251283 100644 Binary files a/icons/obj/kitchen.dmi and b/icons/obj/kitchen.dmi differ diff --git a/icons/obj/radio_vr.dmi b/icons/obj/radio_vr.dmi index 77d695cf23..88d6011a7f 100644 Binary files a/icons/obj/radio_vr.dmi and b/icons/obj/radio_vr.dmi differ diff --git a/icons/obj/railgun.dmi b/icons/obj/railgun.dmi index 6f633db1e5..0143f9053e 100644 Binary files a/icons/obj/railgun.dmi and b/icons/obj/railgun.dmi differ diff --git a/icons/obj/spells.dmi b/icons/obj/spells.dmi index 554aac8678..0f2dadb4cb 100644 Binary files a/icons/obj/spells.dmi and b/icons/obj/spells.dmi differ diff --git a/icons/obj/stacks.dmi b/icons/obj/stacks.dmi index 2d51ed3634..5fd362c7cb 100644 Binary files a/icons/obj/stacks.dmi and b/icons/obj/stacks.dmi differ diff --git a/icons/obj/storage.dmi b/icons/obj/storage.dmi index 26b1b63ce6..31941dc51d 100644 Binary files a/icons/obj/storage.dmi and b/icons/obj/storage.dmi differ diff --git a/icons/obj/structures.dmi b/icons/obj/structures.dmi index 908c2981dd..89a5e9071d 100644 Binary files a/icons/obj/structures.dmi and b/icons/obj/structures.dmi differ diff --git a/icons/obj/toy.dmi b/icons/obj/toy.dmi index f3e250f8e5..0e462a51f0 100644 Binary files a/icons/obj/toy.dmi and b/icons/obj/toy.dmi differ diff --git a/icons/obj/vending_vr.dmi b/icons/obj/vending_vr.dmi index 8609b76e42..45e8edb78d 100644 Binary files a/icons/obj/vending_vr.dmi and b/icons/obj/vending_vr.dmi differ diff --git a/icons/obj/weapons_vr.dmi b/icons/obj/weapons_vr.dmi index 5bf8071324..d23b35851b 100644 Binary files a/icons/obj/weapons_vr.dmi and b/icons/obj/weapons_vr.dmi differ diff --git a/icons/turf/wall_masks.dmi b/icons/turf/wall_masks.dmi index bda615cd5c..916d230ffd 100644 Binary files a/icons/turf/wall_masks.dmi and b/icons/turf/wall_masks.dmi differ diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi index 2a487aab35..494465b8ad 100644 Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi index ce38b5318d..daf6b0895a 100644 Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ diff --git a/interface/interface.dm b/interface/interface.dm index 6ecfde4e7c..29a3695d33 100644 --- a/interface/interface.dm +++ b/interface/interface.dm @@ -9,11 +9,11 @@ var/output = replacetext(config.wikisearchurl, "%s", url_encode(query)) src << link(output) else - src << " The wiki search URL is not set in the server configuration." + to_chat(src, " The wiki search URL is not set in the server configuration.") else src << link(config.wikiurl) else - src << "The wiki URL is not set in the server configuration." + to_chat(src, "The wiki URL is not set in the server configuration.") return /client/verb/forum() @@ -25,7 +25,7 @@ return src << link(config.forumurl) else - src << "The forum URL is not set in the server configuration." + to_chat(src, "The forum URL is not set in the server configuration.") return /client/verb/rules() @@ -38,7 +38,7 @@ return src << link(config.rulesurl) else - src << "The rules URL is not set in the server configuration." + to_chat(src, "The rules URL is not set in the server configuration.") return /client/verb/map() @@ -51,7 +51,7 @@ return src << link(config.mapurl) else - src << "The map URL is not set in the server configuration." + to_chat(src, "The map URL is not set in the server configuration.") return /client/verb/github() @@ -64,7 +64,7 @@ return src << link(config.githuburl) else - src << "The GitHub URL is not set in the server configuration." + to_chat(src, "The GitHub URL is not set in the server configuration.") return /client/verb/hotkeys_help() diff --git a/maps/RandomZLevels/carpfarm.dmm b/maps/RandomZLevels/carpfarm.dmm index 38817753cc..6156c8b62a 100644 --- a/maps/RandomZLevels/carpfarm.dmm +++ b/maps/RandomZLevels/carpfarm.dmm @@ -1,66313 +1,261 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/space, -/area/space) -"ab" = ( -/obj/effect/blocker, -/turf/space{ - density = 1; - desc = "You can't go there!"; - name = "The 4th Wall" - }, -/area/space) -"ac" = ( -/turf/simulated/mineral, -/area/space) -"ad" = ( -/obj/effect/gibspawner/human, -/turf/space, -/area/space) -"ae" = ( -/mob/living/simple_mob/animal/space/carp, -/turf/space, -/area/space) -"af" = ( -/mob/living/simple_mob/animal/space/carp/large, -/turf/space, -/area/space) -"ag" = ( -/obj/effect/decal/mecha_wreckage/hoverpod, -/obj/effect/gibspawner/human, -/turf/space, -/area/space) -"ah" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/space) -"ai" = ( -/obj/effect/landmark{ - name = "awaystart" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/space) -"aj" = ( -/obj/item/weapon/pickaxe/jackhammer, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/space) -"ak" = ( -/turf/simulated/mineral, -/area/mine/unexplored) -"al" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"am" = ( -/turf/simulated/wall/iron, -/area/awaymission/carpfarm/base) -"an" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/smes/buildable, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"ao" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"ap" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aq" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"ar" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"as" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"at" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5 - }, -/obj/machinery/door/window, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/carpfarm/base) -"au" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"av" = ( -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aw" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/built{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"ax" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"ay" = ( -/obj/structure/bedsheetbin, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"az" = ( -/obj/item/weapon/storage/toolbox/electrical, -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/weapon/paper/awaygate/carpfarm/suicide, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aA" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aB" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aC" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aD" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aE" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aF" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aG" = ( -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aH" = ( -/obj/item/weapon/bedsheet, -/obj/structure/bed/padded, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"aI" = ( -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"aJ" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/weapon/mining_scanner, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aK" = ( -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aL" = ( -/obj/structure/closet/toolcloset, -/obj/item/weapon/pickaxe/jackhammer, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aM" = ( -/obj/machinery/gateway{ - density = 0; - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aN" = ( -/obj/machinery/gateway, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aO" = ( -/obj/machinery/gateway{ - density = 0; - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aP" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aR" = ( -/obj/structure/table/woodentable, -/obj/random/action_figure, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"aS" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/landmark/loot_spawn, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aU" = ( -/obj/structure/closet/jcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aV" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aW" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aX" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aY" = ( -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aZ" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"ba" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bb" = ( -/obj/structure/table/reinforced, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bc" = ( -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bd" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"be" = ( -/obj/structure/closet/gimmick/russian, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bf" = ( -/obj/structure/closet/gimmick/russian, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/freezer, -/obj/item/trash/syndi_cakes, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bh" = ( -/obj/structure/closet/wardrobe/black, -/obj/item/clothing/under/syndicate/tacticool, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bi" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/landmark/costume, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bj" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/crate/internals, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bl" = ( -/obj/structure/closet/crate/internals, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bm" = ( -/obj/structure/closet/crate/plastic, -/obj/random/contraband, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bn" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/random/weapon, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bo" = ( -/obj/machinery/door/airlock/mining, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bp" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bq" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"br" = ( -/obj/item/mecha_parts/mecha_equipment/tool/drill, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bs" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bt" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/rack, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bu" = ( -/obj/structure/table/rack, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bv" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bw" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bx" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"by" = ( -/obj/machinery/vending/coffee{ - prices = list() - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bz" = ( -/obj/machinery/vending/sovietsoda, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bA" = ( -/obj/machinery/vending/snack{ - prices = list() - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bB" = ( -/obj/machinery/vending/cigarette{ - prices = list() - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bC" = ( -/obj/machinery/vending/dinnerware, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bD" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/item/weapon/gun/projectile/shotgun/pump/rifle/mosin, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bE" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bF" = ( -/obj/structure/dispenser/oxygen, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map"; - - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact"; - - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1375; - master_tag = "carp_airlock"; - name = "interior access button"; - pixel_x = 26; - pixel_y = -26; - req_one_access = newlist() - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bK" = ( -/obj/machinery/suit_cycler/mining, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bL" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bM" = ( -/obj/mecha/working/hoverpod/combatpod, -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bN" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bO" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/wall/iron, -/area/awaymission/carpfarm/base) -"bQ" = ( -/obj/machinery/door/airlock/external{ - frequency = 1375; - icon_state = "door_locked"; - id_tag = "carp_inner"; - locked = 1; - name = "External Access"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bS" = ( -/obj/item/weapon/reagent_containers/food/snacks/cubancarp, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bT" = ( -/obj/item/weapon/reagent_containers/food/snacks/carpmeat, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bV" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1375; - id_tag = "carp_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1375; - id_tag = "carp_airlock"; - pixel_x = -28; - pixel_y = 0; - req_access = null; - tag_airpump = "carp_pump"; - tag_chamber_sensor = "carp_sensor"; - tag_exterior_door = "carp_outer"; - tag_interior_door = "carp_inner" - }, -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1375; - id_tag = "carp_pump" - }, -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bX" = ( -/obj/structure/closet/emcloset, -/obj/item/weapon/storage/toolbox/emergency, -/obj/machinery/airlock_sensor{ - frequency = 1375; - id_tag = "carp_sensor"; - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bY" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"ca" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/closet/crate/bin, -/obj/item/trash/candy/proteinbar, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"cb" = ( -/obj/machinery/door/airlock/external{ - frequency = 1375; - icon_state = "door_locked"; - id_tag = "carp_outer"; - locked = 1; - name = "External Access"; - req_access = newlist() - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"cc" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"cd" = ( -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"ce" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1375; - master_tag = "carp_airlock"; - name = "exterior access button"; - pixel_x = 26; - pixel_y = 26; - req_access = newlist() - }, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"cf" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/space, -/area/space) -"cg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/airless, -/area/space) -"ch" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/space) -"ci" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/airless, -/area/space) -"cj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/space) -"ck" = ( -/turf/simulated/floor/airless, -/area/space) -"cl" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/airless, -/area/space) -"cm" = ( -/obj/effect/gibspawner/human, -/turf/simulated/floor/airless, -/area/space) -"cn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/airless, -/area/space) -"co" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/airless, -/area/space) -"cp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/airless, -/area/space) +"aa" = (/turf/space,/area/space) +"ab" = (/obj/effect/blocker,/turf/space{density = 1; desc = "You can't go there!"; name = "The 4th Wall"},/area/space) +"ac" = (/turf/simulated/mineral,/area/space) +"ad" = (/obj/effect/blocker,/turf/space,/area/space) +"ae" = (/mob/living/simple_mob/animal/space/carp,/turf/space,/area/space) +"ah" = (/turf/simulated/mineral/floor/ignore_mapgen,/area/space) +"ai" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/mineral/floor/ignore_mapgen,/area/space) +"aj" = (/obj/item/weapon/pickaxe/jackhammer,/turf/simulated/mineral/floor/ignore_mapgen,/area/space) +"ak" = (/turf/simulated/mineral,/area/mine/unexplored) +"al" = (/obj/structure/lattice,/turf/space,/area/space) +"am" = (/turf/simulated/wall/iron,/area/awaymission/carpfarm/base) +"an" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"ao" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"ap" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/port_gen/pacman,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aq" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"ar" = (/obj/machinery/gateway{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"as" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"at" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5},/obj/machinery/door/window,/turf/simulated/floor/tiled/freezer,/area/awaymission/carpfarm/base) +"au" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"av" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"aw" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"ax" = (/obj/structure/table/woodentable,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"ay" = (/obj/structure/bedsheetbin,/obj/machinery/light{dir = 1},/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"az" = (/obj/item/weapon/storage/toolbox/electrical,/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/item/weapon/paper/awaygate/carpfarm/suicide,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aA" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aB" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aC" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aD" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aE" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aF" = (/obj/structure/window/basic{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"aG" = (/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"aH" = (/obj/item/weapon/bedsheet,/obj/structure/bed/padded,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"aI" = (/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"aJ" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/item/weapon/tank/jetpack/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aK" = (/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aL" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe/jackhammer,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aM" = (/obj/machinery/gateway{density = 0; dir = 10},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aN" = (/obj/machinery/gateway,/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aO" = (/obj/machinery/gateway{density = 0; dir = 6},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aP" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{dir = 4; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"aQ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"aR" = (/obj/structure/table/woodentable,/obj/random/action_figure,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"aS" = (/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"aT" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark/loot_spawn,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"aU" = (/obj/structure/closet/jcloset,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"aV" = (/obj/structure/closet/secure_closet/medical1,/obj/random/medical,/obj/random/medical,/obj/random/medical,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"aW" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aX" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aY" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aZ" = (/obj/machinery/door/airlock,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"ba" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"bb" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bc" = (/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bd" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"be" = (/obj/structure/closet/gimmick/russian,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bf" = (/obj/structure/closet/gimmick/russian,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer,/obj/item/trash/syndi_cakes,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bh" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/under/syndicate/tacticool,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bi" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark/costume,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bj" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bk" = (/obj/machinery/light{dir = 8},/obj/structure/closet/crate/internals,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bl" = (/obj/structure/closet/crate/internals,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bm" = (/obj/structure/closet/crate/plastic,/obj/random/contraband,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bn" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/outline/yellow,/obj/random/weapon,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bo" = (/obj/machinery/door/airlock/mining,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bp" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bq" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"br" = (/obj/item/mecha_parts/mecha_equipment/tool/drill,/obj/item/weapon/storage/toolbox/mechanical,/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bs" = (/obj/structure/ore_box,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bt" = (/obj/machinery/light{dir = 1},/obj/structure/table/rack,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bu" = (/obj/structure/table/rack,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bv" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bw" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -2; pixel_y = 6},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bx" = (/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"by" = (/obj/machinery/vending/coffee{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bz" = (/obj/machinery/vending/sovietsoda,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bA" = (/obj/machinery/vending/snack{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bB" = (/obj/machinery/vending/cigarette{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bC" = (/obj/machinery/vending/dinnerware,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bD" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/shotgun/pump/rifle,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bE" = (/obj/structure/closet/crate/secure/weapon,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bF" = (/obj/structure/dispenser/oxygen,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bG" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bI" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bJ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1375; master_tag = "carp_airlock"; name = "interior access button"; pixel_x = 26; pixel_y = -26; req_one_access = newlist()},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bK" = (/obj/machinery/suit_cycler/mining,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bL" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bM" = (/obj/mecha/working/hoverpod/combatpod,/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bN" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bO" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/iron,/area/awaymission/carpfarm/base) +"bQ" = (/obj/machinery/door/airlock/external{frequency = 1375; icon_state = "door_locked"; id_tag = "carp_inner"; locked = 1; name = "External Access"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"bR" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bS" = (/obj/item/weapon/reagent_containers/food/snacks/cubancarp,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bT" = (/obj/item/weapon/reagent_containers/food/snacks/carpmeat,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bU" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bV" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1375; id_tag = "carp_pump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1375; id_tag = "carp_airlock"; pixel_x = -28; pixel_y = 0; req_access = null; tag_airpump = "carp_pump"; tag_chamber_sensor = "carp_sensor"; tag_exterior_door = "carp_outer"; tag_interior_door = "carp_inner"},/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 8},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"bW" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1375; id_tag = "carp_pump"},/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 4},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"bX" = (/obj/structure/closet/emcloset,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/airlock_sensor{frequency = 1375; id_tag = "carp_sensor"; pixel_x = 28},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"bY" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bZ" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"ca" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/closet/crate/bin,/obj/item/trash/candy/proteinbar,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"cb" = (/obj/machinery/door/airlock/external{frequency = 1375; icon_state = "door_locked"; id_tag = "carp_outer"; locked = 1; name = "External Access"; req_access = newlist()},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"cc" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/airless,/area/awaymission/carpfarm/base) +"cd" = (/turf/simulated/floor/airless,/area/awaymission/carpfarm/base) +"ce" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1375; master_tag = "carp_airlock"; name = "exterior access button"; pixel_x = 26; pixel_y = 26; req_access = newlist()},/turf/simulated/floor/airless,/area/awaymission/carpfarm/base) +"cf" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) +"cg" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/airless,/area/space) +"ch" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/airless,/area/space) +"ci" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/airless,/area/space) +"cj" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/airless,/area/space) +"ck" = (/turf/simulated/floor/airless,/area/space) +"cl" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/airless,/area/space) +"cm" = (/obj/effect/gibspawner/human,/turf/simulated/floor/airless,/area/space) +"cn" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/airless,/area/space) +"co" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/airless,/area/space) +"cp" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/airless,/area/space) (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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(2,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(3,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(4,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(5,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(6,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(7,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(8,1,1) = {" -aa -aa -aa -aa -aa -aa -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -"} -(9,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(10,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(11,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(12,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(13,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(14,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(15,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(16,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(17,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(18,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(19,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(20,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(21,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(22,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -aa -aa -aa -aa -aa -aa -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(25,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(26,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(27,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(28,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(31,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(32,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(33,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -aj -ai -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(34,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ai -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(35,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(36,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ah -ah -ai -ah -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(37,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(38,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(39,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(40,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(41,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -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 -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(42,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -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 -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(43,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(44,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(45,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(46,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ae -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 -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(47,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -ac -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 -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(48,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -ac -ac -ac -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 -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(49,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -ac -ac -ac -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(50,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -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 -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(51,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(52,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(53,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(54,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(55,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(56,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(57,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(58,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(59,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(60,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(61,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -aa -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(62,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(63,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(64,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(65,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(66,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(67,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(69,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -ac -ac -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ai -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(70,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(71,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(72,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -aj -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(73,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ai -ah -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(74,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(75,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(76,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ai -ah -ah -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(77,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(78,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(79,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(80,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -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 -af -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(81,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -ae -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(82,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(83,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(84,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(85,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -ac -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 -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(86,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(87,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(88,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ag -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(89,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(90,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(91,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(92,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(93,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(94,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -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 -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 -ac -ac -aa -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(95,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -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 -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(96,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -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 -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(97,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(98,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -ac -ac -aa -ac -ac -ac -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(99,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -ac -ac -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -ad -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(100,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -ae -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(101,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -aa -aa -aa -aa -ae -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 -ae -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(102,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(103,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(104,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(105,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(106,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -ac -ac -ac -ac -ac -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 -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 -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(107,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(108,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(109,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(110,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(111,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -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 -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(112,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -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 -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(113,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -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 -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(114,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -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 -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 -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(115,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -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 -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 -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(116,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(117,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(118,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(119,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(120,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -ak -ak -ak -aa -aa -aa -aa -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(121,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -ak -ak -ak -ak -ak -ak -aa -ak -ak -ak -am -am -am -am -am -am -am -ba -ba -ba -am -am -am -am -am -am -al -al -cf -cf -cf -cf -cf -cf -cf -cf -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 -aa -aa -aa -aa -ac -ac -ac -ac -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(122,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -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 -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -an -az -aJ -aJ -aJ -am -bb -bb -bb -am -bq -bc -bc -bM -am -al -aa -aa -al -al -aa -al -al -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 -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(123,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ao -aA -aK -aK -aK -aW -bc -bc -bc -am -br -bc -bc -bN -am -al -aa -aa -al -al -al -al -al -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 -aa -aa -aa -aa -aa -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(124,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ap -aB -aL -aL -aL -am -bc -bc -bc -am -bs -bc -bG -bO -am -al -aa -aa -al -al -aa -al -al -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 -ae -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(125,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -bd -bc -bc -am -bt -bc -bH -bP -am -am -cc -cg -cj -cj -cj -cj -cj -cn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(126,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aq -aC -aM -aQ -aS -am -bc -bc -bc -am -bu -bc -bI -bQ -bV -cb -cd -ch -ck -ck -ck -ck -cm -co -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(127,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ar -aD -aN -aQ -aS -aX -bc -bc -bc -bo -bc -bc -bJ -bQ -bW -cb -ce -ch -ck -ck -ck -ck -ck -co -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(128,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -as -aE -aO -aQ -aS -am -bc -bc -bc -am -bv -bF -bK -am -bX -am -cd -ci -cl -cl -cl -cl -cl -cp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(129,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -bd -bc -bc -am -am -am -am -am -am -am -ak -aa -al -al -aa -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(130,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -at -aF -aP -aP -aP -am -bc -bc -bc -am -bw -bx -bx -bx -bY -am -ak -ak -al -al -al -al -al -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(131,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -au -aG -aG -aG -aG -aY -bc -bc -bc -bp -bx -bx -bx -bx -bx -am -ak -ak -ak -al -aa -al -al -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(132,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -av -am -av -am -av -am -bc -bc -bc -am -by -bx -bx -bR -bx -am -ak -ak -ak -ak -ak -ak -al -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(133,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aw -am -aw -am -aw -am -bc -bc -bc -am -bz -bx -bL -bS -bZ -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(134,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -bd -bc -bc -am -bA -bx -bL -bT -bZ -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(135,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ax -aH -aI -aR -aH -am -bc -bc -bc -am -bB -bx -bx -bU -bx -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(136,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ay -aI -aI -aI -aI -aZ -bc -bc -bc -bp -bx -bx -bx -bx -bx -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(137,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ax -aH -aI -ax -aH -am -bc -bc -bc -am -bC -bx -bx -bx -ca -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(138,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -am -bj -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 -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(139,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aT -aS -be -aS -bk -aS -bD -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -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 -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -aj -ah -ah -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(140,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aT -aS -bf -aS -bl -aS -bE -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -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 -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ai -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(141,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -ac -ac -ac -ac -ac -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aS -aS -aS -aS -aS -aS -aS -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -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 -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(142,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aS -aS -aS -aS -aS -aS -aS -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -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 -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ai -ah -ah -ah -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(143,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aU -aS -bg -aS -bm -aS -aT -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -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 -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ai -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(144,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aV -aS -bh -aS -aT -aS -aT -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -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 -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(145,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aV -aS -bi -aS -bn -aS -aT -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(146,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -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 -ak -ak -ak -ak -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(147,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(148,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -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 -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(149,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -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 -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(150,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(151,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(152,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(153,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(154,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(155,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(156,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(157,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(158,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(159,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(160,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(161,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(162,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ae -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(163,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(164,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(165,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(166,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(167,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(168,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(169,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ac -aa -aa -aa -aa -aa -aa -aa -aa -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(170,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(171,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(172,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(173,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -ac -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(174,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(175,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(176,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(177,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(178,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(179,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(180,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(181,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(182,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(183,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(184,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(185,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(186,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(187,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(188,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ah -ah -ai -ah -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(189,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(190,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(191,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ah -ah -ah -ah -ah -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(192,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ah -ah -aj -ah -ai -ah -ac -ac -ac -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 -ac -ac -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(193,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ae -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(194,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ai -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(195,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ai -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(196,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -aj -ah -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ai -ah -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(197,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ai -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(198,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(199,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(200,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(201,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(202,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(203,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(204,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(205,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(206,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(207,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(208,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(209,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -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 -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 -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(210,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(211,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(212,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(213,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -aa -ac -ac -ac -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 -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 -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(214,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -aa -ae -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 -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(215,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -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 -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(216,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -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 -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(217,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -ac -ac -ac -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(218,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(219,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(220,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(221,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(222,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -ac -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 -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(223,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(224,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -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 -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(225,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(226,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(227,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(228,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(229,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -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 -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 -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 -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 -ab -aa -aa -aa -aa -aa -aa -aa -"} -(230,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -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 -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 -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 -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 -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 -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(231,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(232,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(233,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(234,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(235,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(236,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(237,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(238,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(239,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(240,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(241,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(242,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(243,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(244,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(245,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(246,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(247,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(248,1,1) = {" -aa -aa -aa -aa -aa -aa -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -"} -(249,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(250,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(251,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(252,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(253,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(254,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -"} -(255,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 -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaeaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaeaaaaacacacacacacacacacacacacacahahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahahahahahacacahahacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahahahahahahahahahahahahacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahaiahahahajahahahaiahahacacacacacacacacacaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahahahahahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahahahahahahahahahahacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahahaiahahacacacacacacacacaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahaiahahahacacacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahajahahaiahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahacacacacacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahaiahahahahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahahahahahacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacaaaaaaaaacacaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamamamamamamamamamamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamanaoapamaqarasamatauavawamaxayaxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamazaAaBamaCaDaEamaFaGamamamaHaIaHamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaMaNaOamaPaGavawamaIaIaIamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaQaQaQamaPaGamamamaRaIaxamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaSaSaSamaPaGavawamaHaIaHamaTaTaSaSaUaVaVamakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamaWamamamaXamamamaYamamamamaZamamaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbdbcbcbcbdbcbcbcbcbdbcbcbcambebfaSaSbgbhbiamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbjaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcambkblaSaSbmaTbnamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamamamamamboamamambpamamamambpamamaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambqbrbsbtbubcbvambwbxbybzbAbBbxbCambDbEaSaSaTaTaTamakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambcbcbcbcbcbcbFambxbxbxbxbxbxbxbxamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambcbcbGbHbIbJbKambxbxbxbLbLbxbxbxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambMbNbObPbQbQamambxbxbRbSbTbUbxbxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamamamambVbWbXambYbxbxbZbZbxbxcaamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalalalalalamcbcbamamamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalaaaaaacccdcecdakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfaaaaaacgchchciaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfaaalaacjckckclaaalaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjcmckclalalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaacfaaaaaacncococpaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaacfaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaacacacaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaacacacacacacacacacacacacacacacacacacacacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacahahahahahahahahahahacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacahahahahahahahahahahahahahacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacahahahahahahaiahahahaiahahahahahahacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaacaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacahahahahahahahahahahahahahaiahahahahahacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacahahahahahajahahahahahahahahahacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacahahahahahahahahahahacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} diff --git a/maps/RandomZLevels/listeningpost.dmm b/maps/RandomZLevels/listeningpost.dmm index 91d2a6bccc..aac334a339 100644 --- a/maps/RandomZLevels/listeningpost.dmm +++ b/maps/RandomZLevels/listeningpost.dmm @@ -1,10539 +1,191 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/space, -/area) -"b" = ( -/turf/simulated/mineral, -/area/mine/unexplored) -"c" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/listeningpost) -"d" = ( -/turf/simulated/floor/plating, -/area/awaymission/listeningpost) -"e" = ( -/obj/machinery/power/smes/magical{ - desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; - name = "power storage unit" - }, -/turf/simulated/floor/plating, -/area/awaymission/listeningpost) -"f" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"g" = ( -/turf/simulated/wall, -/area/awaymission/listeningpost) -"h" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper/monitorkey, -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/item/clothing/glasses/regular, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"i" = ( -/obj/structure/table/standard, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"j" = ( -/turf/simulated/floor, -/area/awaymission/listeningpost) -"k" = ( -/obj/machinery/door/airlock/external, -/turf/simulated/floor/plating, -/area/awaymission/listeningpost) -"l" = ( -/turf/simulated/floor/plating/airless/asteroid, -/area/mine/explored) -"m" = ( -/obj/machinery/computer/message_monitor, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"n" = ( -/obj/structure/stool/bed/chair{ - dir = 4 - }, -/mob/living/simple_mob/hostile/syndicate{ - desc = "A weary looking syndicate operative."; - faction = "syndicate" - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"o" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper{ - info = "Nothing of interest to report."; - name = "november report" - }, -/obj/item/weapon/pen, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"p" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"q" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate, -/obj/item/clothing/mask/gas, -/obj/item/clothing/head/helmet/space/syndicate, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"r" = ( -/obj/machinery/door/airlock, -/obj/item/weapon/paper{ - info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451"; - name = "odd report" - }, -/obj/item/weapon/gun/projectile/pistol, -/obj/item/weapon/silencer, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"s" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/mineral, -/area/mine/unexplored) -"t" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/mineral, -/area/mine/unexplored) -"u" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/plating/airless, -/area) -"v" = ( -/obj/structure/stool/bed, -/obj/item/weapon/bedsheet/brown, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"w" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"x" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"y" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/mineral, -/area/mine/unexplored) -"z" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"A" = ( -/obj/structure/closet, -/obj/item/clothing/gloves/boxing, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"B" = ( -/obj/structure/filingcabinet, -/obj/item/weapon/paper{ - info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."; - name = "april report" - }, -/obj/item/weapon/paper{ - info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment."; - name = "may report" - }, -/obj/item/weapon/paper{ - info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it."; - name = "june report" - }, -/obj/item/weapon/paper{ - info = "Nothing of interest to report."; - name = "july report" - }, -/obj/item/weapon/paper{ - info = "Nothing of interest to report."; - name = "august report" - }, -/obj/item/weapon/paper{ - info = "Nothing of interest to report."; - name = "september report" - }, -/obj/item/weapon/paper{ - info = "Nothing of interest to report."; - name = "october report" - }, -/obj/item/weapon/paper{ - info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"; - name = "receipt" - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"C" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper{ - info = "Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us."; - name = "mission briefing" - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"D" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"E" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/listeningpost) -"F" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/mineral, -/area/mine/unexplored) -"G" = ( -/obj/machinery/door/airlock{ - name = "Toilet" - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"H" = ( -/turf/simulated/floor{ - icon_state = "freezerfloor" - }, -/area/awaymission/listeningpost) -"I" = ( -/obj/machinery/shower{ - icon_state = "shower"; - dir = 8 - }, -/turf/simulated/floor{ - icon_state = "freezerfloor" - }, -/area/awaymission/listeningpost) -"J" = ( -/obj/structure/toilet{ - icon_state = "toilet00"; - dir = 8 - }, -/turf/simulated/floor{ - icon_state = "freezerfloor" - }, -/area/awaymission/listeningpost) -"K" = ( -/turf/simulated/mineral/clown, -/area/mine/unexplored) -"L" = ( -/turf/simulated/shuttle/wall{ - icon_state = "wall3" - }, -/area/mine/explored) -"M" = ( -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"N" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 9 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"O" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"P" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 5 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"Q" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"R" = ( -/obj/machinery/gateway/centeraway, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"S" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"T" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 10 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"U" = ( -/obj/machinery/gateway, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"V" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 6 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) +"a" = (/turf/space,/area) +"b" = (/obj/effect/blocker,/turf/space,/area) +"c" = (/turf/simulated/wall/r_wall,/area/awaymission/listeningpost) +"d" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/turf/simulated/floor,/area/awaymission/listeningpost) +"e" = (/obj/machinery/door/airlock/external,/turf/simulated/floor,/area/awaymission/listeningpost) +"f" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/awaymission/listeningpost) +"g" = (/turf/simulated/wall,/area/awaymission/listeningpost) +"h" = (/turf/simulated/mineral,/area/mine/unexplored) +"i" = (/turf/simulated/floor,/area/awaymission/listeningpost) +"j" = (/obj/structure/table/standard,/obj/item/weapon/paper/monitorkey,/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; !INVALID_VAR! = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_x = 32; subspace_transmission = 1; syndie = 1},/obj/item/clothing/glasses/regular,/turf/simulated/floor,/area/awaymission/listeningpost) +"k" = (/obj/structure/table/standard,/turf/simulated/floor,/area/awaymission/listeningpost) +"l" = (/turf/simulated/mineral/floor/vacuum,/area/mine/explored) +"m" = (/obj/machinery/computer/message_monitor{dir = 4},/turf/simulated/floor,/area/awaymission/listeningpost) +"n" = (/obj/structure/bed/chair{dir = 4},/mob/living/simple_mob/humanoid/merc{desc = "A weary looking syndicate operative."; faction = "syndicate"},/turf/simulated/floor,/area/awaymission/listeningpost) +"o" = (/obj/structure/table/standard,/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "november report"},/obj/item/weapon/pen,/turf/simulated/floor,/area/awaymission/listeningpost) +"p" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; !INVALID_VAR! = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_x = 32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor,/area/awaymission/listeningpost) +"q" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/syndicate,/obj/item/clothing/mask/gas,/obj/item/clothing/head/helmet/space/syndicate,/turf/simulated/floor,/area/awaymission/listeningpost) +"r" = (/obj/machinery/door/airlock,/obj/item/weapon/paper{info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451"; name = "odd report"},/obj/item/weapon/gun/projectile/pistol,/obj/item/weapon/silencer,/turf/simulated/floor,/area/awaymission/listeningpost) +"s" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/mineral,/area/mine/unexplored) +"t" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/mineral,/area/mine/unexplored) +"u" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/airless,/area) +"v" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/turf/simulated/floor,/area/awaymission/listeningpost) +"w" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor,/area/awaymission/listeningpost) +"x" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/awaymission/listeningpost) +"y" = (/obj/structure/disposalpipe/segment,/turf/simulated/mineral,/area/mine/unexplored) +"z" = (/obj/machinery/vending/cola,/turf/simulated/floor,/area/awaymission/listeningpost) +"A" = (/obj/structure/closet,/obj/item/clothing/gloves/boxing,/turf/simulated/floor,/area/awaymission/listeningpost) +"B" = (/obj/structure/filingcabinet,/obj/item/weapon/paper{info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."; name = "april report"},/obj/item/weapon/paper{info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment."; name = "may report"},/obj/item/weapon/paper{info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it."; name = "june report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "july report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "august report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "september report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "october report"},/obj/item/weapon/paper{info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"; name = "receipt"},/turf/simulated/floor,/area/awaymission/listeningpost) +"C" = (/obj/structure/table/standard,/obj/item/weapon/paper{info = "Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us."; name = "mission briefing"},/turf/simulated/floor,/area/awaymission/listeningpost) +"D" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/awaymission/listeningpost) +"E" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/awaymission/listeningpost) +"F" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/mineral,/area/mine/unexplored) +"G" = (/obj/machinery/door/airlock{name = "Toilet"},/turf/simulated/floor,/area/awaymission/listeningpost) +"H" = (/turf/simulated/floor/tiled/freezer,/area/awaymission/listeningpost) +"I" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/turf/simulated/floor/tiled/freezer,/area/awaymission/listeningpost) +"J" = (/obj/structure/toilet{icon_state = "toilet00"; dir = 8},/turf/simulated/floor/tiled/freezer,/area/awaymission/listeningpost) +"K" = (/turf/simulated/mineral/floor,/area/mine/unexplored) +"L" = (/turf/simulated/floor/greengrid,/area/mine/explored) +"M" = (/turf/simulated/mineral/floor,/area/mine/explored) +"N" = (/obj/machinery/gateway{icon_state = "off"; dir = 9},/turf/simulated/floor/greengrid,/area/mine/explored) +"O" = (/obj/machinery/gateway{icon_state = "off"; dir = 1},/turf/simulated/floor/greengrid,/area/mine/explored) +"P" = (/obj/machinery/gateway{icon_state = "off"; dir = 5},/turf/simulated/floor/greengrid,/area/mine/explored) +"Q" = (/obj/machinery/gateway{icon_state = "off"; dir = 8},/turf/simulated/floor/greengrid,/area/mine/explored) +"R" = (/obj/machinery/gateway/centeraway,/turf/simulated/floor/greengrid,/area/mine/explored) +"S" = (/obj/machinery/gateway{icon_state = "off"; dir = 4},/turf/simulated/floor/greengrid,/area/mine/explored) +"T" = (/obj/machinery/gateway{icon_state = "off"; dir = 10},/turf/simulated/floor/greengrid,/area/mine/explored) +"U" = (/obj/machinery/gateway,/turf/simulated/floor/greengrid,/area/mine/explored) +"V" = (/obj/machinery/gateway{icon_state = "off"; dir = 6},/turf/simulated/floor/greengrid,/area/mine/explored) (1,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(2,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(4,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(5,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(6,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(7,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(8,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(9,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(10,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(11,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(12,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(13,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(14,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(15,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(16,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(17,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(18,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(19,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(20,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(21,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(22,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(23,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(24,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(25,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(26,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(27,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(28,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(29,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(30,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(31,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(32,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(33,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(34,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(35,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(36,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(37,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(38,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -l -l -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(39,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -l -l -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(40,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(41,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(42,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(43,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(44,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(45,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(46,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(47,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(48,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(49,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -l -l -l -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(50,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(51,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(52,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -L -l -b -b -b -b -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(53,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -L -M -M -b -M -l -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(54,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -L -M -N -Q -T -M -L -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(55,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -L -M -O -R -U -M -L -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(56,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -K -K -b -b -b -b -K -b -b -b -b -b -b -b -L -M -P -S -V -M -L -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(57,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -K -b -b -b -b -b -b -b -b -b -b -b -b -L -M -M -M -M -M -L -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(58,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -L -L -L -L -L -L -L -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(59,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(60,1,1) = {" -a -a -a -a -b -b -b -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -b -b -b -b -b -b -b -K -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(61,1,1) = {" -a -a -a -a -b -b -b -b -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -K -b -b -b -b -b -b -K -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(62,1,1) = {" -a -a -a -b -b -b -b -b -a -a -b -b -b -b -a -a -a -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(63,1,1) = {" -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -l -l -l -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(64,1,1) = {" -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -b -b -b -b -b -b -b -b -b -b -K -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(65,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -b -K -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(66,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(67,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(68,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(69,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -l -l -l -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(70,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -l -l -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(71,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(72,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -a -a -a -a -b -b -b -b -b -b -b -b -b -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(73,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -b -b -b -b -b -b -b -b -b -l -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(74,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -b -b -b -b -b -b -b -b -b -b -l -a -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(75,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -a -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(76,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(77,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(78,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(79,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(80,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -c -c -c -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(81,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -v -j -A -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(82,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -b -c -c -c -b -c -w -j -B -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(83,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -c -c -m -c -c -c -g -f -g -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(84,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -c -h -n -p -j -r -j -j -C -c -c -c -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(85,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -c -c -c -i -o -i -j -g -j -j -j -G -H -H -c -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(86,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -c -d -f -j -j -j -j -g -j -j -D -g -I -J -c -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(87,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -c -e -g -j -j -j -q -g -x -z -E -c -c -c -c -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(88,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -c -c -c -k -k -c -c -c -c -c -E -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(89,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -c -d -d -c -b -b -b -b -t -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(90,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -c -d -d -c -b -s -y -y -F -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(91,1,1) = {" -a -a -a -a -a -a -a -b -b -b -b -b -b -c -k -k -c -b -t -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(92,1,1) = {" -a -a -a -a -a -a -a -a -a -b -b -b -b -a -a -a -a -b -t -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(93,1,1) = {" -a -a -a -a -a -a -a -a -a -a -b -b -b -a -a -a -a -a -u -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(94,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(95,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(96,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -a -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(97,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -a -a -a -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(98,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(99,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(100,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhaaaaaaaaaaaaahhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhaaaaaahhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhcccchhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhcidchhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhcccfgccccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhccjkiieiieaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalhhhhhhhhhhhhhhhhhhcmnoiieiieaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhalhhhhhhhhhhhhhhhhhhccpkiiccccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhllhhhhhhhhhhhhhhhhhhhciiiqchhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhlhhhhhhhhhhhhhhhhccccrgggchsttuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcvwgiiixchyhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhciifiiizchyhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcABgCiDEEtFhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcccccGgchhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcHIchhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcHJchhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcccchhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhlllhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhllaaahhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhlllaaaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhlaaaaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhlaaaahhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhlaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhaahhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhahhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaahhhhaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaahhhhhhhaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaahhhhhhhhhhhaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhlllllhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhlaaaahhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhllhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhKKKKhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhKLLLLMMMhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhMLLLLLMhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhLNOPLLKhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhQRSLMKhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhhlhhhhhhhhhhhhhhLTUVLMKhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhhllhhhhhhhhhhhhhMLLLLMhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhaalhhhhhhhhhhhhMMLLLMMhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhaaaahhhhhhhhhhhhhhhKKhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaahhhhhhaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhlhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhllhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhalhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhaalhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} diff --git a/maps/RandomZLevels/snowfield.dm b/maps/RandomZLevels/snowfield.dm index f53714b0ac..8cfed032f5 100644 --- a/maps/RandomZLevels/snowfield.dm +++ b/maps/RandomZLevels/snowfield.dm @@ -17,10 +17,10 @@ power_environ = 0 mobcountmax = 100 floracountmax = 7000 - /* - valid_mobs = list(/mob/living/simple_mob/hostile/samak/polar, /mob/living/simple_mob/hostile/diyaab/polar, - /mob/living/simple_mob/hostile/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar, - /mob/living/simple_mob/hostile/wolf)*/ //VORESTATION AI TEMPORARY REMOVAL + + valid_mobs = list(/mob/living/simple_mob/animal/sif/sakimm/polar, /mob/living/simple_mob/animal/sif/diyaab/polar, + /mob/living/simple_mob/animal/sif/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar, + /mob/living/simple_mob/animal/wolf) valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, @@ -86,13 +86,13 @@ desc = "This bastard sure isn't drinking Space Cola anymore." ..() -/mob/living/simple_mob/hostile/samak/polar +/mob/living/simple_mob/animal/sif/sakimm/polar faction = "polar" -/mob/living/simple_mob/hostile/diyaab/polar +/mob/living/simple_mob/animal/sif/diyaab/polar faction = "polar" -/mob/living/simple_mob/hostile/shantak/polar +/mob/living/simple_mob/animal/sif/shantak/polar faction = "polar" // -- Items -- // diff --git a/maps/RandomZLevels/snowfield.dmm b/maps/RandomZLevels/snowfield.dmm index 01fbbeebf6..5a2f3cad1a 100644 --- a/maps/RandomZLevels/snowfield.dmm +++ b/maps/RandomZLevels/snowfield.dmm @@ -1,42085 +1,389 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/unsimulated/wall/planetary/sif, -/area/awaymission/snowfield/restricted) -"ab" = ( -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/restricted) -"ac" = ( -/obj/effect/blocker, -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/restricted) -"ad" = ( -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/outside) -"ae" = ( -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield) -"af" = ( -/obj/effect/landmark/away, -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield) -"ag" = ( -/obj/machinery/light/small, -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ah" = ( -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ai" = ( -/turf/simulated/wall/durasteel, -/area/awaymission/snowfield/base) -"aj" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/durasteel, -/area/awaymission/snowfield/base) -"ak" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"al" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"am" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/stack/cable_coil/yellow{ - amount = 2; - icon_state = "coil2" - }, -/obj/item/weapon/shovel, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"an" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"ao" = ( -/obj/machinery/power/smes/buildable{ - charge = 2.5e+006; - input_attempt = 1; - input_level = 250000; - inputting = 1; - output_level = 250000; - RCon_tag = "Telecommunications Satellite" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"ap" = ( -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"aq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"ar" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump-derelict"; - operating = 0; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"as" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"at" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8"; - - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"au" = ( -/obj/structure/sign/biohazard, -/turf/simulated/wall/durasteel, -/area/awaymission/snowfield/base) -"av" = ( -/obj/machinery/door/airlock/centcom, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"aw" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ax" = ( -/obj/structure/closet/secure_closet/hydroponics{ - req_access = list(47) - }, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ay" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"az" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aA" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aB" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aC" = ( -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"aD" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aE" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/item/weapon/tool/wrench, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aF" = ( -/obj/machinery/biogenerator, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aG" = ( -/obj/machinery/seed_extractor, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aH" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aI" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aJ" = ( -/obj/structure/closet/jcloset, -/obj/item/weapon/soap, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"aK" = ( -/obj/structure/closet/jcloset, -/obj/item/weapon/soap/deluxe, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"aL" = ( -/obj/structure/closet/l3closet/janitor, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"aM" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aN" = ( -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aO" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"aQ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Isolation to Waste" - }, -/obj/effect/floor_decal/corner/green/full, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aR" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aS" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aT" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aU" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"aV" = ( -/obj/effect/floor_decal/corner/green/full, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Port to Isolation" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aW" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 9 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aX" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aY" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aZ" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/weapon/storage/box/botanydisk, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ba" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bb" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bc" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bd" = ( -/obj/machinery/door/airlock/research{ - name = "Xenoflora Storage"; - req_access = list(55) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"be" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bf" = ( -/obj/machinery/botany/editor, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bg" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bh" = ( -/obj/effect/floor_decal/corner/green/full, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bi" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer" - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bj" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 2; - icon_state = "heater" - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bk" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"bm" = ( -/obj/machinery/botany/extractor, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bn" = ( -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/mousetraps, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bo" = ( -/obj/machinery/door/window/northright{ - name = "Xenoflora Containment"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 5 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"br" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bs" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bt" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bu" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bv" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bw" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bx" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"by" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bz" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bA" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bB" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bC" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/table/standard, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bD" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - layer = 4; - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bE" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bF" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bG" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bH" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/structure/closet/medical_wall{ - pixel_y = -32 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bI" = ( -/obj/machinery/seed_storage/xenobotany, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bJ" = ( -/obj/machinery/vending/hydronutrients{ - categories = 3 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bK" = ( -/obj/machinery/smartfridge, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bL" = ( -/obj/structure/table/glass, -/obj/item/weapon/tape_roll, -/obj/item/device/analyzer/plant_analyzer, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bM" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/structure/table/glass, -/obj/item/weapon/clipboard, -/obj/item/weapon/folder/white, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bN" = ( -/obj/item/weapon/mop, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/structure/janitorialcart, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bO" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bP" = ( -/obj/machinery/portable_atmospherics/hydroponics{ - closed_system = 1; - name = "isolation tray" - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bQ" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"bS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"bT" = ( -/obj/machinery/door/airlock/freezer, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bU" = ( -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bV" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"bW" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"bX" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"bY" = ( -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/base) -"bZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ca" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cb" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cc" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/sink/kitchen{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cd" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ce" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cf" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cg" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ch" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ci" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cj" = ( -/obj/structure/toilet, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ck" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/door/window/southright{ - name = "Shower" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cl" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"cm" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"cn" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"co" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/base) -"cp" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cq" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cr" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cs" = ( -/obj/machinery/gateway{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"ct" = ( -/obj/machinery/gateway, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"cu" = ( -/obj/machinery/gateway{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"cv" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cw" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/obj/item/weapon/deck/cards, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cx" = ( -/obj/machinery/door/airlock/silver{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cy" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"cz" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/base) -"cA" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/base) -"cB" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/vending/sovietsoda, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cC" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cD" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cE" = ( -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cF" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cG" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"cH" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"cI" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/vending/dinnerware, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cJ" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cK" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cL" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cM" = ( -/obj/machinery/door/airlock/highsecurity, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"cN" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/closet/crate/bin, -/obj/item/trash/pistachios, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cO" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cP" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cQ" = ( -/obj/machinery/door/airlock/freezer, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"cS" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cT" = ( -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/derelict/d9, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cW" = ( -/obj/effect/floor_decal/derelict/d10, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cX" = ( -/obj/effect/floor_decal/derelict/d11, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cY" = ( -/obj/effect/floor_decal/derelict/d12, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cZ" = ( -/obj/effect/floor_decal/derelict/d13, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"da" = ( -/obj/effect/floor_decal/derelict/d14, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"db" = ( -/obj/effect/floor_decal/derelict/d15, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/derelict/d16, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dd" = ( -/obj/effect/floor_decal/derelict/d1, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"de" = ( -/obj/effect/floor_decal/derelict/d2, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"df" = ( -/obj/effect/floor_decal/derelict/d3, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dg" = ( -/obj/effect/floor_decal/derelict/d4, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dh" = ( -/obj/effect/floor_decal/derelict/d5, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"di" = ( -/obj/effect/floor_decal/derelict/d6, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dj" = ( -/obj/effect/floor_decal/derelict/d7, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dk" = ( -/obj/effect/floor_decal/derelict/d8, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dl" = ( -/obj/machinery/door/airlock/security, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/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/awaymission/snowfield/base) -"dn" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/southleft, -/obj/machinery/door/window/northleft, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"do" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"dp" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/holofloor/wood, -/area/awaymission/snowfield/base) -"dq" = ( -/obj/machinery/door/airlock/maintenance{ - locked = 1; - name = "Storage Access" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dr" = ( -/obj/structure/closet/l3closet/security, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"ds" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dt" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"du" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dv" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dw" = ( -/turf/simulated/floor/grass, -/area/awaymission/snowfield/base) -"dx" = ( -/turf/simulated/floor/holofloor/wood, -/area/awaymission/snowfield/base) -"dy" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/gimmick/russian, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dz" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/l3closet/general, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/freezer/rations, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dB" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/secure/loot, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dD" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/secure/weapon, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dF" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dG" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/device/radio/phone, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dH" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/grass, -/area/awaymission/snowfield/base) -"dI" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/wood, -/area/awaymission/snowfield/base) -"dJ" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/holofloor/wood, -/area/awaymission/snowfield/base) -"dK" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/grass, -/area/awaymission/snowfield/base) -"dL" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dM" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dN" = ( -/obj/structure/closet/bombclosetsecurity, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dO" = ( -/obj/structure/closet/medical_wall{ - pixel_y = -32 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/adv, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dP" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/backpack/satchel/sec, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dQ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/clothing/head/hood/winter, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/internals, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dS" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/remains/human, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/remains/human, -/mob/living/simple_mob/hostile/mimic/crate, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/gmcloset, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dV" = ( -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dW" = ( -/obj/machinery/door/airlock/highsecurity{ - locked = 1; - name = "Secure Armoury Section"; - req_access = list(150) - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dX" = ( -/obj/structure/closet, -/obj/item/clothing/under/soviet, -/obj/item/clothing/shoes/boots/jackboots, -/obj/item/clothing/head/ushanka, -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dY" = ( -/obj/structure/closet/crate/secure/gear, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dZ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ea" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/suit/space/syndicate, -/obj/item/clothing/head/helmet/space/syndicate, -/obj/structure/closet/crate/internals, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"eb" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/suit/hgpirate, -/obj/item/clothing/head/hgpiratecap, -/obj/structure/closet/crate/secure/gear, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ec" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/suit/armor/combat, -/obj/structure/closet/crate/secure/gear, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ed" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/mob/living/simple_mob/hostile/viscerator, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"ee" = ( -/mob/living/simple_mob/hostile/viscerator, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"ef" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/mob/living/simple_mob/hostile/viscerator, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"eg" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/item/weapon/gun/projectile/shotgun/pump/rifle/mosin, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"eh" = ( -/obj/structure/coatrack, -/turf/simulated/floor/grass, -/area/awaymission/snowfield/base) -"ei" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/wardrobe/red, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ej" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/medical, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ek" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"el" = ( -/obj/effect/floor_decal/industrial/loading{ - icon_state = "loadingarea"; - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"em" = ( -/obj/machinery/conveyor_switch{ - id = "away_soviet" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"en" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/secure/phoron, -/obj/fiftyspawner/phoron, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"eo" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/toolcloset, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ep" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/door/airlock/centcom, -/turf/simulated/floor/holofloor/wood, -/area/awaymission/snowfield/base) -"eq" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 2; - id = "away_soviet" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"er" = ( -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"es" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"et" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eu" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ev" = ( -/obj/machinery/conveyor_switch{ - id = "away_soviet" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ew" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "away_soviet" - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ex" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ey" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ez" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eA" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eB" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eC" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eD" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eE" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eF" = ( -/turf/simulated/floor/reinforced{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) +"aa" = (/turf/unsimulated/wall/planetary/sif,/area/awaymission/snowfield/restricted) +"ab" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted) +"ac" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted) +"ad" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"ae" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield) +"af" = (/obj/effect/blocker,/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted) +"ag" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"ah" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/base) +"ai" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield) +"aj" = (/obj/effect/blocker,/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"ak" = (/obj/effect/landmark/away,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"al" = (/obj/effect/landmark/away,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/base) +"am" = (/obj/machinery/light/small,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"an" = (/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside) +"ao" = (/obj/structure/sign/electricshock,/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside) +"ap" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"aq" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"ar" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/stack/cable_coil/yellow{amount = 2; icon_state = "coil2"},/obj/item/weapon/shovel,/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"as" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"at" = (/obj/machinery/power/smes/buildable{charge = 2.5e+006; input_attempt = 1; input_level = 250000; inputting = 1; output_level = 250000; RCon_tag = "Telecommunications Satellite"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"au" = (/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"av" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"aw" = (/obj/machinery/power/apc{dir = 8; name = "west bump-derelict"; operating = 0; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"ax" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"ay" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"az" = (/obj/structure/sign/biohazard,/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside) +"aA" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"aB" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/effect/floor_decal/corner/green/full{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aC" = (/obj/structure/closet/secure_closet/hydroponics{req_access = list(47)},/obj/effect/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aD" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/corner/green/full{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aE" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/closet/crate/bin,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aF" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aG" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/machinery/atmospherics/portables_connector,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aH" = (/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"aI" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/machinery/space_heater,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aJ" = (/obj/machinery/atmospherics/portables_connector,/obj/item/weapon/tool/wrench,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aK" = (/obj/machinery/biogenerator,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aL" = (/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aM" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aN" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aO" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"aP" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/deluxe,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"aQ" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"aR" = (/obj/structure/closet/crate/hydroponics/prespawned,/obj/effect/floor_decal/corner/green{dir = 9},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aS" = (/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aT" = (/obj/effect/floor_decal/corner/green{dir = 6},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"aV" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Isolation to Waste"},/obj/effect/floor_decal/corner/green/full,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aW" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aX" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aY" = (/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aZ" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"ba" = (/obj/effect/floor_decal/corner/green/full,/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Port to Isolation"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bb" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 9},/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bc" = (/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bd" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"be" = (/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/structure/table/glass,/obj/item/weapon/storage/box/botanydisk,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bf" = (/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bg" = (/obj/effect/floor_decal/corner/green{dir = 9},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bh" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bi" = (/obj/machinery/door/airlock/research{name = "Xenoflora Storage"; req_access = list(55)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bj" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bk" = (/obj/machinery/botany/editor,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bl" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bm" = (/obj/effect/floor_decal/corner/green/full,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bn" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer"},/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bo" = (/obj/machinery/atmospherics/unary/heater{dir = 2; icon_state = "heater"},/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bp" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/corner/green/full{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"br" = (/obj/machinery/botany/extractor,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bs" = (/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/steel,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bt" = (/obj/machinery/door/window/northright{name = "Xenoflora Containment"; req_access = list(47)},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bu" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bv" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bw" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bx" = (/obj/effect/floor_decal/corner/green/full{dir = 8},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"by" = (/obj/effect/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bz" = (/obj/effect/floor_decal/corner/green/full{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bA" = (/obj/effect/floor_decal/corner/green/full{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bB" = (/obj/effect/floor_decal/corner/green{dir = 5},/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bC" = (/obj/effect/floor_decal/corner/green/full{dir = 1},/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bD" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bF" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bG" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bH" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/structure/table/standard,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bI" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/item/device/radio/intercom{layer = 4; name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bJ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bK" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bL" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bM" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/closet/medical_wall{pixel_y = -32},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bN" = (/obj/machinery/seed_storage/xenobotany,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bO" = (/obj/machinery/vending/hydronutrients{categories = 3},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bP" = (/obj/machinery/smartfridge,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bQ" = (/obj/structure/table/glass,/obj/item/weapon/tape_roll,/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bR" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/table/glass,/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bS" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/janitorialcart,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bT" = (/obj/machinery/light,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bU" = (/obj/machinery/portable_atmospherics/hydroponics{closed_system = 1; name = "isolation tray"},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bV" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bW" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"bX" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"bY" = (/obj/machinery/door/airlock/freezer,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bZ" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"ca" = (/obj/machinery/gateway{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cb" = (/obj/machinery/gateway{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cc" = (/obj/machinery/gateway{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cd" = (/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/random,/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/closet/crate,/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) +"ce" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"cf" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"cg" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"ch" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/sink/kitchen{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"ci" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cj" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/machinery/microwave{pixel_y = 6},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"ck" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cl" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cm" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cn" = (/obj/structure/table/standard,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"co" = (/obj/structure/toilet,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cp" = (/obj/structure/curtain/open/shower,/obj/machinery/door/window/southright{name = "Shower"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cq" = (/obj/machinery/gateway{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cr" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cs" = (/obj/machinery/gateway{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"ct" = (/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) +"cu" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cv" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cw" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cx" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cy" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cz" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cA" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/snack,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cB" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cC" = (/obj/machinery/door/airlock/silver{name = "Restroom"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cD" = (/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"cE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) +"cF" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) +"cG" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/sovietsoda,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cH" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cI" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cJ" = (/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cK" = (/obj/structure/bed/padded,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cL" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"cM" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"cN" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/dinnerware,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cO" = (/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cP" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cQ" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cR" = (/obj/machinery/door/airlock/highsecurity,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"cS" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/closet/crate/bin,/obj/item/trash/pistachios,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cT" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/space_heater,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cU" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cV" = (/obj/machinery/door/airlock/freezer,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"cW" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"cX" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cY" = (/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"cZ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"da" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/derelict/d9,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"db" = (/obj/effect/floor_decal/derelict/d10,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dc" = (/obj/effect/floor_decal/derelict/d11,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dd" = (/obj/effect/floor_decal/derelict/d12,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"de" = (/obj/effect/floor_decal/derelict/d13,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"df" = (/obj/effect/floor_decal/derelict/d14,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dg" = (/obj/effect/floor_decal/derelict/d15,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dh" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/derelict/d16,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"di" = (/obj/effect/floor_decal/derelict/d1,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dj" = (/obj/effect/floor_decal/derelict/d2,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dk" = (/obj/effect/floor_decal/derelict/d3,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dl" = (/obj/effect/floor_decal/derelict/d4,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dm" = (/obj/effect/floor_decal/derelict/d5,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dn" = (/obj/effect/floor_decal/derelict/d6,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"do" = (/obj/effect/floor_decal/derelict/d7,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dp" = (/obj/effect/floor_decal/derelict/d8,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dq" = (/obj/machinery/door/airlock/security,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dr" = (/obj/structure/grille,/obj/structure/window/reinforced,/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/awaymission/snowfield/outside) +"ds" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/southleft,/obj/machinery/door/window/northleft,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dt" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"du" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) +"dv" = (/obj/machinery/door/airlock/maintenance{locked = 1; name = "Storage Access"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dw" = (/obj/structure/closet/l3closet/security,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dx" = (/obj/structure/closet/fireaxecabinet{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dy" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dz" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dA" = (/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dB" = (/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) +"dC" = (/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) +"dD" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/gimmick/russian,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/l3closet/general,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dF" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer/rations,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dG" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dI" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/weapon,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dJ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dK" = (/obj/structure/closet/firecloset,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dL" = (/obj/structure/table/steel_reinforced,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/device/radio/phone,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dM" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) +"dN" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) +"dO" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) +"dP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) +"dQ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dR" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dS" = (/obj/structure/closet/bombclosetsecurity,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dT" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/shuttle/awaymission/oldengbase) +"dU" = (/obj/structure/closet/medical_wall{pixel_y = -32},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dV" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/backpack/satchel/sec,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/head/hood/winter,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dX" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/internals,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dY" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/decal/remains/human,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/remains/human,/obj/structure/closet/crate/mimic/guaranteed{name = "steel crate"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ea" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/gmcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"eb" = (/obj/machinery/power/port_gen/pacman,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ec" = (/obj/machinery/door/airlock/highsecurity{locked = 1; name = "Secure Armoury Section"; req_access = list(150)},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"ed" = (/obj/structure/closet,/obj/item/clothing/under/soviet,/obj/item/clothing/shoes/boots/jackboots,/obj/item/clothing/head/ushanka,/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"ee" = (/obj/structure/closet/crate/secure/gear,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"ef" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"eg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/space/syndicate,/obj/item/clothing/head/helmet/space/syndicate,/obj/structure/closet/crate/internals,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"eh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/hgpirate,/obj/item/clothing/head/hgpiratecap,/obj/structure/closet/crate/secure/gear,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ei" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/armor/combat,/obj/structure/closet/crate/secure/gear,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ej" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"ek" = (/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"el" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"em" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/shotgun/pump/rifle,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"en" = (/obj/structure/coatrack,/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) +"eo" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/wardrobe/red,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ep" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"eq" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"er" = (/obj/effect/floor_decal/industrial/loading{icon_state = "loadingarea"; dir = 1},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"es" = (/obj/machinery/conveyor_switch{id = "away_soviet"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"et" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/phoron,/obj/fiftyspawner/phoron,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"eu" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/toolcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ev" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/door/airlock/centcom,/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) +"ew" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 2; id = "away_soviet"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ex" = (/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"ey" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"ez" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 1},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eA" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eB" = (/obj/machinery/conveyor_switch{id = "away_soviet"},/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eC" = (/obj/machinery/conveyor{dir = 2; id = "away_soviet"},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eD" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eE" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eF" = (/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eG" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eH" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 4},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eI" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 1},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eJ" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eK" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 8},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eL" = (/turf/simulated/floor/reinforced{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) (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 -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 -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 -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 -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 -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(3,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(4,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(5,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(6,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(7,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(8,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(9,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -aa -"} -(10,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(11,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(12,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(13,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(14,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(15,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(16,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(17,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(18,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(19,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(20,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(21,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(22,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(23,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(24,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(25,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(26,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(27,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(28,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(29,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(30,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(31,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(32,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(33,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(34,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(35,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(36,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(37,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(38,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(39,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ae -ae -ae -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 -ae -ae -ae -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 -ae -ae -ae -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(40,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ae -ae -ae -ae -ae -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 -ae -ae -ae -ae -ae -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 -ae -ae -ae -ae -ae -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(41,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ae -ae -af -ae -ae -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 -ae -ae -af -ae -ae -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 -ae -ae -af -ae -ae -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(42,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ae -ae -ae -ae -ae -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 -ae -ae -ae -ae -ae -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 -ae -ae -ae -ae -ae -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(43,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ae -ae -ae -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 -ae -ae -ae -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 -ae -ae -ae -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(44,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(45,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(46,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(47,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(48,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(49,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(50,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(51,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(52,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(53,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(54,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(55,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(56,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(57,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(58,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(59,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(60,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(61,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(62,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(63,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(64,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(65,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(66,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(67,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -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 -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(68,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -ae -ae -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 -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(69,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -af -ae -ae -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 -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(70,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -ae -ae -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 -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(71,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -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 -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(72,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(73,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(74,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(75,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(76,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(77,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(78,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(79,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(80,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(81,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(82,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(83,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(84,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(85,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(86,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(87,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(88,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(89,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(90,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(91,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aw -aM -bb -bh -bo -bz -ai -ai -ci -cr -ai -cD -cJ -cD -ai -cT -cT -ai -dr -dF -dN -ai -dX -ed -dX -ai -er -er -ez -ey -ey -ey -ey -ey -ey -ey -ey -ey -ey -es -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(92,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ax -aN -aN -bi -bp -aC -bP -ai -cj -aN -cx -cE -cE -cE -cP -cT -cT -dl -cy -cy -cy -ai -dX -ee -dX -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(93,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ax -aN -bc -bj -bq -bA -bQ -ai -ck -aN -ai -cF -cK -cF -ai -cT -cT -ai -cy -cy -cy -ai -dX -ee -dX -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(94,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ay -aO -aO -bk -br -bB -ai -ai -ai -ai -ai -ai -ai -ai -ai -cU -cT -ai -ds -cy -cy -dW -cy -ee -cy -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(95,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -aP -bd -bl -ai -ai -ai -bV -cl -cs -cy -cG -cy -ai -cy -cT -cT -dm -dt -cy -dO -ai -dY -ee -eg -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(96,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -az -aQ -aC -aC -bs -bC -ai -bW -cm -ct -cy -cy -cy -cM -cy -cT -cT -dn -du -cy -cy -ai -dY -ee -eg -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(97,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aA -aR -aC -aC -bt -bD -ai -bX -cn -cu -cy -cH -cy -ai -cy -cT -cT -do -dv -dG -dP -ai -dY -ef -eg -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(98,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -ae -ae -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 -ad -ad -ad -ad -ai -ai -ai -ai -ai -aA -aS -aC -aC -bt -bE -ai -ai -ai -ai -ai -ai -ai -ai -ai -cV -dd -ai -ai -ai -ai -ai -ai -ai -ai -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -ad -ad -ad -ad -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(99,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -af -ae -ae -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 -ad -ad -ad -ad -ai -al -ap -ar -ai -aB -aT -be -be -bt -bF -bR -bY -co -bY -cz -bY -co -bY -bR -cW -de -ai -dw -dH -dw -dw -dw -dH -dw -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -ad -ad -ad -ae -ae -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(100,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -ae -ae -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 -ad -ad -ad -ag -aj -am -ap -as -au -aC -aU -be -be -bu -bG -bS -bY -co -bY -co -bY -co -bY -bS -cX -df -ai -dw -dI -dI -dw -dI -dI -eh -ai -es -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -ad -ad -ad -ae -ae -af -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(101,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -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 -ad -ad -ad -ad -ah -ak -an -ap -as -av -aC -aU -be -be -aC -aC -bT -bZ -bZ -bZ -bZ -bZ -bZ -bZ -cQ -cY -dg -dp -dx -dx -dx -dx -dx -dx -dx -ep -et -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -ad -ad -ad -ae -ae -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(102,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ai -ao -aq -at -aj -aC -aU -be -be -aC -aC -bT -ca -ca -ca -ca -ca -ca -ca -cQ -cZ -dh -dp -dx -dx -dx -dx -dx -dx -dx -ep -et -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -ad -ad -ad -ad -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(103,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -aD -aV -be -be -bv -bH -bR -bY -co -bY -co -bY -co -bY -bR -da -di -ai -dw -dJ -dJ -dw -dJ -dJ -eh -ai -eu -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(104,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aE -aW -aC -aC -bt -bI -bS -bY -co -bY -cA -bY -co -bY -bS -db -dj -ai -dw -dK -dw -dw -dw -dK -dw -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(105,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aF -aX -aC -aC -bt -bJ -ai -ai -ai -ai -ai -ai -ai -ai -ai -dc -dk -ai -ai -ai -ai -ai -ai -ai -ai -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(106,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aG -aX -aC -aC -bt -bK -ai -cb -cp -cv -cB -cI -cd -cN -bR -cT -cT -ai -dy -dL -dQ -dB -dZ -dL -ei -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(107,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aH -aY -aC -aC -bw -bL -ai -cc -ch -ch -ch -ch -ch -ch -cR -cT -cT -ai -dz -dB -dC -dB -dC -dB -ej -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(108,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aI -aZ -bf -bm -bx -bM -ai -cd -ch -cq -cq -ch -ch -ch -bS -cT -cT -ai -dA -dB -dR -dB -ea -dB -ek -ai -ev -ey -eB -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(109,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ai -ce -cq -cd -cd -cq -ch -cO -ai -cU -cT -dq -dB -dB -dS -dB -dB -dB -el -eq -ew -ew -eC -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(110,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aJ -ba -bg -bn -by -bN -ai -cf -cq -cw -cd -cq -ch -ch -ai -cT -cT -ai -dC -dB -dT -dB -dC -dB -em -ai -ex -ex -eD -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(111,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aK -ba -ba -ba -ba -bO -ai -cg -ch -cq -cq -ch -ch -ch -cS -cT -cT -ai -dD -dB -dU -dB -eb -dB -en -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(112,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aL -ba -ba -ba -ba -ba -bU -ch -ch -ch -cC -ch -cL -cL -ai -cT -cT -ai -dE -dM -dV -dB -ec -dM -eo -ai -er -er -eE -ex -ex -ex -ex -ex -ex -ex -ex -ex -ex -eu -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 -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 -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(113,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(114,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(115,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(116,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(117,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(118,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(119,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(120,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(121,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(122,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(123,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(124,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(125,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(126,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(127,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(128,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(129,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -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 -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(130,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -ae -ae -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 -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(131,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -af -ae -ae -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 -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(132,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -ae -ae -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 -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(133,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -ae -ae -ae -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 -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 -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 -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(134,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(135,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(136,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(137,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(138,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(139,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(140,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(141,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(142,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(143,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(144,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(145,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(146,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(147,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(148,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(149,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(150,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(151,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(152,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(153,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(154,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(155,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(156,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(157,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ae -ae -ae -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 -ae -ae -ae -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 -ae -ae -ae -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(158,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ae -ae -ae -ae -ae -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 -ae -ae -ae -ae -ae -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 -ae -ae -ae -ae -ae -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(159,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ae -ae -af -ae -ae -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 -ae -ae -af -ae -ae -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 -ae -ae -af -ae -ae -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(160,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ae -ae -ae -ae -ae -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 -ae -ae -ae -ae -ae -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 -ae -ae -ae -ae -ae -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(161,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -ae -ae -ae -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 -ae -ae -ae -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 -ae -ae -ae -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(162,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(163,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(164,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(165,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(166,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(167,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(168,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(169,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(170,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(171,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(172,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(173,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(174,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(175,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(176,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(177,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(178,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(179,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(180,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(181,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(182,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(183,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(184,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(185,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(186,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(187,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(188,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(189,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(190,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(191,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -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 -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 -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 -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 -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 -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 -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(192,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -aa -"} -(193,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(194,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(195,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(196,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(197,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(198,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(199,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(200,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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaabababababababafagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagaiaiaiagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagajadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahalahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadakadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaddTadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadamadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananaoapananadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaqarasatanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanauauauavanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanawaxaxayanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananananananananazaAaoanananananananananananadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaBaCaCaDanaEaFaFaGaHaHaHaIaJaKaLaMaNanaOaPaQanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaRaSaSaTaUaVaWaXaYaZaZaZbabbbcbcbdbeanbfbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbgaSbhaTbiaHaHaHbjbjbjbjbjaHaHaHaHbkanblbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbmbnbobpbqaHaHaHbjbjbjbjbjaHaHaHaHbranbsbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbtbubvbwanbxbybybybzaHaHbAbybybybBbCanbDbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbEaHbFbGanbHbIbJbKbLaHaHbMbNbObPbQbRanbSbTbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananbUbVanananananbWbXbYbYbWbXanananananananbZanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananancacbccancdcdcecfcdcdancgchcicjckclcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancncocpancqcrcsanctctcecfctctancucmcmcvcvcmcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancwaSaSancxcyczancdcdcecfcdcdancAcmcvcicBcvcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanancCanancDcDcDancEctcecfctcFancGcmcvcicicvcHanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancIcJcKancLcDcMancdcdcecfcdcdancNcmcmcvcvcmcmanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancOcJcPancDcDcDanctctcecfctctancicmcmcmcmcmcQanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancIcJcKanancRanancdcdcecfcdcdancScmcmcTcmcmcQanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanancUanancDcDcDanbWbXcVcVbWbXanbWcWbXanancXananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadancYcYcYcZcYcYcYdadbdcdddedfdgdhcYcYcYcZcYcYcYanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadancYcYcYcYcYcYcYdidjdkdldmdndodpcYcYcYcYcYcYcYanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadanandqanandrdsdtanananduduanananananandvananananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadandwcDcDdxdydzdAandBdBdCdCdBdBandDdEdFdGdHdIdJanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadandKcDcDcDcDcDdLandMdNdCdCdOdPandQdGdGdGdGdGdRanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadandScDcDcDdUcDdVandBdNdCdCdOdBandWdHdXdYdZeaebanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananecanananandBdBdCdCdBdBandGdGdGdGdGdGdGanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanedededcDeeeeeeandBdNdCdCdOdBanefdHegdGdHeheianadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanejekekekekekelandMdNdCdCdOdPandQdGdGdGdGdGdRanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanedededcDemememandBendCdCendBaneoepeqereseteuanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanananananananananananevevananananananewananananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadexexexexexexexexexeyezezeAexexexexeBeCeDexexadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadexexexexexexexexexexexexexexexexexeEeCeDexexadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeFeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeHeIeJeGeKadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeyezezezezezezezezezezezezezezezezezezezezeAadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} diff --git a/maps/southern_cross/items/encryptionkey_sc.dm b/maps/southern_cross/items/encryptionkey_sc.dm index feb63e5894..4200fe59bb 100644 --- a/maps/southern_cross/items/encryptionkey_sc.dm +++ b/maps/southern_cross/items/encryptionkey_sc.dm @@ -16,7 +16,7 @@ /obj/item/device/encryptionkey/heads/hop name = "head of personnel's encryption key" icon_state = "hop_cypherkey" - channels = list("Supply" = 1, "Service" = 1, "Command" = 1, "Security" = 0, "Explorer" = 0) + channels = list("Supply" = 1, "Service" = 1, "Command" = 1, "Security" = 1, "Explorer" = 1) /obj/item/device/encryptionkey/heads/ai_integrated name = "ai integrated encryption key" @@ -27,4 +27,4 @@ /obj/item/device/encryptionkey/heads/captain name = "colony director's encryption key" icon_state = "cap_cypherkey" - channels = list("Command" = 1, "Security" = 1, "Engineering" = 0, "Science" = 0, "Medical" = 0, "Supply" = 0, "Service" = 0, "Explorer" = 0) \ No newline at end of file + channels = list("Command" = 1, "Security" = 1, "Engineering" = 1, "Science" = 1, "Medical" = 1, "Supply" = 1, "Service" = 1, "Explorer" = 1) \ No newline at end of file diff --git a/maps/southern_cross/job/outfits.dm b/maps/southern_cross/job/outfits.dm index 159701decd..6310c29afd 100644 --- a/maps/southern_cross/job/outfits.dm +++ b/maps/southern_cross/job/outfits.dm @@ -14,7 +14,7 @@ Keep outfits simple. Spawn with basic uniforms and minimal gear. Gear instead go id_slot = slot_wear_id pda_slot = slot_l_store pda_type = /obj/item/device/pda/explorer //VORESTation Edit - Better Brown - id_type = /obj/item/weapon/card/id/explorer/explorer //VOREStation Edit + id_type = /obj/item/weapon/card/id/explorer //VOREStation Edit id_pda_assignment = "Explorer" flags = OUTFIT_HAS_BACKPACK|OUTFIT_COMPREHENSIVE_SURVIVAL backpack_contents = list(/obj/item/clothing/accessory/permit/gun/planetside = 1) @@ -47,7 +47,6 @@ Keep outfits simple. Spawn with basic uniforms and minimal gear. Gear instead go id_slot = slot_wear_id pda_slot = slot_belt pda_type = /obj/item/device/pda //VOREStation Edit - Civilian - id_type = /obj/item/weapon/card/id/explorer/pilot //VOREStation Edit id_pda_assignment = "Pilot" flags = OUTFIT_HAS_BACKPACK|OUTFIT_COMPREHENSIVE_SURVIVAL @@ -61,6 +60,5 @@ Keep outfits simple. Spawn with basic uniforms and minimal gear. Gear instead go belt = /obj/item/weapon/storage/belt/medical/emt pda_slot = slot_l_store pda_type = /obj/item/device/pda/sar //VOREStation Add - id_type = /obj/item/weapon/card/id/medical/sar id_pda_assignment = "Field Medic" //VOREStation Edit flags = OUTFIT_HAS_BACKPACK|OUTFIT_EXTENDED_SURVIVAL|OUTFIT_COMPREHENSIVE_SURVIVAL diff --git a/maps/southern_cross/job/outfits_vr.dm b/maps/southern_cross/job/outfits_vr.dm index 0a0301212f..e2976fb10c 100644 --- a/maps/southern_cross/job/outfits_vr.dm +++ b/maps/southern_cross/job/outfits_vr.dm @@ -6,7 +6,7 @@ id_slot = slot_wear_id pda_slot = slot_l_store pda_type = /obj/item/device/pda/pathfinder - id_type = /obj/item/weapon/card/id/explorer/head/pathfinder + id_type = /obj/item/weapon/card/id/explorer/head id_pda_assignment = "Pathfinder" flags = OUTFIT_HAS_BACKPACK|OUTFIT_EXTENDED_SURVIVAL|OUTFIT_COMPREHENSIVE_SURVIVAL backpack_contents = list(/obj/item/clothing/accessory/permit/gun/planetside = 1) diff --git a/maps/southern_cross/southern_cross-1.dmm b/maps/southern_cross/southern_cross-1.dmm index d51a34bf2e..01a881844b 100644 --- a/maps/southern_cross/southern_cross-1.dmm +++ b/maps/southern_cross/southern_cross-1.dmm @@ -255,7 +255,11 @@ "aeU" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fore) "aeV" = (/obj/structure/cable,/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/hallway/primary/firstdeck/fore) "aeW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/hallway/primary/firstdeck/fore) +<<<<<<< HEAD "aeX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) +======= +"aeX" = (/obj/machinery/atmospherics/binary/passive_gate{regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "aeY" = (/obj/structure/ore_box,/turf/simulated/floor/plating,/area/maintenance/firstdeck/forestarboard) "aeZ" = (/turf/simulated/wall/r_wall,/area/hangar/three) "afa" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/hangar/one) @@ -264,8 +268,13 @@ "afd" = (/obj/effect/floor_decal/borderfloorblack/corner{dir = 8},/obj/effect/floor_decal/industrial/danger/corner{dir = 1},/turf/simulated/floor/tiled,/area/hangar/one) "afe" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport) "aff" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/shuttle/syndicate_elite/station) +<<<<<<< HEAD "afg" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport) "afh" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport) +======= +"afg" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/rack,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport) +"afh" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/binary/passive_gate{dir = 1; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/foreport) +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "afi" = (/obj/structure/closet/crate/engineering,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/turf/simulated/floor/plating,/area/construction/firstdeck/construction5) "afj" = (/turf/simulated/floor/tiled,/area/construction/firstdeck/construction5) "afk" = (/turf/simulated/floor/plating,/area/construction/firstdeck/construction5) @@ -761,8 +770,13 @@ "aoG" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/fpcenter) "aoH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/engineering{name = "Central Substation"; req_one_access = list(11,19,24,47)},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) "aoI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) +<<<<<<< HEAD "aoJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) "aoK" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) +======= +"aoJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) +"aoK" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d1 = 16; d2 = 0; icon_state = "16-0"},/obj/structure/railing{dir = 8},/obj/structure/railing,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "aoL" = (/obj/machinery/telecomms/bus/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcomm/chamber) "aoM" = (/obj/machinery/telecomms/processor/preset_one,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcomm/chamber) "aoN" = (/obj/machinery/telecomms/relay/preset/southerncross/d2,/turf/simulated/floor/tiled/dark{nitrogen = 100; oxygen = 0; temperature = 80},/area/tcomm/chamber) @@ -2058,8 +2072,13 @@ "aND" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) "aNE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) "aNF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) +<<<<<<< HEAD "aNG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/largecrate,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) "aNH" = (/obj/structure/closet/crate/large,/obj/random/tank,/obj/random/tank,/obj/random/tank,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) +======= +"aNG" = (/obj/random/obstruction,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) +"aNH" = (/obj/machinery/atmospherics/binary/passive_gate{regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/substation/firstdeck) +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "aNI" = (/obj/machinery/vending/assist,/turf/simulated/floor,/area/storage/tech) "aNJ" = (/obj/item/weapon/module/power_control,/obj/item/weapon/airlock_electronics,/obj/structure/table/steel,/turf/simulated/floor/plating,/area/storage/tech) "aNK" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/toolbox/electrical{pixel_x = 1; pixel_y = -1},/obj/item/clothing/gloves/yellow,/obj/item/device/t_scanner,/obj/item/clothing/glasses/meson,/obj/item/device/multitool,/turf/simulated/floor/plating,/area/storage/tech) @@ -2237,8 +2256,13 @@ "aQV" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) "aQW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) "aQX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = list(12,67)},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) +<<<<<<< HEAD "aQY" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) "aQZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) +======= +"aQY" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/portable_atmospherics/powered/scrubber,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) +"aQZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/binary/passive_gate{regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftstarboard) +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "aRa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) "aRb" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) "aRc" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/first_deck{c_tag = "First Deck - Aft Hallway Two"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/firstdeck/aft) @@ -3563,7 +3587,11 @@ "bqv" = (/obj/machinery/papershredder,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled/dark,/area/lawoffice) "bqw" = (/obj/structure/table/reinforced,/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/borderfloorblack,/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled/dark,/area/lawoffice) "bqx" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/obj/effect/floor_decal/borderfloorblack{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 6},/turf/simulated/floor/tiled/dark,/area/lawoffice) +<<<<<<< HEAD "bqy" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/plating,/area/maintenance/security_starboard) +======= +"bqy" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/binary/passive_gate{dir = 1; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/firstdeck/aftport) +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "bqz" = (/obj/structure/closet/wardrobe/grey,/obj/item/weapon/storage/backpack,/obj/item/weapon/storage/backpack,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/firstaid,/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/plating,/area/maintenance/security_starboard) "bqA" = (/obj/structure/closet,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/clothing/suit/storage/hazardvest/green,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/turf/simulated/floor,/area/maintenance/security_starboard) "bqB" = (/obj/machinery/atmospherics/pipe/manifold/visible{dir = 1},/turf/simulated/shuttle/wall/voidcraft/no_join,/area/shuttle/shuttle2/start) @@ -3767,7 +3795,7 @@ "bur" = (/obj/structure/extinguisher_cabinet{pixel_x = 28; pixel_y = 0},/obj/structure/closet/firecloset,/turf/simulated/floor/tiled,/area/engineering/atmos) "bus" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 5; icon_state = "intact"},/obj/machinery/door/firedoor/glass,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "atmoslockdown"; name = "Atmospherics Lockdown"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/atmos) "but" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/binary/pump{dir = 4; name = "N2O to Connector"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/atmos) -"buu" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/binary/pump/on{dir = 4; name = "Air to Supply"},/turf/simulated/floor/tiled,/area/engineering/atmos) +"buu" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/binary/passive_gate{dir = 1; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/security_starboard) "buv" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/monitoring) "buw" = (/turf/simulated/wall,/area/maintenance/substation/engineering) "bux" = (/turf/simulated/wall,/area/maintenance/engineering) @@ -4098,9 +4126,15 @@ "bAK" = (/obj/structure/cable{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/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering) "bAL" = (/obj/structure/cable{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/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/engineering) "bAM" = (/obj/structure/cable{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/industrial/warning{dir = 8},/turf/simulated/floor/plating,/area/maintenance/engineering) +<<<<<<< HEAD "bAN" = (/obj/structure/cable{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/item/inflatable/door/torn,/turf/simulated/floor/plating,/area/maintenance/engineering) "bAO" = (/obj/structure/cable{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/machinery/alarm{pixel_y = 22},/turf/simulated/floor/plating,/area/maintenance/engineering) "bAP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/plating,/area/maintenance/engineering) +======= +"bAN" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/atmospherics/binary/pump/on{dir = 4; name = "Air to Supply"; target_pressure = 301.325},/turf/simulated/floor/tiled,/area/engineering/atmos) +"bAO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{req_access = list(12)},/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/maintenance/security_starboard) +"bAP" = (/turf/simulated/shuttle/wall,/obj/structure/shuttle/engine/propulsion/burst{dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape_pod6/station) +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "bAQ" = (/obj/random/obstruction,/turf/simulated/floor/plating,/area/maintenance/engineering) "bAR" = (/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) "bAS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/fore) @@ -6287,9 +6321,15 @@ "cqP" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/starboard) "cqQ" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = list(5,12)},/turf/simulated/floor/plating,/area/maintenance/medbay_fore) "cqR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/plating,/area/maintenance/medbay_fore) +<<<<<<< HEAD "cqS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay_fore) "cqT" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/maintenance/medbay_fore) "cqU" = (/obj/machinery/atmospherics/valve/digital/open{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay_fore) +======= +"cqS" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 4; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/research) +"cqT" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/research) +"cqU" = (/obj/machinery/atmospherics/pipe/simple/hidden/red,/obj/machinery/atmospherics/valve/shutoff{dir = 4; name = "Research automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/research) +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "cqV" = (/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay_fore) "cqW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/medbay_fore) "cqX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/medbay_fore) @@ -6797,7 +6837,11 @@ "cAF" = (/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/steel,/area/construction/seconddeck/construction1) "cAG" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor/plating,/area/maintenance/apmaint) "cAH" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/visible/universal{dir = 4},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/apmaint) +<<<<<<< HEAD "cAI" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/plating,/area/maintenance/apmaint) +======= +"cAI" = (/obj/machinery/light/small{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/binary/passive_gate{regulate_mode = 0; unlocked = 1},/turf/simulated/floor,/area/maintenance/engineering) +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "cAJ" = (/obj/machinery/conveyor{dir = 1; id = "packageSort1"},/turf/simulated/floor/plating,/area/quartermaster/delivery) "cAK" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/conveyor_switch/oneway{id = "packageSort1"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/delivery) "cAL" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/tiled,/area/quartermaster/delivery) @@ -6924,7 +6968,7 @@ "cDc" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/item/weapon/tool/crowbar,/obj/item/weapon/tool/crowbar,/obj/item/weapon/storage/toolbox/mechanical,/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/structure/table/rack{dir = 8; layer = 2.6},/turf/simulated/floor/tiled/dark,/area/medical/medbay_emt_bay) "cDd" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "exam_window_tint"},/turf/simulated/floor/plating,/area/medical/exam_room) "cDe" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/medical{name = "Examination Room"; req_access = list(5)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/medical/exam_room) -"cDf" = (/obj/structure/table/glass,/obj/machinery/recharger{pixel_y = 0},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Medical Break Area"; dir = 4},/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/white,/area/medical/reception) +"cDf" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 4; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/engineering) "cDg" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) "cDh" = (/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) "cDi" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/paleblue{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/reception) @@ -7025,7 +7069,7 @@ "cEZ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor,/area/maintenance/cargo) "cFa" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) "cFb" = (/obj/structure/table/standard,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 36; pixel_y = 0},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloorwhite{dir = 4},/obj/effect/floor_decal/corner/paleblue/border{dir = 4},/turf/simulated/floor/tiled/white,/area/medical/medbay_primary_storage) -"cFc" = (/obj/structure/table/rack,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/defib_kit/loaded,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/dark,/area/medical/biostorage) +"cFc" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway) "cFd" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/medical/biostorage) "cFe" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 36; pixel_y = 0},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/medical/biostorage) "cFf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/paleblue/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/medbay2) @@ -7732,8 +7776,13 @@ "cSy" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/hallway/primary/seconddeck/aft) "cSz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Central Access"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft) "cSA" = (/turf/simulated/wall,/area/crew_quarters/coffee_shop) +<<<<<<< HEAD "cSB" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/medbay) "cSC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/plating,/area/maintenance/medbay) +======= +"cSB" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/engineering) +"cSC" = (/obj/machinery/atmospherics/binary/passive_gate{regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/research) +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "cSD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/maintenance/medbay) "cSE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay) "cSF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/maintenance/medbay) @@ -8159,10 +8208,10 @@ "daJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "daK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "daL" = (/obj/structure/disposalpipe/sortjunction/flipped{dir = 4; name = "Bar"; sortType = "Bar"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) -"daM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/glass{name = "Bar"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria) +"daM" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/binary/passive_gate{dir = 4; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/medbay_fore) "daN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "daO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) -"daP" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/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/crew_quarters/coffee_shop) +"daP" = (/obj/machinery/atmospherics/binary/passive_gate{regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) "daQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "daR" = (/obj/structure/bed/chair/wood,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "daS" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/item/device/radio/intercom{dir = 4; name = "Station Intercom (General)"; pixel_x = 21},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) @@ -8207,10 +8256,10 @@ "dbF" = (/obj/structure/bed/chair/wood,/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "dbG" = (/obj/structure/bed/chair/wood,/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "dbH" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) -"dbI" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Bar"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria) +"dbI" = (/obj/structure/table/glass,/obj/machinery/recharger{pixel_y = 0},/obj/effect/floor_decal/corner/paleblue/diagonal{dir = 4},/obj/machinery/camera/network/medbay{c_tag = "MED - Medical Break Area"; dir = 4},/turf/simulated/floor/tiled/white,/area/medical/reception) "dbJ" = (/obj/structure/bed/chair/wood,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "dbK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) -"dbL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/coffee_shop) +"dbL" = (/obj/structure/table/rack,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/item/weapon/storage/toolbox/emergency,/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/dark,/area/medical/biostorage) "dbM" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "dbN" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/camera/network/civilian{c_tag = "CIV - Kitchen"; dir = 4},/obj/structure/table/marble,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "dbO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) @@ -8343,7 +8392,7 @@ "del" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "dem" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "den" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) -"deo" = (/obj/machinery/door/airlock/glass{name = "Kitchen"; req_access = list(28)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/kitchen) +"deo" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 1; regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/bar) "dep" = (/obj/machinery/vending/cigarette,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "deq" = (/obj/machinery/vending/snack,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "der" = (/obj/machinery/computer/arcade,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) @@ -8369,7 +8418,7 @@ "deL" = (/obj/machinery/status_display,/turf/simulated/wall,/area/crew_quarters/cafeteria) "deM" = (/obj/structure/sign/directions/cryo,/turf/simulated/wall,/area/crew_quarters/coffee_shop) "deN" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) -"deO" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/coffee_shop) +"deO" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/binary/passive_gate{dir = 8; regulate_mode = 0; target_pressure = 4500; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/medbay) "deP" = (/obj/structure/disposalpipe/segment,/obj/structure/toilet,/obj/effect/landmark{name = "blobstart"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) "deQ" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/green/bordercorner{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "deR" = (/obj/structure/closet/crate/hydroponics,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/bar) @@ -8397,7 +8446,7 @@ "dfn" = (/obj/machinery/hologram/holopad,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "dfo" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/lime/bordercorner{dir = 4},/turf/simulated/floor/tiled/hydro,/area/hydroponics) "dfp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) -"dfq" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Holodeck Control"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria) +"dfq" = (/obj/machinery/atmospherics/binary/passive_gate{regulate_mode = 0; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/bar) "dfr" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/paleblue/border{dir = 6},/obj/structure/closet/secure_closet/medical_wall{name = "defibrillator closet"; pixel_y = -31},/obj/item/device/defib_kit/loaded,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore) "dfs" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft) "dft" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/barrestroom) @@ -8427,7 +8476,7 @@ "dfR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Hydroponics"; req_access = newlist(); req_one_access = list(35,28)},/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/hydroponics) "dfS" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/hydro,/area/hydroponics) "dfT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) -"dfU" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Holodeck Control"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria) +"dfU" = (/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/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass{name = "Cafeteria"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria) "dfV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/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},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "dfW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/hallway/primary/seconddeck/aft) "dfX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/navbeacon/patrol{location = "CIV"; next_patrol = "CH7"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft) @@ -8651,7 +8700,9 @@ "dkh" = (/obj/structure/table/glass,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/dark,/area/chapel/main) "dki" = (/obj/machinery/door/firedoor,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/chapel/main) "dkj" = (/turf/simulated/floor/airless,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/cryo/station) +"dkk" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/glass{name = "Coffee Shop"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/coffee_shop) "dkl" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = list(12,25,27,28,35)},/turf/simulated/floor/plating,/area/library) +"dkm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Cafeteria"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria) "dkn" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/item/weapon/dice/d20,/obj/item/weapon/dice,/turf/simulated/floor/wood,/area/library) "dko" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/hydro,/area/rnd/xenobiology/xenoflora) "dkp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/library) @@ -8693,6 +8744,7 @@ "dkZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/library) "dla" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/wood,/area/library) "dlb" = (/obj/structure/table/woodentable,/obj/item/device/tape/random,/obj/item/device/taperecorder,/turf/simulated/floor/wood,/area/library) +"dlc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Coffee Shop"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/coffee_shop) "dld" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/folder/yellow,/obj/item/weapon/packageWrap,/turf/simulated/floor/wood,/area/library) "dle" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/carpet,/area/library) "dlf" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/weapon/storage/briefcase{pixel_x = -2; pixel_y = -5},/obj/item/weapon/storage/briefcase{pixel_x = 3; pixel_y = 0},/obj/machinery/camera/network/civilian{c_tag = "CIV - Library Office"; dir = 2},/obj/machinery/alarm{pixel_y = 23},/turf/simulated/floor/carpet,/area/library) @@ -8744,6 +8796,8 @@ "dlZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main) "dma" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/chapel/main) "dmb" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -32; pixel_y = 30},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer) +"dmc" = (/obj/machinery/door/airlock/glass{name = "Kitchen"; req_access = list(28)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/kitchen) +"dmd" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/glass{name = "Coffee Shop"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/coffee_shop) "dme" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = list(12,25,27,28,35)},/turf/simulated/floor/plating,/area/maintenance/bar) "dmf" = (/obj/machinery/bookbinder{pixel_y = 0},/turf/simulated/floor/wood,/area/library) "dmg" = (/obj/machinery/light,/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/library) @@ -9765,6 +9819,7 @@ "dFI" = (/obj/machinery/atmospherics/binary/pump/on{dir = 1; target_pressure = 200},/obj/structure/largecrate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "dFJ" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/forestarboard) "dFK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/thirddeck/foreport) +"dFL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass{name = "Cafeteria"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria) "dFM" = (/obj/machinery/computer/message_monitor,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/bluegrid,/area/ai/ai_server_room) "dFN" = (/obj/structure/bed/chair/office/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai/ai_server_room) "dFO" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/ai/ai_server_room) @@ -9833,9 +9888,15 @@ "dGZ" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/machinery/light_switch{pixel_x = -36; pixel_y = -6},/obj/machinery/button/windowtint{id = "hopquarters"; pixel_x = -36; pixel_y = 6},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop/quarters) "dHa" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop/quarters) "dHb" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue_hop,/obj/item/weapon/pen/multi,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 32; pixel_y = 0},/turf/simulated/floor/carpet,/area/crew_quarters/heads/sc/hop/quarters) +<<<<<<< HEAD "dHc" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/machinery/power/sensor{name = "Powernet Sensor - Command Subgrid"; name_tag = "Command Subgrid"},/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/maintenance/substation/command) "dHd" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal,/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/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor,/area/maintenance/substation/command) "dHe" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/alarm{dir = 8; pixel_x = 22; pixel_y = 0},/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor,/area/maintenance/substation/command) +======= +"dHc" = (/obj/random/obstruction,/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/maintenance/research) +"dHd" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/airlock/glass{name = "Cafeteria"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/cafeteria) +"dHe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/engineering) +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "dHf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "dHg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) "dHh" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/thirddeck/central) @@ -10282,7 +10343,7 @@ "dPG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "dPH" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/obj/machinery/camera/network/command{c_tag = "COM - Station Director's Office"; dir = 2},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "dPI" = (/obj/structure/table/wooden_reinforced,/obj/machinery/photocopier/faxmachine{department = "Captain's Office"},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) -"dPJ" = (/obj/random_multi/single_item/captains_spare_id,/obj/machinery/light{dir = 1},/obj/item/modular_computer/console/preset/command,/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) +"dPJ" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/machinery/power/sensor{name = "Powernet Sensor - Command Subgrid"; name_tag = "Command Subgrid"},/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/binary/passive_gate{regulate_mode = 0; unlocked = 1},/turf/simulated/floor,/area/maintenance/substation/command) "dPK" = (/obj/machinery/computer/communications,/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "dPL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/meter,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) "dPM" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/maintenance/thirddeck/aftstarboard) @@ -10555,6 +10616,7 @@ "dUT" = (/obj/machinery/alarm{dir = 1; pixel_y = -22},/obj/effect/floor_decal/corner/paleblue/border,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/port) "dUU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/sortjunction{dir = 8; icon_state = "pipe-j1s"; name = "Medbay"; sortType = "Medbay"},/turf/simulated/floor/tiled/white,/area/medical/medbay2) "dUV" = (/obj/structure/lattice,/obj/structure/cable/green{d1 = 32; icon_state = "32-1"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 1},/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{dir = 1},/turf/simulated/open,/area/maintenance/substation/cargo) +"dUW" = (/obj/machinery/light{dir = 1},/obj/item/modular_computer/console/preset/command,/obj/random_multi/single_item/captains_spare_id,/turf/simulated/floor/wood,/area/crew_quarters/heads/sc/sd) "dUZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{pixel_y = 24},/obj/effect/floor_decal/borderfloorwhite{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/structure/table/rack,/obj/item/weapon/storage/toolbox/emergency,/obj/random/medical/lite,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/aft) "dVa" = (/obj/structure/table/glass,/obj/item/device/radio{frequency = 1487; icon_state = "med_walkietalkie"; name = "Medbay Emergency Radio Link"},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/machinery/vending/wallmed1{name = "NanoMed Wall"; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/borderfloorwhite{dir = 9},/obj/effect/floor_decal/corner/paleblue/border{dir = 9},/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/aft) "dVb" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/paleblue/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/paleblue/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) @@ -10960,11 +11022,13 @@ "ecR" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/red,/turf/simulated/floor/plating,/area/engineering/foyer) "ecS" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/button/windowtint{id = "bsquarters"; pixel_x = 36; pixel_y = 6},/obj/machinery/light_switch{pixel_x = 36; pixel_y = -6},/turf/simulated/floor/carpet/blue,/area/crew_quarters/heads/sc/bs) <<<<<<< HEAD +<<<<<<< HEAD ======= "ecT" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/binary/passive_gate{dir = 4; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/medbay_fore) +======= +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain "ecU" = (/obj/machinery/atmospherics/valve/shutoff{dir = 4; name = "Medical automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/medbay_fore) -"ecV" = (/obj/machinery/atmospherics/binary/passive_gate{unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/apmaint) "ecW" = (/obj/machinery/atmospherics/valve/shutoff{name = "Cargo automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/apmaint) "ecZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/maintenance/bar) "eda" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/maintenance/bar) @@ -10972,7 +11036,6 @@ "edc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/bar) "edd" = (/obj/machinery/atmospherics/valve/shutoff{name = "Deck 2 Port automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/bar) "ede" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/alarm{dir = 8; pixel_x = 22; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/bar) -"edf" = (/obj/machinery/atmospherics/binary/passive_gate{dir = 1; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/bar) "edg" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/bar) "edh" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/bar) "edi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/maintenance/bar) @@ -10987,16 +11050,13 @@ "edr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/valve/shutoff{dir = 4; name = "Deck 2 Aft automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/medbay) "eds" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/plating,/area/maintenance/medbay) "edt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/plating,/area/maintenance/medbay) -"edu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/binary/passive_gate{dir = 8; target_pressure = 4500; unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/medbay) "edv" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/plating,/area/maintenance/medbay) "edw" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/maintenance/bar) -"edx" = (/obj/machinery/atmospherics/binary/passive_gate{unlocked = 1},/turf/simulated/floor/plating,/area/maintenance/bar) "edy" = (/obj/machinery/atmospherics/valve/shutoff{name = "Civilian automatic shutoff valve"},/turf/simulated/floor/plating,/area/maintenance/bar) "edz" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor,/area/maintenance/substation/command) "edA" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor,/area/maintenance/substation/command) "edB" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply{dir = 8},/obj/structure/disposalpipe/down{dir = 8},/obj/structure/cable{d1 = 32; d2 = 2; icon_state = "32-2"},/obj/structure/railing,/turf/simulated/open,/area/maintenance/substation/command) "edC" = (/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/power/terminal,/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor,/area/maintenance/substation/command) -"edD" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/obj/machinery/power/sensor{name = "Powernet Sensor - Command Subgrid"; name_tag = "Command Subgrid"},/obj/machinery/light/small{dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/atmospherics/binary/passive_gate{unlocked = 1},/turf/simulated/floor,/area/maintenance/substation/command) "edE" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/alarm{dir = 8; pixel_x = 22; pixel_y = 0},/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/substation/command) "edF" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/valve/shutoff{name = "Deck 3 automatic shutoff valve"},/turf/simulated/floor,/area/maintenance/substation/command) "edG" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Command Substation Bypass"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/substation/command) @@ -11441,9 +11501,9 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabgvbgvbgvbgvbgvaaabqCbqDbqEbmMbmNbmTbmTbqJbqGbqIbqNbqObqKbqMbuobnLbmNbmTbmUbqPbqPbkAaaaaaaaadaaaaaaaaaaaaaaablUbmXbmYbmZblWblWbnablWbjrbnbbncbndbnebnfbngbnhbnibnjbnkbnlbnmbnnbnobnpbnqbnrbnobnsblkebobnubnvbnwbnxbnybkvbnzbnAbmAbnBbmAbnCbmCbnDbnEbkybkybkybkybkyaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafbhgaafaafaafaafaaaaaaaaaaafaafaafaafbhhaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaafaaaaafaaaaaabkHbrAbmTbmMbsWbmTbmTbmTbmTbrCbmTbrGbrFbrFbrJbqLbrHbrIbpTbrKbrKbkHaaaaaaaafaaaaaaaaaaaaaaablUblUbnUebpbnWbnXbnYblVbjrbnZboabmbbobbocbkZbodbmfboebofbjrbogbohboibojbokbolbombonboobkqbopboqborbosbotbkvboubovbowboxbmyboybmCbozboAboBebqboDboEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhgaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadKaafaafaafbgvbgvbgvbgvbgvaaabkHbrAbmTbmMbsWbmTbmTbsTbsTbqFbmTbsXbsZbsUbmUbnLbsWbqJbmTbsVbsVbkHaaaaaaaafaaaaaaaabaaaaaaaaaboYboZbpablYbpbbnYblVbpcbpdbpebpfbpgbphbkZbpibkZbpjbpkbjrbjubjubjubplbpmbpnbjubpobjubkqbppbprbpqbpsbptbkvbpubpvbmAbpwbmxbpxbmCbADbpzbpAbpBbpCboEaaaaaaaaaaabaagaaaaaaaaaaaaaaaaafabcaadaadaadaadaadaagaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhgaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaabgvbvmcaPbvlboJboKbtbbtcboLbrBbtdbmTbmTbtgbtfbqFbmTbrDbmLbuobmUbnLbsWbmTbthbpWbpWbpWbpWbpWaafaaaaaaaaaaaaaaaaaaboYboZbpXbpYbpZbqablVbjrbqbbqcbqdbqebqfbqgbqhbqibqjbqkbjrbqlbjubqmbqnbqobqpbqmbqqbjubqrbkqbkqbkqbkqbkqbkvbqsbqtbqubqvbqwbqxbmCbANbqzbqAbZLbZLboEaaaaaaaaaaaaaadaaaaaaaaaaaaaafaafaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhgaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaabgvbvmcaPbvlboJboKbtbbtcboLbrBbtdbmTbmTbtgbtfbqFbmTbrDbmLbuobmUbnLbsWbmTbthbpWbpWbpWbpWbpWaafaaaaaaaaaaaaaaaaaaboYboZbpXbpYbpZbqablVbjrbqbbqcbqdbqebqfbqgbqhbqibqjbqkbjrbqlbjubqmbqnbqobqpbqmbqqbjubqrbkqbkqbkqbkqbkqbkvbqsbqtbqubqvbqwbqxbmCbuubqzbqAbZLbZLboEaaaaaaaaaaaaaadaaaaaaaaaaaaaafaafaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhgaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaabgvbwucaPbBUbpFbpGbtibtjbwybunbsWbmTbsXbrIbrIbqHbuqbsYbupbsYbpTbnLbsWbmTburbpWbqQbqRbqSbpWbqTbqUbqUaaaaaabqVblUbqWbqXbqYbqZbrabrbbrbbrbbrbbrbbrbbrcbrbbrbbrbbrbbrbbrbbrbbrbbrbbrdbrebrfbrfbrgbrhbribribrjbrkbrlbrmbrnbmCbrobrpbrqbrobrobmCbmCbAObrsbrtbrubrvbrwbrxaafaafaafaadaaaaaaaaaaafaafaaaaaaaafaaaaaaaafaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaabhgaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafbgvbgvbgvbgvbgvaaabusbutbqEbmTbmNbmTbmUbmTbmTbuobmTbrDbmTbuobmTbrEbuubvnbvobvqbrLbrMbrNbrObrPebrbqUbqUaaabrRbrSbrTbrUbrVbrWbrXbrYbrZbsabsbbscbsdbsebsfbsgbshbsibsjbZNbslbZPbsnbsobspbsqbsrbssbsubsvbtPbswbsxbsybszbsAbsBbsCbsDbsEbsFbsGbsHbsIbsJbsKbsLbsMbsNbsObsPaaaaaaaaaabcaadaadaadaagaabaaaaaaaafaaaaaaaafaaaaafaafbsQaafaafaaaaaaaaaaaeaaaaaaaaaaaabhgaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafbgvbgvbgvbgvbgvaaabusbutbqEbmTbmNbmTbmUbmTbmTbuobmTbrDbmTbuobmTbrEbANbvnbvobvqbrLbrMbrNbrObrPebrbqUbqUaaabrRbrSbrTbrUbrVbrWbrXbrYbrZbsabsbbscbsdbsebsfbsgbshbsibsjbZNbslbZPbsnbsobspbsqbsrbssbsubsvbtPbswbsxbsybszbsAbsBbsCbsDbsEbsFbsGbsHbsIbsJbsKbsLbsMbsNbsObsPaaaaaaaaaabcaadaadaadaagaabaaaaaaaafaaaaaaaafaaaaafaafbsQaafaafaaaaaaaaaaaeaaaaaaaaaaaabhgaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaafaaaaafaaaaaabkHbrAbmTbmTbsWbmTbmUbtabvsbvpboQbvubvtbtebvxbvybvvbvwbvzbwvbtkbtlbtmbtnbtobtpbtqbqUaaabtrbrSbtsbttbtubtvbtwbtxbtybtzbtAbtzbtBbtzbtCbtDbtzbtEbtFbtGbtHbtIbtJbtKbtLbtMbtNbtObtQbtRbuTbtSbvkbtTbtUbtVbtWbtVbtXbtVbtYbtZbuabubbucbudbsLbuebufbsObugaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaabuhbuibujbukaaaaafaaabulaaaaafaaaaaaaagaaaaaaaaaaaaaaabhgaaaaaaaaaaafaaaaaaaaaaafaabaaaaaabhhaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabgvbgvbgvbgvbgvaaabkHbrAbmTbmTbsWbqJbnRbwxbuvbwwbwwbwAbwwbwzbuvbnLbsWbmTbwCbuwbuwbuwbuwbuwbuxbuybuzbqTbqTblUblUbuAbuBbuCbuDbuEbrbbuFbuGbuHbuGbuIbuJbuGbuKbuLbuHbuKbuMbuNbuObuPbuQbspbuRbuSbuUbuVbvXbvYbuWbuXbuWbuYbuWbuWbuWbuZbvabvbbvabuZbuZbvcbvdbrtbvebvfbrwbrwaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaabvgbvhbvhbvgbvgbvgbvibvjaaaaafaaaaaaaafaaaaaaaaaaaaaabbhgaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabhhaaaaaaaadabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafbgvbrybZMbrzboJboKboSbwDboLboQbwEbvrbwGboTbwwbwFbwJbwKbwHbwIbwwbwMbwLbmTbxRbuwbwNbvAbvBbuwbvCbvDbvEbvFbvGbvHbvIbvJbvKblUblUbvLbrbbvMbvNbvObvNbvPbrbbvQbuPbrbbvRbuPbrbbvSbuPbrYbvTbvUbvVbvWbxhbxjbzybxjbuWbwabwbbwcbwdbwebuWbwfbwgbwhbwibwjbuZbwkbvZbvZbwlbwmbwnbvgaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaabwobwpbwqbwrcaQcaQbwtbvjbvibvidmJaaaaafaaaaaaaaaaaaaaabhgaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaabhhaaaaaaaaaaafaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11451,10 +11511,10 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgvbgvbgvbgvbgvaaabqCbumbqEbzhbzfbzgbzjbAnbzibAqbArbAsbAocOGbzibnLbAtbAubBQbuwbAvbyibyjbuwbvCcgecozbuxbuxbuxbuxbuxbuxbuxbymbynbrbbyobvNbypbyqbvPbrbbyrbysbrbbyrbytbrbbyrbyubrbbyvbywbyxbxgbxhcnfcoUcJZbuWbyybyzbyAbyBbyCbuWbyDbxqbyEbxqbyFbuZbyGbxvbvZbvZbyHbvZbvZbvgbvgbvgbvgbvgbvgebsbyIbyJbyKbyKbyLbyMbyMbyLbyNbyOcqScqUcyVcqTbyTbxHbyUbyVbxIbxIaaaaaabhgaaaaaaaaaaafbyWbyXbyYbyZbzabyZbyWbzbbyWaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaabkHbzcbzdbBRbkAbkAbBTbBVbzkbuvbBWbzlbwwbuvbuvbDpbBYbDobqIbuwbuwbzmbuwbuwbuxcAIbzobzpbuxbzqbzrbzsbztbuxbymbynbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbzubzvbzwbzxbxhcOBdcSdfrbuWbzAbzBbzCbzDbzEbuWbzFbzGbzHbxqbzIbuZbzJbzKbzLbzMbzNbzNbzNbzNbzNbzNbzObzNbzNbzNbzNbzPbzQbzRbzSbzTbzUbzVbzWbyObyPcHvbyObzYbzZbAabAbbAcbAdbxIaaaaaabhgaaaaaaaaaaaabyWbAebFdbAfbAgbAhbyWbAibyWaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjaaaaaaaaabAjaaaaaaaaaaaaaaabAjaaaaaaaaabAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAkbAkbAkbAkbAkbAkbAkbAkbAkbAlbAmbDvbDqbApbETbFhbELbEMbAwbGFbGmbEMbAxbAybAzbAAbABbACbvCcKMbAEbAFbuxbDJbymbymbymbAGbAHbAIbwUbAJbAKbALbAMbwUbwUbwUbwUcNqcOFcQhcOEcOFcQibAQbuxbARbASbATbxhbxhbxhbxhbuWbAVbAWbAXbAYbAZbuWbBabBbbBcbBdbBebuZbBfbxibBgbBhbBibBjbBkbxibxibBlbBlbBlbBlbBlbBlbBlbBmbBnbBobBpbBqbBrbBrbBrbBrbBsbBsbBsbBsbBsbBtbBubBvbBwbBwbBxbBwbBxbBwbBxbBwbBwbBybBzbBAbBBbBCbyWbBDbyWbyWaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjaaaaaaaaabAjbAjbAjbAjbAjbAjbAjaaaaaaaaabAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaafaafaaaaaabBEbBFbBGbBHbAkbBIbBJbBKbBLbBMbBMbBNbAkbBObBPbIobGJbBSbJSbBSbIqbBSbLjbBXbJUbBZbCabCbbCcbCdbCebCfbvCbCgbzobChbuxbCibCjbymbymbuxbCkbClbymbCmbCnbuxbuxbCobuxbuxbCpcRncSBcSCcRocSBcSEbuxbuxbCsbCtbCubvZbvZbCvbyJbuWbCwbCxbuWbuWbuWbuWbuZbuZbCybuZbuZbuZbBfbxibCzbCAbBibwnbCBbCCbCDbBlbCEcaRbCGbCHbCIbBlbCJbCJbCKbCJbCJbBrbCLbCMebubBsbCObBsbCPbBsbCQbCRbCSbBwbCTbCUbCVbCVbCWbCXbCYbBwbCZbDabDbbDcbDdbDebDfbDgbyWaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjaaaaaaaaabAjbAjbAjbAjbAjbAjbAjaaaaaaaaabAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaafaafaaaaaabBEbBFbBGbBHbAkbBIbBJbBKbBLbBMbBMbBNbAkbBObBPbIobGJbBSbJSbBSbIqbBSbLjbBXbJUbBZbCabCbbCcbCdbCebCfbvCbCgbzobChbuxbCibCjbymbymbuxbCkbClbymbCmbCnbuxbuxbCobuxbuxbCpcRncSBcDfcRocSBcSEbuxbuxbCsbCtbCubvZbvZbCvbyJbuWbCwbCxbuWbuWbuWbuWbuZbuZbCybuZbuZbuZbBfbxibCzbCAbBibwnbCBbCCbCDbBlbCEcaRbCGbCHbCIbBlbCJbCJbCKbCJbCJbBrbCLbCMebubBsbCObBsbCPbBsbCQbCRbCSbBwbCTbCUbCVbCVbCWbCXbCYbBwbCZbDabDbbDcbDdbDebDfbDgbyWaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaabAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaadaadaaaaabaaaaaaaaabBEbDhbDhbDibAkbDjbDjbDjbDkbBMbDlbDmbAkbDnbNkbPTbLlbDrbDsbDtbCfbDuedNbDwecRbDubDybDybDzbDAbDBbDybuxbDCbDDbFebuxbuxbuxbDFbymbuxbCrbDGbDGbDHbDGbDGbDIbymbImbuxbDKbymbDLbuxbvFbymbCrbymbuxbDMbDNbDObvZbxibxibzzbDPbxibDQbAUbAUbAUbAUbBgbDRbDSbDTbDUbDVbDWbDXbDYbvZbDZbDZbDZbDZbEabBlbEbbEcbEdbEebEfbFMbEhebvbEjbEkbElbBrebwbEndgGbBsbEpbBsbEqbBsbBsbErbEsbEtbEubEvbCVbEwbExbEybEzbBwbEAbEAbEAbFUbEAbEAbEAbEAbEAbEAaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaabAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaagaadaadaadaagaafaaaaafaaaaaaaaaaaaaaaaaaaaabBEbECbEDbEEbAkbEFbEGbEGbEHbEGbEIbEJbAkbEKbNkedObENbEObEPbEQbERbESbOXbEUedPbEWbEXbEYbEZbFabFbbFcbuxbGSbGTbFfbFgcbEbuxbvGbvFbuxbFibDGbFjbFkbFlbDGbFmbFnbChbuxbzpbymbFobuxbvGbymbFpbFqbFrbFsbFtbFubFvbDTbFwbDTbFxbDTbFybDTbDTbDTbDTbFzbFAbFBbFBbFBbFBbFBbFBbFCbFDbDZbFEebxbFGbEabFHbFIbFJbFKbFLbFVbFMbFNbFObFPbEjbHxbKtebzebybFTbGbbGibFWbFXbFYbBsbFZbGabHybGcbGdbGebGdbGfbGgbGhbKrbGjbGkbGlbGpbGqbGnbGobJpbGrbGsaaaaaaaaaabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaabBEbGtbGubGvbAkbGwbEGbEGbGxbGybGzbGAbGBbGCbGDedRedQbEObGGbGHbERbGIbXNbGKedSbGMbEXbGNbGObGPbGQbGRbuxbGUbVfbuxbGVcbEbuxbAQbAQbuxbGWbDGbGXbFkbGYbDGbuxbuxbuxbuxbGZbGZbGZbuxbuxbuxbuxbuxbHabHbbHcbHdbHabvZbvZbvZbvZbvZbvibvibvibvZbvZbvZbvZbFBbHebHfbHgbHhbFBbHibHjbHkbHlbHmbHnbEabHobHpbEcbHqbHrbHsbEgbHtebBebCebAbFQbBrebFebDebEbBsbHCbHDbHEbHFbBsbHGbHHbBwbHIbHJbHKbHJbHKbHJbHLebGbHMbHNbHObHPbHQbHRbHSbHTbHUbHVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaaaaaaafaaaaaaaafaaaaaaaaaaaaaaaaaaaaabBEbGtbGubGvbAkbGwbEGbEGbGxbGybGzbGAbGBbGCbGDedRedQcFcbGGbGHbERbGIbXNbGKedSbGMbEXbGNbGObGPbGQbGRbuxbGUbVfbuxbGVcbEbuxbAQbAQbuxbGWbDGbGXbFkbGYbDGbuxbuxbuxbuxbGZbGZbGZbuxbuxbuxbuxbuxbHabHbbHcbHdbHabvZbvZbvZbvZbvZbvibvibvibvZbvZbvZbvZbFBbHebHfbHgbHhbFBbHibHjbHkbHlbHmbHnbEabHobHpbEcbHqbHrbHsbEgbHtebBebCebAbFQbBrebFebDebEbBsbHCbHDbHEbHFbBsbHGbHHbBwbHIbHJbHKbHJbHKbHJbHLebGbHMbHNbHObHPbHQbHRbHSbHTbHUbHVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaafaaaaaaaaaaaaaafaaabHWbHWbHWbHWbHWbHWbHWbHXbHXbBEbHYbHZbDibAkbIabIabIbbIcbIdbIebIfbAkbIgbIhbIibIjbIkbIlccMbCfbInedUbIpedTbIrbDybIsbItbIubIvbIwbIxbIxbIybIxbIxbIxbIxbuxbuxbuxbIzbDGbIAbIBbICbDGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIDbIEbIFbIGbIHbIIbIDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFBbIJbIKbILbILbIMbINbBqbDZbIObIPbIQbEabIRbISbITbIUbIVbIWbEgbEjebIbIXebHbIZbBrbBrbBrbBrbBsbJdbJebJfbJgbBsbJhbJibBwbBwbJjbJkbJlbJjbJmbJjbBxbJnbJobKFbJqbJrbJsbJtbJqbJubJvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafbHWbHWbJwbJxbJybJzbJAbHWbJBbJCbJDbJEbJFbJGbAkbIabIaebJbJIbJJbJKbJLbAkbJMbJNbJObJPbCfbERbJQbCfbJRedWbJTedVbJVbDybGNbJWbJXbJYbJZbIxbKabKbbKcbKdbKebIxbKfbKgbuxbCrbDGbKhbKibDGbDGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabIDbKjbKkbHcbKlbKmbIDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFBbFBbKnbKobKpbFBbKqbvZbEabDZbKzbDZbEabBlbEgbKsbOobKsbKubBlbKvbxIbKwbxIbKxbCJebLebKebKbKybBsbPEbBsbBsbBsbHGbKAebMbBwbBwbBwbBwbBwbBwbBwbBwbKBbKCbKDbKEbLkbKBbKGbKBbKHbKIbKJbKKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaafaafaafbKLbKMbKMbKMbKMbKNbKObKPbKQbKRbKSbKTbKUbHWbKVbKWbKXbKYbKZbBEbAkbAkbAkbAkbAkbAkbAkbAkbAkbLabLbbLcbLdbLebLfbLgbLhbLibOXbIpedXbLmbEXbLnbLobLpbLqbLrbLsbLtbLubLvbLwbLxbIxbLybLzbLAbCrbDGbDGbDGbDGaaaaaaaaaaaaaaaaaabLBbLBbLCbLCbLCbLBbLBbLDbLEbHcbLFbLGbLHbLHbIDbIDbIDbLHbLHaaaaaaaaaaaaaaaaaabFBbFBbFBbFBbFBbLIbBqbLJbLKbLLbLMbLNbLObLPbLQbLRbLSbLTbLUbLVbLWbLXbLYbLZbMabMbbMbbMbbMdbMebMfbMgbMhbMibMjbMkbMlbMmbMmbMnbMobMpbMmbMqbMrbJvbMsbMtbMubMvbMwbMxbMybMzbMAbMAbMBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11476,7 +11536,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaabVvbVwbVAbVwbVAbVwbVAbVwbVAbVwbVAbVwbVybVzbVEbVBbVCbVDbVBbXpbVBbVFbVGbVHbVIbBEbVJbVKbVLbVMbVNbVObQgbVPbTMbVQbVRbVSbVTbTRbVUbQkbVVbVWbVXbVYbVZbWabNjbWbbWcbWdbWebWfbWgbWhbWibWjbUhbWkbWlbWmbWnbWobWpbWqbStbWrbymbCrbWsbGZaaaaaabLBbLBbWtbQJbSwbWubWvbWwbWxbWybWxbWxbWzbWAbKjbWBbWCbWDbWEbWDbWFbWGbWDbWDbWHbUHbSMbNEbWIbLHbLHaaaaaabvibUKbxibWJbPvbWKbWLbWMbUPbWNbPvbYxbxHcfqbxHbPCbPCbWPbWQbWRbWSbVabWTbWUbWVbWWbWXbPCbWYbWZbXabXbbVjbXcbTobXdbPFbXebXfbXgbPIbXhbBvbKBbVrbXibXjbXkbXlbXmbXnbVubGsaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaabMCbKMbKMbKMbKMbKMbKMbKMbKMbKMbKMbKMbVybXoccAbXqbXrbXsbXtbXrbXsbXubXvbXwbXxbBEbXybXzbKZbDibXAbXBbQgbXCbTMbTObXDbXEbTObTRbXFbQkbXGbXHbXIbXJbXKbXLbXMbXNbXObGLbXPbUcbQwbXQbXRbXRbXSbQwbStbXTbXUbXVbXWbXXbStbWrbymcWTbDLbGZaaaaaabLBbXYbXZbYabYbbYcbWwbWwbYdbYebYfbWwbYgbWAbWAbYhbWDbWDbYlbYjbYkbZOcbebWDbWDbYnbYobYpbYqbYrbLHaaaaaabvidGFdGGcvCbPvbYtbYubYubYvbYwbUScbWbYybYzbYAbYBbRjbYCbYDbYDbYDbYEbYFbYFbYGbYHbYFbYIbYJbYKbYLbYMbTobTobTobYNbPFbYObYPbYQbPIbRDbREbKBbYRbKBbKBbKBbKBbKBbKBbKBbKBbYSbYSaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaabKLbVibKLbVibKLbVibKLbVibKLbVibKLbViaadbYTbYUbYVbYWbYXbYVbYWbYXbXubYYbYZbZabBEbZbbZcbZbbDibZdbZebQgbZfbZgbZhbZibXEbZhbZjbZkbQkbZlbZmbZnbZobZpbZqbSibOXbEVbEVbSlbZrbZsbQwbQwbQwbQwbZtbStbZubStbZvbStbStbStbuxbymcWTbZwbuxaaaaaabLCbZxbZybZzbZAbZBbZCbZDbZEbZFbZGbWwcbIcbIbZIbZJbWDcbGcgpcdfcdgcbHcbJceJbWDbZQbZRbZSbYqbZTbIDaaaaaabvZdGHdHcbvZbPvbZUbZVbZWbZWbZXbZYbZZcaacabcaccadcaecafcagcagcagcahcaicajcakcalcambYIcancaocapcaqbPFcarcascatbPFcaucavcawbPIbRDbREcaxcaybGEcaAcaBcaCcaDcaEcaFcaGcaHcaIcaIcaHcaHcaHcaHcaHaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabVvbVwbVAbVwbVAbVwbVAbVwbVAbVwbVAbVwbVycaJbTDcaKbYWbYXbYVbYWbYXbXucaLcaMcaMcaMcaMcaMcaMcaMcaNcaObQgdxCdzedxlcaScaTcaUcaVcaWbQkbQkcaXbQkcaYcaZbQkcbacbbbEVcbccbdbQuczOcbfcbgcbhcbicbjbStcbkbStcblbStcbmcbncbobymcWTbymbuxaaaaaabLCcbpcbqcbrcbscbtcbuebPcbwcbxcbycbzcbAcbBcbCcbDbWDceKceLcgocgqceMceNchTcbKcbLcbMcbNcbOcbPbIDaaaaaabvZdGHdHdcbRbPvbPvcbScbTcbUcbVbUSdmbcbXcbYcbZccaccbcccccdebRebQccgcaicchcciccjcckbYIbPFcclbPFbPFbPFbPFbPFbPFbPFbPIbPIbPIbPIccmccncaxccoccpccqccrccscctcaCcaFcaFcaHccuccvccwcaHccxccycaHcaHaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabVvbVwbVAbVwbVAbVwbVAbVwbVAbVwbVAbVwbVycaJbTDcaKbYWbYXbYVbYWbYXbXucaLcaMcaMcaMcaMcaMcaMcaMcaNcaObQgdxCdzedxlcaScaTcaUcaVcaWbQkbQkcaXbQkcaYcaZbQkcbacbbbEVcbccbdbQuczOcbfcbgcbhcbicbjbStcbkbStcblbStcbmcbncbobymcWTbymbuxaaaaaabLCcbpcbqcbrcbscbtcbuebPcbwcbxcbycbzcbAcbBcbCcbDbWDceKceLcgocgqceMceNchTcbKcbLcbMcbNcbOcbPbIDaaaaaabvZdGHcSCcbRbPvbPvcbScbTcbUcbVbUSdmbcbXcbYcbZccaccbcccccdebRebQccgcaicchcciccjcckbYIbPFcclbPFbPFbPFbPFbPFbPFbPFbPIbPIbPIbPIccmccncaxccoccpccqccrccscctcaCcaFcaFcaHccuccvccwcaHccxccycaHcaHaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafbVvcczcdQcczcdQcczcdQcczcdQcczcdQcczbVyccBbTDccCbYWccDccEbYWccDbXuccFcaMccGccHccIccJccKcaMbXAccLcaWcaWcaWcaWcaWcaWcaWcaWcaWcCibQkbQkbQkbQkbQkbQkccNccObDxccPccNccQccQccQccQccQccQccQccRccRccRccRbStccSccTbuxccUdHeccWbuxaaaaaabLCccXccYccZcdacdbbWwbWwbWwbWwbWwbWwcdccddcddcdebWDbWDbWDclubWDchUbYjcnxbWDcdhcbMcdicbOcdjbIDaaaaaabvZdHxdHzcbQcdlbPvbPvbPvbPvbPvbPvcdmcipcdocipcdmbPCbPCbPCbPCbPCbPCbYIcdpcdqcdqcdrbYIcdscdscdscdtcducdvcdwcdxcdycdAcgUebVebSebTcdDcdEcrWcdGcdHccrccscdIcaCcdJcaFcdKcdLcdMcdNcaIcdOcdMcdPcaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabMCcdRbMCcdRbMCcdRbMCcdRbMCcdRbMCcdRaafaafbTDcehcdScdTcdUcdVcdTcdWcdXcdYcdZceacebceccedceebXAcefcegcfEceicejcekcekcekcekcekcekcekcekcekcelcemcenceocepceqceqcerbuxcescescetbDLceubymbAQbAQbvFbvGbuxcevbuxbuxbymcWTcewbuxaaaaaabLBcexccYbQJceycezceAceBceCceDceEceFceGceHceHceIceHceHceHdcybWDbYjcnydzAbWDbNEceObNEcbObNGbLHaaaaaabvZdIcdILceQceQceRceSbxiceTceUbvZceVceWceXceWceYceZcfacfbcfccfdcfebYIbYIcffcfgbYIbYIcfhcficficfjcfkcflcfmcfmcfmcdvebYbxHebWebXbOncoHcfrcfscftccrccsccscdIcdIcaFcaHcfucfvcfwcfxcfycfzcfAcfBcfCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaabTDcfDbXrcfFciGcfGcfHbXucfIcaMcaMcaMcaMcfJcfKcfLcfMcfNcfOcfOcfPcfQcfRcfRcfRcfRcfRcfRcfRcencencencfScfTcfUcfVcfWcfXcfYcfZcgacgbcgacgacgacgacgacgccgccgccgccgdcgccgccgcdINcgfbuxbLCbLCbLBcggccYcghcgicgjcgkcglcglcgmceEcgnbWAbWAbWAbWAbWAbWAbWAcgnbWEdMrecFecGbWDcgrcgscgtcgucgvbLHcgwcgwbvZdJCdJEbAUbCCbCDcgxbxicgybxicgzcgAcgBcgCcgDcgAcgEcfacgFcgGcgHcgIcgJcgKcgLcgMcgNcgNcgOcdtcdtcdtcdtcdtcdtcdtcfmcdvcgPbxHcgQcgRcgScaxcgTcvecgVccrccscdIcgWcgXcaFcaHcgYcgZchacaHcaIchbcaIcaHcaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11485,6 +11545,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafciybTDcizciAciBciCciDciEciFcmCciHciIciJciKciLciMciNciOciPciQciRcfOciSciTcfRchuchuchuchuchuciUciVciWciXciYciZcjacjbcjccjdcjecjfcjgdVxcjdcjhcjicjbcjjcjkcjlcjmcjbcjncjociWcjpcjqcjrcjscjtcjucjvbUwbUwcjwcjxcjycjzcgkceEceEceEcdcbWAchRchRchRchRchRbWAcgnbWAdxoebUbWDciacjAcjBcjCcjDcjDebZcjFcjGcjHcjIcjJcjKcjLcjMcjNcjOcjPcjQcjRcjNcjOcjScjTcjUcjVcjWcjXcjTcjYcjZckaecacijckcckdckeckfckgciociociociociocdtckhcdvckickjckkcklcaGckmcknckockpcaCckqckrcaHckscktcaHckueccecbecbecbcopcdMckvckwcaIaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaackxckyckzckAckBckCckDckEckFckGckHckIckJckKckLckMchnbLgckNcfOcfOckOcencfRchuchuchuchuchuckPckQckRckSckTckUckVckWckXckWckYckUckZckUckUclaclbckUckUclccldcledhndhpdhqclhclicljclkcllclmcllcllcllcllcllclncloclpbYhclqclrceHclsbWAchRchRchRchRchRbWAcltbZJecJclvclwclxclyclzclAclAclAclAclAclBclCclDclEclFclGclHclIclHclHclJclKclHclIclLclHclMclHclHclNclHclHclOclPclJclQclRclSecdclUclVciociociociociocdtclWcdvclXclYclZcmacmbcmccmdcmecmfcmgcmhcmicmjcmkcmlcmmcmncmocmpcmqcmrcmscmtcdMcmucmvaafaafaafaadaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaaabTDcmwciAcmxcmycmzcmAcmBcrAcmDcmEcmFcmGcmHcmIcmJcmKcfOcfOcfOcmLcmMcmNcfRchuchuchuchuchucmOcmPciWciXcmQcmRcmScmTcjccmUcmVcmWcmXchCdhscmYcmZcmTcnacnbcnccndcngdhSdiqcnhcnicnjcnkcnlcnmcnncnobUwbUwcnpcnqcnrcnsbWAcntcnucddcddbWAchRchRchRchRchRbWAcnvcnwbZJecKbWAcnzcnAcnBcnCcnDcnDcnEcnFcnGcnHcnIcnJcjKcjLcjPcnKcjPcjPcnLcnMececnOcnPcnQdVycnRcnScnTcnLcnRcnUcnVcnWcnXckcckdcnYcnZcoaciociociociociocdtcobcoccaGcodcoecofcaGcogcohcogcoicojcokcolcaHcomconcaHcoocopcoqcdMcorcgZcdMcoscotcaIaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +<<<<<<< HEAD aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaabTEbTDchcchcbTDcoucovcowbXucoxchhcoycozcoAcoBcoCcoDcoEcoFcoGcmLcrQcrOcfRchuchuchuchuchuchvcoJcoKcencencoLchEcoMchCcoNcoOcoPcoPcoPcoPcoPcoPcoQcoQcoRcoScoQdirdwgdwqditcoTcoVcoWchGcoXcnsbLBcoYchKchLcoZchNbLBbWAcgncpacpbcpcbWAchRchRchRchRchRcpdcpdcpecpdcpdcpdcpdcpfchWchVchXcpgchZcphcpiciccpjcpkcpkcpkcplcpmcpncpncpncpncpncpocpncpncpncpncpncpncppcpqcprcnVcpsciecptcgNcpuciecinciociociociociocdtcpvcdvcaGcpwcpxcpycpzcpzcpzcpAcpzcpBcpzcpzcaHcaHcaHcaHcpCechecfecgeciecjcpIcpJcaHcaHaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaabTDcpKcpLcpMcpNchecmDbXucpOcpPcpPcpQcpPcpRcpScpPcoEcmLcmLcmLcpUcpTcfRcfRcfRcfRcfRcfRcfRcencencencpVcpWcpXcpYcpZcqacpXcqbcqccqdcqecqfcqgcqhcqicqjcqkcqlcoQdwTdwWdwTdwUcqncqocoVbLCbLCcqpcqqcqrcqscqtcqubWzcqvcqwcqxcqxcqxcqycqycqzcqAcqBcqpcpdcqCcqDcqEcqFcqGcpdcqHcqIcjCcqJcqKchZcgwcgwcpkcqLcqMcqNcqOcqPcqPcqQcqRcqScqTcqUcqVcqWcqXcqYcqZcracracrbcrccrdcrecrfcrgcrhcrhcrhcricdtcdtcdtcdtcdtcdtcdtcfmcdvcrjcpwcrkcrlcrmcrncrocrpcrqcrrcrscrtcrucrvcrvcaHcrwcgZcrxcaHcaIcrycaIcaHcaHaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabKLbVibKLbVibKLbVibKLbVibKLbVibKLbViaafaafbTDcrzbXrctqcrBcrCcrDcrEcrFcrGcrHcrIcrJcrKcrLcpPcuXcrMcrNcrNcrPcuZcrRcrRcrRcrScrTcrUcrVcpVcvfcpVcpVcencrXcrXcrXcrXcrXcoPcrYcrZcsacsbcsccoQcsdcsecsfcsgcoQdyidypdybdwUcshcqocoVaaaaaacqpcsicqrcsjcskcslbWzcsmcsncqxcsocspcsqcsrcsjcsjcsjcsscstcsucsvcswcsxcsycpdcszcsAcjDcsBcsCchZaaaaaacpkcsDcsEcsFcpkcsGcsHcpncsIcsJcsKcsLcsMcsNcsOcsPcsQcsRcsScpncsTcsUcsVcsVcsWcrhcdvcdvcsXcfmcfmcfmcfmcfmcfmcfmcfmcdvcsYcpwcsZctacrmctbctcctdctectfctgcthcticrvcrvctjctkctlctmcaIctnctoctpcaHaaaaaaaaaaaaaadabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11504,6 +11565,18 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaabMCcdRbMCcdRbMCcdRbMCcdRbMCcdRbMCcdRaafaafaafbTEbTDbTDbTDbTDbTDbTDbTDbTDbTDbTDcfRcCccencyOcCdcABcCectDcCfcADcNpcCjcCkcClcCmctIcCncCocCpcCqctIcCrcCscCtcCtcCucCvcazcxpcCxcCycxrcCzctOcAYcCAcCBcCCcBbcBbcqmcBdcqmcoVcqoczlaaaaaaaaactUcCDcCEcuhcCFcCGcCHcCIcCJdVzcCKcCLcCMcCNcskcCOcCMcCPcnDcCQcCRcCScCTcCUcCVcBrcCWcCXcgwaaaaaaaaaczCcsDcCYcuucCZcDacDbcDccxZcDdcDecDdcuzcDfcyecDgcDhcDicDjcDkcDlcwmcDmcwocDncypcDoczXcDpczXcDqcuGcDrcDscDtcwAcDucDvcDwcwEcDxcDycDzcDAcDBcDCcDDcDEcApcDFcDGcAsaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacDHcDIcDJcDKcDLcDLcDMcDNcXVcCheclcPXcyOcDRcDScDTctDctDctDctDcDUcDVcDWcDUctIcDXctIcDYcDZctIcEacEbcEccEccEdcEecEactOcEfcEgcEhcEictOcEjcEjcEjcEkcEjcBbcBbcBbcqmcoVcqocoVaaaaaaaaactUctUcElcCEcuhcuhcEmcEncEocEocEpcEqcErcEscEtcEucErcEvcEwcExcExcEycEzcBrcBrcCWcEAcgwcgwaaaaaaaaacpkcsDcEBcuucuucECcEDcEEcxZcEFcEGcEHcuzcEIcEJcEKcELcEMcENcEOcEPcEQcERcEScETcuGcEUcEVcEWcEXcEYcuGcDOcFacFbcwAcFccFdcFecwEcFfcFgcFhcFicFjcAmcFkcFlcFmcAscAscAsaafaafaafabcaafaaaaaaaagaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa >>>>>>> e070c7c... Oct Map Fixes (#6485) +======= +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaabTEbTDchcchcbTDcoucovcowbXucoxchhcoyebtcoAcoBcoCcoDcoEcoFcoGcmLcrQcrOcfRchuchuchuchuchuchvcoJcoKcencencoLchEcoMchCcoNcoOcoPcoPcoPcoPcoPcoPcoQcoQcoRcoScoQdirdwgdwqditcoTcoVcoWchGcoXcnsbLBcoYchKchLcoZchNbLBbWAcgncpacpbcpcbWAchRchRchRchRchRcpdcpdcpecpdcpdcpdcpdcpfchWchVchXcpgchZcphcpiciccpjcpkcpkcpkcplcpmcpncpncpncpncpncpocpncpncpncpncpncpncppcpqcprcnVcpsciecptcgNcpuciecinciociociociociocdtcpvcdvcaGcpwcpxcpycpzcpzcpzcpAcpzcpBcpzcpzcaHcaHcaHcaHcpCechecfecgeciecjcpIcpJcaHcaHaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaabTDcpKcpLcpMcpNchecmDbXucpOcpPcpPcpQcpPcpRcpScpPcoEcmLcmLcmLcpUcpTcfRcfRcfRcfRcfRcfRcfRcencencencpVcpWcpXcpYcpZcqacpXcqbcqccqdcqecqfcqgcqhcqicqjcqkcqlcoQdwTdwWdwTdwUcqncqocoVbLCbLCcqpcqqcqrcqscqtcqubWzcqvcqwcqxcqxcqxcqycqycqzcqAcqBcqpcpdcqCcqDcqEcqFcqGcpdcqHcqIcjCcqJcqKchZcgwcgwcpkcqLcqMcqNcqOcqPcqPcqQcqRcqVdaMecUcqVcqWcqXcqYcqZcracracrbcrccrdcrecrfcrgcrhcrhcrhcricdtcdtcdtcdtcdtcdtcdtcfmcdvcrjcpwcrkcrlcrmcrncrocrpcrqcrrcrscrtcrucrvcrvcaHcrwcgZcrxcaHcaIcrycaIcaHcaHaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabKLbVibKLbVibKLbVibKLbVibKLbVibKLbViaafaafbTDcrzbXrctqcrBcrCcrDcrEcrFcrGcrHcrIcrJcrKcrLcpPcuXcrMcrNcrNcrPcuZcrRcrRcrRcrScrTcrUcrVcpVcvfcpVcpVcencrXcrXcrXcrXcrXcoPcrYcrZcsacsbcsccoQcsdcsecsfcsgcoQdyidypdybdwUcshcqocoVaaaaaacqpcsicqrcsjcskcslbWzcsmcsncqxcsocspcsqcsrcsjcsjcsjcsscstcsucsvcswcsxcsycpdcszcsAcjDcsBcsCchZaaaaaacpkcsDcsEcsFcpkcsGcsHcpncsIcsJcsKcsLcsMcsNcsOcsPcsQcsRcsScpncsTcsUcsVcsVcsWcrhcdvcdvcsXcfmcfmcfmcfmcfmcfmcfmcfmcdvcsYcpwcsZctacrmctbctcctdctectfctgcthcticrvcrvctjctkctlctmcaIctnctoctpcaHaaaaaaaaaaaaaadabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafbVvbVwbVAbVwbVAbVwbVAbVwbVAbVwbVAbVwbVybVzbTDcttctrctscwRctrctuctvctwcpPctxctyctzctActBcpPcuXctCctDctDctFctEctDctGctGctHctHctIctJctIcvgcvgctIctLctLctMctNctMctLctLctOctOctOctPctOctOctQctRctScoQcoQdUPdUQdBMdwUctTcqocoVaaaaaactUctVctWctXcskctYbWzctZcuacubcuccudcuecufcugcuhcsjcuicujcukculcumcuncuocpdcupcsAcuqcurcuscgwaaaaaacpkcutcuucuucuucuvcuwcuucuucuxcuxcuxcuycuzcuAcuzcuzcuzcuzcuBcuCcuDcuEcuFcuCcuGcuGcuGcuGcuGcuGcuGcuHcuHcuHcuHcuIcuIcuIcuIcuJcuKcuLctbcuMcrqcrqcrqcrqcrqcrvcrvcrvcaHcuNcorcuOcaIcdOcdMcdPcaHaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabVvcczcdQcczcdQcczcdQcczcdQcczcdQcczbVycaJbTDcaKcuPcuQcuRcuScuQcuTcuUcpPcpPcpPcpPcpPcpPcpPcuXcuVctDcuWcuYcxbctDcvacvbcvcdaPctIcvdctIctKctIcxicvhcvicvjcvkcvjcvlcvmcvncvocvpcvqcvrctOcvscvtcvucvvcoQdUSdUTdURdwUcvwcqocoVaaaaaactUcvxcvycvzcvAcvBbWzcDQcvDcqxcvEcvFcvGeckcvIcvJcsjcvKcvLcvMcvNcumcvOcvPcvQcvRcsAcvScvTcvUcgwaaaaaacpkcsDcuucvVcvWcvXcvYcvZcwacwbcwccwdcuycwecwfcwgcwhcwicwjcwkcwlcwmcwncwocwpcwqcwrcwscwtcwucwvcwwcwxcwycwzcwAcwBcwCcwDcwEcwFcwGcrmcwHcwIcwJcrqcrqcrqcwKcwLcwIcrvcaHcwMcwNcwOcaHccxcwPcaHcaHaafaafaafaadaXGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabMCcdRbMCcdRbMCcdRbMCcdRbMCcdRbMCcdRaadbYTcwQcwUcwScwTcxtcwScwTcwVcwWcwXcwYbTDcfRcrMcrNcrNcrNcwZctDcxacxccxdctDcvacxectHecWctIcxfcxgcxhcXqcxjcxkcxlcxlcxlcxmcxncxocxpcxqcxrcxscFGcxucxvcxwcxxcvvcoQdwUdwUdwUdwUcoVcqocoVaaaaaactUcxycqrcxzcxAcxBbWzcxCcxDcqxcxEcxFcxGcsrcxHcxIcxJcvKcxKcxLcxMcxNcxOcxPcpdcvRcxQcxRcxScxTcgwaaaaaacpkcsDcuucxUcxVcxWcxXcxYcxZcyacybcyccuzcydcyecyfcygcyhcyicyjcykcylcymcyncyocypcyqcyrcyscyrcytcwwcyucyvcywcwAcyxcyycyzcwEcyAcyBcrmcrmcrmcrmcrmcrmcrmcrmcrmcpzcpzcaHcyCcaIcaHcaHcaHcaHcaHaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaadaaaaaaaaabKLbKMbKMbKMbKMbKMbKMbKMcyDbKMbKMbKMbVybXocyEcyFcyGcyHcyIcyJcyHcyKcyLcyLcyMbTDcfRcyNcmLcyOcyOcyPcyOctDcyRcyQctDctDcyTcyUecHctIcyWcyXcyYcyZczaczbcxlcxlczcczdczeczfctOczgczhcziczjctOcoQcoQczkcoQcoQcqmcqmcqmcqmcoVcqoczlaaaaaacqpcsicqrczmcznczobWAbWAczpcqxcxEczqczrcsrcsjcvAcsjczscpdcztczuczvczwcpdcpdczxczyczzczAczBchZaaaaaaczCcsDcuuczDczEcxWczFczGcxZczHczIczJcuzczKcyeczLczMczNcXCczPczQczRczSczTczUczVczWczXczYczXczZcAacAbcAccAdcwAcAecAfcAgcwEcAhcAicAjcAkcAlcAmcAncAocApcAqcArcAsbYScAtcAuaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaabVvcczcdQcczcdQcczcdQcczcdQcczcdQcczbVyccBbTDbTDcAvcAwcAxbXpcAxcAycyLcyLcAzbTDcfRcyNcmLcyOcAAcABcACctDcAEcyScAFctDcAGcAHecIctIcAJcAKcALcAMcANcAOcAPcAQcAQcARczecAScATcAUcAVcAWcAXctOcAYcAZcBacBbcBccqmcBdcqmcBecoVcqoczlaaaaaacqpcqpcBfcsjcuhcBgcBhbWAcBicqxcqxcqxcqxcBjcBkcBlcBkcBmcpdcpdcBncBocpdcpdcBpcBqcBrcjDcBschZchZaaaaaaczCcsDcuucuucBtcBucBvcBwcxZcBxcBycBzcuzcBAcBBcBCcBCcBDcBEcBFcBGcBHcBIcwocBJcypcBLcBNcBMcBKcBOcuGcBPcBQcBRcwAcBScBTcBUcwEcBVcBWcBXcBYcBYcAmcBZcCacCbcAmcAmcAsaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaagaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaabMCcdRbMCcdRbMCcdRbMCcdRbMCcdRbMCcdRaafaafaafbTEbTDbTDbTDbTDbTDbTDbTDbTDbTDbTDcfRcCccencyOcCdcABcCectDcCfcADcNpcCjcCkcClcCmctIcCncCocCpcCqctIcCrcCscCtcCtcCucCvcazcxpcCxcCycxrcCzctOcAYcCAcCBcCCcBbcBbcqmcBdcqmcoVcqoczlaaaaaaaaactUcCDcCEcuhcCFcCGcCHcCIcCJdVzcCKcCLcCMcCNcskcCOcCMcCPcnDcCQcCRcCScCTcCUcCVcBrcCWcCXcgwaaaaaaaaaczCcsDcCYcuucCZcDacDbcDccxZcDdcDecDdcuzdbIcyecDgcDhcDicDjcDkcDlcwmcDmcwocDncypcDoczXcDpczXcDqcuGcDrcDscDtcwAcDucDvcDwcwEcDxcDycDzcDAcDBcDCcDDcDEcApcDFcDGcAsaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacDHcDIcDJcDKcDLcDLcDMcDNcXVcCheclcPXcyOcDRcDScDTctDctDctDctDcDUcDVcDWcDUctIcDXctIcDYcDZctIcEacEbcEccEccEdcEecEactOcEfcEgcEhcEictOcEjcEjcEjcEkcEjcBbcBbcBbcqmcoVcqocoVaaaaaaaaactUctUcElcCEcuhcuhcEmcEncEocEocEpcEqcErcEscEtcEucErcEvcEwcExcExcEycEzcBrcBrcCWcEAcgwcgwaaaaaaaaacpkcsDcEBcuucuucECcEDcEEcxZcEFcEGcEHcuzcEIcEJcEKcELcEMcENcEOcEPcEQcERcEScETcuGcEUcEVcEWcEXcEYcuGcDOcFacFbcwAdbLcFdcFecwEcFfcFgcFhcFicFjcAmcFkcFlcFmcAscAscAsaafaafaafabcaafaaaaaaaagaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacDHcFncFocFpcFqcDHcDHcDHcMXcEZcDPcFtcyOcyOcyOcyOcGTcFvcFwcFxcDUcFycFzcFAcFBcFCcFDcFEcFFctIcOlcFHcFIcFJcFKcFLcFMctOcxpcFNcxpcFOctOcFPcFQcFRcFScEjcoVcoVcFTcoVcoVcFUcoVaaaaaaaaaaaactUctUcElcCEcsjcFVcFWcFXcFYcsjcFZcGacGbcskcGccGacGdcjDcGecGfcGgcGhcjDcCWcEAcgwcgwaaaaaaaaaaaacpkcsDcGicGjcGkcGlcGmcGncGocGpcGqcGrcuzcGscuzcuzcGtcGucGtcuycuEcGvcuEcGwcuEcuGcwwcGxcGycwwcuGcuGcGzcGAcFrcwAcwEcGCcwEcwEcFfcFgcFhcGDcGEcAmcGFcGGcGHcAsaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa <<<<<<< HEAD aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacFpcGIcFpcGJcGKcGLcDHcGMcGBcLFcFscGPcGQcGRcGScGTcFucGUcGVcFxcDUcGWcGXcGYcGZcHacDUcHbcHccHdcHecHfcHgcHgcHhcHicHjcHkcHlcHmcHncHocEjcHpcHqcHrcHscEjcHtcHucBbcHvcHwcHxcoVaaaaaaaaaaaaaaactUctUcHycHzcHycHAcHBcHCcHDcHDcHEcslcskcslcHEcHFcHFcHGcHHcHIcHJcHKcHJcgwcgwaaaaaaaaaaaaaaacpkcHLcHMcGjcHNcHOcHPcHQcHRcHScHTcHUcHVcHWcHXcHYcHZcIacHUcIbcIccIdcIecIfcIgcIhcIicIjcIkcIlcImcIncIocIpcIqcIrcIsecmcIucIvcIwcIxcIycIzcIAcAmcAmcIBcAmcAsaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11544,28 +11617,28 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacFpcGIcFpcGJcGKcGLcDHcGMcGBcLFcFscGPcGQcGRcGScGTcFucGUcGVcFxcDUcGWcGXcGYcGZcHacDUcHbcHccHdcHecHfcHgcHgcHhcHicHjcHkcHlcHmcHncHocEjcHpcHqcHrcHscEjcHtcHuecZedacHwcHxcoVaaaaaaaaaaaaaaactUctUcHycHzcHycHAcHBcHCcHDcHDcHEcslcskcslcHEcHFcHFcHGcHHcHIcHJcHKcHJcgwcgwaaaaaaaaaaaaaaacpkcHLcHMcGjcHNcHOcHPcHQcHRcHScHTcHUcHVcHWcHXcHYcHZcIacHUcIbcIccIdcIecIfcIgcIhcIicIjcIkcIlcImcIncIocIpcIqcIrcIsecmcIucIvcIwcIxcIycIzcIAcAmcAmcIBcAmcAsaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaagaafaafaafaagaadaadaadaadaadaadaagaaaaaaaaacFpcICcIDcIEcGKcIFcIGcIHcGNcKtcIJcIKcGQcGRcGScGTcGTcILcIMcFxcDUcINcIOcIPcIQcIRcIScITcIUcIVcIWcIXcIVcIVcIYcIZcJacJbcJccITcJdcJecJfcJgcJhcJicJjcJkcHtcHuedbedccBbcJlcoVaaaaaaaaaaabaaaaaactUctUcqpcJmcJncJocJpcHDcsicJqcslcskcslcJrczBcHFcJscJtcJucJvchZcgwcgwaaaaaaaabaaaaaaaaacpkcJwecncGjcGkcJycJzcJAcJBcJCcJDcJEcJFcJGcJHcJIcJJcJIcJEcJKcJLcJMcJNcJOcJPcJQcJRcJScJTcJUcJVcJWcJXcJYdUUcKacJXcKbcJXcKccJXcKdcKecKfcKgcKhcKicKjcKkcKlaaaaaaaabaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaacDHcKmcKncKocGKcKpcDHcKqcKrcGOcKscKtcKucKtcKucKvcKwcKxcIMcIMcDUcKycKzcKzcKAcKBcKCcHgcKDcHgcKEcHgcHgcHgcKDcKFcKGcKGcKGcKGcKGcKGcKHcKIcKJcKKcKLcEjcHtcHueddedecKNcKNcKNcKNcKNaaaaaaaaaaaaaaaaaacqpcqpctUctUctUcqpcqpcqpcKOcKPcKQcqpchZchZcgwcgwcgwchZchZaaaaaaaaaaaaaaaaaacKRcKRcKRcKRcKScKTcKTcIIcKVcKTcKWcKXcKYcKXcKZcLacLbcLccLdcLccLbcLbcLbcLecLfcLgcLbcLhcLicLjcLkcLjcLhcLhcLlcLmcLncLmcLlcAjcLocLpcLqcLrcAjcLscLtcLucLvcLwcLxcLyaaaaaaaaaaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafcLzcLAcDHcLBcLCcLDcDHcKqcLEcLFcLGcLHcLIcLJcLKcLLcGTcLMcIMcIMcDUcLNcLOcKzcLPcLQcDUcLRcLScHgecoecpecpecpcLScLVcKGcLWcLWcLWcLWcLWcLXcLYcLYcLZcLYcoVcoVcoVedfedccKNcMacMbcMccKNcKNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaactUcMdcMecMfcMgcMhctUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKRcKRcMicMjcKRcMkcKVcMlcMmcMncKTcMocMpcMqcMrcMscKZcMtcMucMvcMwcMxcLbcMycMzcMAcMBcMCcLhcMDcMEcMFcMGcMHcMIcMJcMKcMLcMMcMNcMOcMOcMOcMOcMOcMOcMPcMQcMRcMScMTcMUcMVaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafcLzcLAcDHcLBcLCcLDcDHcKqcLEcLFcLGcLHcLIcLJcLKcLLcGTcLMcIMcIMcDUcLNcLOcKzcLPcLQcDUcLRcLScHgecoecpecpecpcLScLVcKGcLWcLWcLWcLWcLWcLXcLYcLYcLZcLYcoVcoVcoVdeoedccKNcMacMbcMccKNcKNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaactUcMdcMecMfcMgcMhctUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKRcKRcMicMjcKRcMkcKVcMlcMmcMncKTcMocMpcMqcMrcMscKZcMtcMucMvcMwcMxcLbcMycMzcMAcMBcMCcLhcMDcMEcMFcMGcMHcMIcMJcMKcMLcMMcMNcMOcMOcMOcMOcMOcMOcMPcMQcMRcMScMTcMUcMVaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaacMWcDHcFpcFpcDHcDHcMXcMYcMYcMXcMZcNacMXcMXcLLcGTcIMcIMcIMcDUcNbcNccNdcNecNfcDUcNgcHgcHgcNhcNicHgcHgcHgcNjcNkcLWcLWcLWcLWcLWcLXcNlcNmcNncLYcNocQkcoVedbedgcNrcNscNscNtcNucKNaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaactUcNvcNwcNxcNycNzctUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacKRcNAcNBcNCcKRcNDcKVcNEcNFcNGcKTcNHcNIcNJcNKcNLcNMcNNcNOcNPcNQcNRcLccNScNTcNUcNVcNWcNXcNYcNZcOacObcOccLhcOdcOecOfcOgcOhcMOcOicOjcOkcPucMOcOmcOncLucOocOpcOqcLyaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaacMXcOrcOscOtcMXcLLcGTcIMcIMcIMcDUcDUcDUcDUcDUcDUcDUcOucOvcHgcHgcOwcOwcOwcHgcOxcOycLWcLWcLWcLWcLWcLXcOzcOAdUVcLYcOCcBbcODedhedicKNcPVcOHcOIcOJcKNcoVcoVcoVcoVczlczlczlcoVcoVcoVcoVcoVcOKcOLcMfcOMcOKcpkcpkcpkcpkcpkczCczCczCcpkcpkcpkcpkcKRcONcOOcOPcKRecqcKVcORcOScOTcKTcOUcOVcOWcOXcOYcKZcOZcPacPbcPccPdcLfcNScNTcPecPfcPgcPhcPicPjcPkcPlcPmcLhcPncPocPpcPqcPrcMOcPscPtcPtcSLcMOcPvcPwcPxcPycPzcPAcKlaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaacMXcPBcPCcPDcMXcLLcGTcGTcPEcIMcFucFucIMcIMcIMcPFcGTcEacPGcEacEacPHcPIcPJcPKcPLcPMcLWcLWcLWcLWcLWcLXcPNcPOcPPcLYcPQcPRcoVcPScPTcKNcKNcKNcKNcKNcKNcPWcHwcHwcQacQacPYcQacQacQacQacQacQacQbcQccQdcQecQfcQgcQgcQgcQgcQgcQgedkedjcpkcQjcSpcQlcKRcQmcOOcQncKRcQocKVcKVcQpcKVcKTcQqcQrcQscQtcQucKXcQvcQwcQxcQycPdcLccNScQzcQAcQBcQCcQDcQEcQFcQGcQHcQIcLhcLlcLlcLlcLlcLlcMOcPscQJcQKcSLcMOcQLcQMcKlcKlcKlcKlcKlaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaafaaaaaaaaaaaacMXcQNcQNcMXcMXcLLcIMcGTcGTcFucFucGTcGTcGTcGTcGTcGTcQOcQOcQOcEacEacEacEacQPcQQcKGcLWcLWcLWcLWcLWcLXcLYcKUcLYcLYcoVcoVcoVcQScQTcQUcHwcQVcQWcQXcHwcHxcBbcBbcBbcBbcQYcQZcAYcPUcPUcRdcRecoVcRfcRgcRhcpkcRicRjcRicRkcRlcRmednedledmedpedpedocKRcKRcRpcKRcKRcQocpkcGjcRqcRrcLacRscRtcRucRvcRwcKZcRxcRycRzcRAcRBcLbcRCcRDcREcRFcRGcRHcRIcRJcRKcRLcRMcRNcROcRPcRQcRRcRScMOcRTcRUcPtcRVcMOcRWcRXcpwaaaaaaaaaaaaaaaaaaaaaabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaadaadaaaaaaaaacMXcRYcRZcSacMXcSbcKvecscSdcSecSfcSgcShcIMcSicIMcSjcSkcSkcSkcSlcSmcSmcEacEacEacKGcKGcKGcKGcKGcKGcKGcQOcSncQOcGTcSocGTdTdcBbcFUcBbcSqcSrcPScCwcBbcSucSvcSwcSucSucSucSucSucSucSucSucSucSucSxcSycSzcSAcSAcSAcSAcSAcSAcSAedsedqedreduedvedtcSFcSGcSHcSDcSDcSIcSJcSKcVacSMcLacLacLacLacLacLacLacSNcLbcLbcLbcSOcLbcSPcSQcSRcSScSPcLhcSTcLhcLhcLhcMIcSUcSVcSWcSXcSYcSZcTacPtcTbcTccTdcTecTfcTgcpwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaadaadaaaaaaaaacMXcRYcRZcSacMXcSbcKvecscSdcSecSfcSgcShcIMcSicIMcSjcSkcSkcSkcSlcSmcSmcEacEacEacKGcKGcKGcKGcKGcKGcKGcQOcSncQOcGTcSocGTdTdcBbcFUcBbcSqcSrcPScCwcBbcSucSvcSwcSucSucSucSucSucSucSucSucSucSucSxcSycSzcSAcSAcSAcSAcSAcSAcSAedsedqedrdeOedvedtcSFcSGcSHcSDcSDcSIcSJcSKcVacSMcLacLacLacLacLacLacLacSNcLbcLbcLbcSOcLbcSPcSQcSRcSScSPcLhcSTcLhcLhcLhcMIcSUcSVcSWcSXcSYcSZcTacPtcTbcTccTdcTecTfcTgcpwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabfGaafaafaafaafaaaaaaaaacMXcMXcSbcKucKucKucThcTicTicTicTjcTicTicTicTkcKucKucKucKucThcKucKucKucKucKucKucKucKucTlcTmcTncTocTpcKucTqcTrcTscTtcTJcTJcTJcTJcTJcVYcSucTvcTwcRbcRacSucStcTxcUCcRccSscTEcSucTzcTAcTBcSAcTCcTDcUucTIcTGcSAcUvcsFcsFcpkcpkcpkcpkcpkcpkcpkcpkcpkcTKcTLcsFcTMcTNcTOcTPcTQcTQcTRcTScTTcTUcTVcTWcTXcSRcTYcTZcUacUbcUccSRcUdcTWcTVcTUcUecSUcUfcUgcUhcUicUjcMOcUkcUlcUmcUncUocUpcUqcpwaaaaaaaaaabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaafaaaaaaaaaaaacMXcMXcMYcMYcMYcMXcMXcMXcMYcMYcMYcMXcMXcMXcMXcMXcMXcMXcMXcIMcIMcIMecucIMcIMcIMcIMcIMcIMcIMcMXcMXcMXcMXcUredwcUtcTJcUycUwcUxcUYcUZcSucUzcTwcUDcUAcUBcUGcUHcUEcUFcUIcUScSucUJcUKcULcUMcUNcUOcUPcUTcURcSAcTHcsFcsFcpkcUUcsFcsFcpkcUXcTycsFcsFcsFcTLcVbcVccVdcVecVfcVgcVhcGjcTScVicUacVjcVkcVlcSRcVmcVncVocVpcVqcSRcVrcVkcVjcUacVscSUcSUcSUcSUcVtcSUcMOcMOcMOcMOcMOcMOcVucVvcVwaafaafaafabcaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacMXcMXcVxcVycVzcVAcVBcVCcVDcVEcVFcMXcMXaaaaaaaaaczledxcVHcVKcVIcVIcVJcVNcVOcSucVLcVQcVRcVPcSucVTcVUcVScVMcWacUVcSucVVcVWcVXcSAcXjcWbcWdcUQcWccSAcWfcWeddrddrddrddrddrddrddrddrddrcsEcsFcTLcWlcWmcWmcWlcWncWocWpcWqcWrcWscWtcWucWvcWwcWxcWycWzcWAcWycWycWxcWAcWBcWCcWycWDcWEcQRcWGcWHcWIcWJcWKcWLcWMcWNcWOcWPcWQcWRcWSaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacMXcMXcVxcVycVzcVAcVBcVCcVDcVEcVFcMXcMXaaaaaaaaaczldfqcVHcVKcVIcVIcVJcVNcVOcSucVLcVQcVRcVPcSucVTcVUcVScVMcWacUVcSucVVcVWcVXcSAcXjcWbcWdcUQcWccSAcWfcWeddrddrddrddrddrddrddrddrddrcsEcsFcTLcWlcWmcWmcWlcWncWocWpcWqcWrcWscWtcWucWvcWwcWxcWycWzcWAcWycWycWxcWAcWBcWCcWycWDcWEcQRcWGcWHcWIcWJcWKcWLcWMcWNcWOcWPcWQcWRcWSaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaagaadaadaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaacMXcMXcMXcMYcMYcMYcMYcMYcMXcMXcMXaaaaaaaaaaaaczledycWUcTJcUWcWgcVZcWicXtcSucSucSucSucSucWjcWXcWYcWVcYlcYlcWZcSucXhcUKcXicSAcSAcXbcXkcXacXmcSAcXddeacXcddscXgcXecXfcXecXocXlcXnddrcpkcYKcXycXzcXAcXBecLecLecvcGjcTScXEcXFcXGcXHcXIcXJcXKcXLcXMcXNcXKcXOcXPcXQcXRcXScXTcXUcWFcXWcXXcXYcXZecwcYbcYccYdcYecYfcYgcYhcYiaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaabaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacUrcVGcXrcTJcTJcTJcTJcXucTJcTJcXscXxcYjcXvcXwcYncYocYkcYmcYpcYqddAcYucUKcYvcSAcYrcYxcYycYscYtcYAcYBcYzcYzcYzcYDcYzcYCcYGcYzcYEcYFcYHcqMcWkcYLcYMcYNcYOcTRczCczCcTRcTScTScYPcYQcYRcYScYRcSPcYTcYUcYVcSPcYWcYXcYYcYZcYYcZacZbcZbcZbcZccZdcZccZecZfcZgcZfcZhcZicZjcZicWSaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaadaadabcaagaagaadaadaadaadaafaaeaaaaafaagaadaadaadaadaadaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacUrcUscZkcZncTJcYIcZPcZmcYJcWhcZlcZqcZrcYmcZpcZtcZucZscYqcZvcYqddAcZxcZycZzcZwcZAcZDcZEcZBcZCcZHcZIcZFcZGcZNcZOcZJcZMdardascZQdaqddrdbYdatcZScZTcZTcTRaaaaaaaafaaaaaaaaacYPcZUcZVcZWcZXcZYcZYcZZcZYcZYdaadabdacdaddaedafdagdahcZbdaidajdakcZedaldamdancZhcWScYicWScVwaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacUrdaodapdawdaxdaudavdaAdavdaydazdaGdaHdaBdaCdaKdaLdaIdaJdaNdaOdaMdaDdaEdaFdaPdaQdaTdaUdaRdaScSAdbvddrddYddYddYdfbddYddYdfbddYddYddrddrcZRcZSdaWdaXdaYaaaaaaaafaaaaaaaaacYPdaZdbadbbdbcdbddbedbfdbgdbhdbidbjdbkdblcYYdbmdbndbocZbdbpdbqdbrcZedbsdbtdbucZhaaaaaaaaaaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafabcaagaadaafaaaaaaaaaaadaadaadaaaaaaaaaaaaaaacUrdbwdbxdbzcTJdbyddFdbBdbCdbAcZKdbDdbEcYmcZpdbGdbHcYqdbFdbJcYqdbIdbKcUKcULdbLdbMdbPdbQcZodbOdbRdbSddYddZddZddZddZddZddZddZddZddZddZddYcZRdaVaaaaaaaaaaaaaaaaafaaaaaaaaacYPdcadcbdccdcddbddcedcfdcgdbhdchdcidcjdckcYYdcldcmdcncZbdcodcpdcqcZedcrdcsdctcZhaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacUrdaodapdawdaxdaudavdaAdavdaydazdaGdaHdaBdaCdaKdaLdaIdaJdaNdaOdfUdaDdaEdaFdkkdaQdaTdaUdaRdaScSAdbvddrddYddYddYdfbddYddYdfbddYddYddrddrcZRcZSdaWdaXdaYaaaaaaaafaaaaaaaaacYPdaZdbadbbdbcdbddbedbfdbgdbhdbidbjdbkdblcYYdbmdbndbocZbdbpdbqdbrcZedbsdbtdbucZhaaaaaaaaaaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafabcaagaadaafaaaaaaaaaaadaadaadaaaaaaaaaaaaaaacUrdbwdbxdbzcTJdbyddFdbBdbCdbAcZKdbDdbEcYmcZpdbGdbHcYqdbFdbJcYqdkmdbKcUKcULdlcdbMdbPdbQcZodbOdbRdbSddYddZddZddZddZddZddZddZddZddZddZddYcZRdaVaaaaaaaaaaaaaaaaafaaaaaaaaacYPdcadcbdccdcddbddcedcfdcgdbhdchdcidcjdckcYYdcldcmdcncZbdcodcpdcqcZedcrdcsdctcZhaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaacUrdcudbTdbWcTJdbNcZKdbUdcVdbXcZKdbDdcvcYmcZpdczdcAdcwdcxdcCdcDdcBdcKdcLdcMcSAdcEdcHdcIdbZdcGdcJdcNddYddZddZddZddZddZddZddZddZddZddZdcOdcZdaVaaaaaaaaaaaaaaaaafaaaaaaaaacYPddaddbddcddddbdddeddfdcgdbhddgddhddiddjcYWddkddkddkddkddlddmddlddnddoddpddocZhaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaadaafaafaafaafcUrddXdcPdcRcTJdcFdbVdcQdcTcZlcZKcZqdcWcYmcZpdcYddtcYqdcXdduddvddAddycUKddzddwdbQddBddCdcUddBddDddEddYddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaaaaaaaaaaaaaafaafaafaafcYPcYPddNddOddPddQddRddSddTddQddUddVddWcYWcYWaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaagabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaacUrddXddGecMcTJddxddJddHddIddKddLcTJdebcYqcZpcYqcYqcYqcYqcYqcYqddAddycUKdeeddwdecddBdegddMdefdeidejdehddZddZddZddZddZddZddZddZddZddZdhmdcZcZSaaaaaaaaaaaaaadaagaaaaaaaaaaafcYPcYPcYPcYPddQddQddQddQddQcYWcYWcYWcYWaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacUrddqcoVcoVcTJdekcZKcZKcZKcZldeldeodemdemdendbHderdepdeqdeudevcYwdescVWdetcSAdewdexdeycTucTucTudezcTuddZddZddZddZddZddZddZddZddZddZdeAdcZdaVaaaaaaaaaaagaadaaaaaaaaaaaaaagaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaaaaaaaaaaaacUrddXdeBcAYcTJcZLdeCdeFdeddeDdeEcXpdeIcYqdeHdeKcYwdeJddAddAdeLcYwdeQcUKdnzdeMcSAdbLdeOcTudeNcTudePcTuddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaafaafaadaaaaabaaaaaaaaaaadaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaafaafaadaadaadaafaaeaagaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacUrddqcoVcoVcTJdekcZKcZKcZKcZldeldmcdemdemdendbHderdepdeqdeudevcYwdescVWdetcSAdewdexdeycTucTucTudezcTuddZddZddZddZddZddZddZddZddZddZdeAdcZdaVaaaaaaaaaaagaadaaaaaaaaaaaaaagaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaaaaaaaaaaaacUrddXdeBcAYcTJcZLdeCdeFdeddeDdeEcXpdeIcYqdeHdeKcYwdeJddAddAdeLcYwdeQcUKdnzdeMcSAdlcdmdcTudeNcTudePcTuddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaafaafaadaaaaabaaaaaaaaaaadaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaafaafaadaadaadaafaaeaagaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaafaafaafczlddXdeRdeTdeTdeUdeUdeUdeTdeSdeZdeTdeTcYqcZpdeVcYwdffdfgdfgdeXdfideWcUKdfkdfkdeYdfadfccTucWWcTudfdcTuddZddZddZddZddZddZddZddZddZddZdhmdhicZSaaaaaaaaaaadaaaaaaaaaaaaaaaaadaadaaaaaaaaaaafaaaaaaaaaaafaaaaadaadaafaadaadaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaczlddXcBbdhXdfhdfxdfedfxdfmdfjdfldfodeUcYqdfndfpdfqdfHdfIdfJdfKdfLdfMcZydfNcULdfsdfudfvcTudftdfwdfycTuddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaadaagaaaaadaadaadaagaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaczldfzdfAdfDdfEdfBdfCdfBdfBdfFdfGdfPdfRdfOdfOdfTdfUdgfdggdghcULcSzdgidfXdfYdfVdfWdgcdgddgadgbdgedgjcTuddZddZddZddZddZddZddZddZddZddZdcOdcZdaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaczlddXcBbdhXdfhdfxdfedfxdfmdfjdfldfodeUcYqdfndfpdFLdfHdfIdfJdfKdfLdfMcZydfNcULdfsdfudfvcTudftdfwdfycTuddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaadaagaaaaadaadaadaagaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaczldfzdfAdfDdfEdfBdfCdfBdfBdfFdfGdfPdfRdfOdfOdfTdHddgfdggdghcULcSzdgidfXdfYdfVdfWdgcdgddgadgbdgedgjcTuddZddZddZddZddZddZddZddZddZddZdcOdcZdaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafaafcUrddXcBbdeTdgldfQdgkdgodgqdgmdgndgtdeUdgrdgsdgvcYwdgudgFdhNdXTdfidgIcTAdgJdfkdeYdgxdgycTudgwdgzdgjcTuddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaczlddXdgAdeTdgCdfQdgBdgHdgKdgDdfQdgLdeTdeTdeTdeTdhadhbdhadhadhadfidhcdhddhedfidfidgMdficTucTucTudgNcTuddrddrddrddrddrddrddrdindiodipddrdcZcZSaaaaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaczldgOcvwdeTdgQdfQdgPdfSdfQdgRdfQdgTdgUdeTdeGdgVdVadhodUZdVcdhrdVbcTBcTAdhtdhudhvdhwdhxdhydhzdhxdhAdhvdhBdhCdhDdhEdhFdhGdhBdgWdgXdgYdhhdcZcZSaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11789,12 +11862,21 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadEndEndEndEndE aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadEndEndEndEndEndEndEndEndEndEndEnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdCcdFxdFydFoaaaaaadAVdAVdAVdAVdAVdAVdCLdAVdFpdFpdFzdFAdFBdFpdFCdFDdFEdFsdFFdFGdFHdFsdFsdAVdAVdAVdAVdAVdAVdAVdAVaaaaaadFudFIdFJdCfdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadBrdBrdBrdBrdBrdBrdBrdBrdBrdBrdBrdBrdBraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadEndEndEndEndEndEndEndEndEndEndEnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdCcdFKdVudFoaaaaaadAVdAVdAVdAVdAVdAVdCLdAVdFpdFMdFNdFOdFPdFQdFRdFSdFTdFUdFVdFWdFXdFYdFsdAVdAVdAVdAVdAVdAVdAVdAVaaaaaadFudFZdGadCfdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadBrdBrdBrdBrdBrdBrdBrdBrdBrdBrdBrdBrdBraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadEndEndEndEndEndEndEndEndEndEndEnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdCcdGbecCdCcaaaaaadGddGedGfdGedGgdGgdGhdGgdGgdGidGjdGkdGldFpdGmdGndGmdFsdGodGpdGqdGrdGsdGtdGudGtdGsdGvdGwdGvdGxaaaaaadCfecDdGzdCfdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadBrdBrdBrdBrdBrdBrdBrdBrdBraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +<<<<<<< HEAD aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadEndEndEndEndEndEndEndEndEnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdCcdGAdCldCcaaaaaadGddGBdGCdGDdGEdGFdGGdGHdGgdFpdFpdFpdGIdGJdGKdGLdGMdGNdGOdFsdFsdFsdGsdGPdGQdGRdGSdGTdGUdGVdGxaaaaaadCfdCUdGWdCfdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadBrdBrdBrdBrdBrdBrdBraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadEndEndEndEndEndEndEnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdCcdGXdGYdCcaaaaaadGddGZdHadHbdGEdHcdHddHedGgdHfdHgdHgdHhdHgdHgdHidHgdHgdHjdHgdHgdHkdGsdHldHmdHndGSdHodHpdHqdGxaaaaaadCfdHrdHsdCfdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadEndEndEndEndEnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdCcdCcdHtdEqdCcaaaaaadGddHudHvdHwdGEdHxdHydHzdGgdHAdHBdHCdHDdHEdHFdHGdHEdHEdHHdHIdHBdHAdGsdHJdHKdHLdGSdHMdHNdHOdGxaaaaaadCfdEvdHPdCfdCfdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdHQdHQdHRdHSdHTdHUdHVdHWdHXdHYdHYdGddHZdIadIbdGgdIcdGEdGEdIddHAdHCdIedIedIedIedIedIedIedIedIedIfdHAdIgdIhdIidGSdGsdIjdIkdIldGxdImdImdIndIodIpdKwdIrdIsdItdIudIudAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdIvdIwdIxdIydIzdIAdIBdICdIDdIEdIFdIGdIHdIIdIJdIKdILdIMdINdIOdIPdIQdIRdIedISdISdISdISdISdIedITdIUdIVdIWdIXdIYdIZdJadJbdIYdJcdJddJedJfdIWdJgdJhdJidJjdJkdJldJmdJndAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdJodIwdJpdJqdIzdJrdJsdJtdJudJvdJwdJxdJydJzdJAdJBdJCdJDdJEdJFdJGdJHdJIdIedISdISdISdISdISdIedJIdJJdJKdJLdJMdJNdJOdJPdJOdJNdJQdJRdJOdJSdJLdJTdJUdJVdJjdJWdJXdJmdJYdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +======= +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadEndEndEndEndEndEndEndEndEnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdCcdGAdCldCcaaaaaadGddGBdGCdGDdGEedAedzedBdGgdFpdFpdFpdGIdGJdGKdGLdGMdGNdGOdFsdFsdFsdGsdGPdGQdGRdGSdGTdGUdGVdGxaaaaaadCfdCUdGWdCfdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadBrdBrdBrdBrdBrdBrdBraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadEndEndEndEndEndEndEnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdCcdGXdGYdCcaaaaaadGddGZdHadHbdGEdPJedCedEdGgdHfdHgdHgdHhdHgdHgdHidHgdHgdHjdHgdHgdHkdGsdHldHmdHndGSdHodHpdHqdGxaaaaaadCfdHrdHsdCfdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadEndEndEndEndEnaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdCcdCcdHtdEqdCcaaaaaadGddHudHvdHwdGEedFdHyedGdGgdHAdHBdHCdHDdHEdHFdHGdHEdHEdHHdHIdHBdHAdGsdHJdHKdHLdGSdHMdHNdHOdGxaaaaaadCfdEvdHPdCfdCfdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdHQdHQdHRdHSdHTdHUdHVdHWdHXdHYdHYdGddHZdIadIbdGgedHdGEedIdIddHAdHCdIedIedIedIedIedIedIedIedIedIfdHAdIgdIhdIidGSdGsdIjdIkdIldGxdImdImdIndIodIpdKwdIrdIsdItdIudIudAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdIvdIwdIxdIydIzdIAdIBdICdIDdIEdIFdIGdIHdIIdIJdIKedJdIMedKdIOdIPdIQdIRdIedISdISdISdISdISdIedITdIUdIVdIWdIXdIYdIZdJadJbdIYdJcdJddJedJfdIWdJgdJhdJidJjdJkdJldJmdJndAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdJodIwdJpdJqdIzdJrdJsdJtdJudJvdJwdJxdJydJzdJAdJBedLdJDedMdJFdJGdJHdJIdIedISdISdISdISdISdIedJIdJJdJKdJLdJMdJNdJOdJPdJOdJNdJQdJRdJOdJSdJLdJTdJUdJVdJjdJWdJXdJmdJYdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +>>>>>>> ff94299... Merge pull request #6555 from Woodratt/11272019_Maptweaksagain aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdHQdHQdJZdKadKbdKcdKddKedIDdIEdKfdKgdKhdKidKfdKjdKkdKidKedIDdKldKmdIedIedISdISdISdISdISdIedIedKndKodIWdIXdKpdKqdKrdKsdKpdKtdKudKsdJfdIWdIXdKvdVwdKxdKydKzdIudIudAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdKAdKAdKBdKAdKCdKDdKEdKFdKGdKHdKHdKHdKHdKIdKJdKIdKKdKLdKMdKNdKOdKPdJHdKQdIedISdISdISdISdISdIedKQdJJdKRdKSdKTdKUdKVdKWdKXdKYdKZdLadImdImdIudLbdJhdLcdLddLedLfdLgdLfdLfdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaadaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdLhdLidLjdLkdLldLmdLndKFdLodKHdLpdLqdLrdLrdLsdLtdKLdLudLvdLwdKKdLxdLydLzdIedISdISdISdISdISdIedLAdLBdLCdKWdLDdLEdLFdKVdLGdLHdLIdLadAVdAVdIudLJdJhdLKdLLdLMdLNdLOdLPdLQdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11805,7 +11887,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdMxdNbdNTdMxaaaaaadNtdNUdNVdNWdNXdNYdNZdOadNtdObdOcdIedOddOedHBdHAdHBdOfdOgdIedOhdOidNKdOjdOkdOldOmdOndOodOpdNKaaaaaadMYdOqdOrdMYdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdMxdNbdOsdOtaaaaaadOudNydOvdOwdOxdOydOzdOAdOBdOCdODdOEdOddOFdOGdOHdOIdHBdOJdOKdOLdOMdONdOOdOPdOQdORdNKdOSdOTdNKaaaaaadOUdOVdOWdMYdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdMxdOXdOYdOtaaaaaaecEdPadPbdPcdPddPcdPedPfdNtdPgdPhdIedPidPjdPkdPldPmdPndPodIedPpdPqdNKdNKdNKdPrdNKdNKdNKdNKdNKaaaaaadOUdPsdPtdMYdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaagaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaafdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdMxdPudPvdOtaaaaaadPwdPxdNydNydPydNydNydPzdNtdObdOcdPAdPAdPAdPBdPCdPDdPAdPAdPAdOhdOidNKdPEdPFdPGdPHdPIdPJdPKdNKaaaaaadOUdPLdPMdMYdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaafdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdMxdPudPvdOtaaaaaadPwdPxdNydNydPydNydNydPzdNtdObdOcdPAdPAdPAdPBdPCdPDdPAdPAdPAdOhdOidNKdPEdPFdPGdPHdPIdUWdPKdNKaaaaaadOUdPLdPMdMYdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaafaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdPNdPOdPPdAVdPNdPOdPPdAVdPNdPOdPPdAVdPNdPOdPPdAVdPNdPOdPPdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdMxdPudPQdMxaaaaaadPRdPSdPTdNydPUdPVdPWdPXdPYdPZdQadQbdQcdQddQedQfdQgdQhdQidQjdQkdQldQmdQndQodQpdQqdQrdQsdQtdNKaaaaaadMYdQudPMdMYdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdQvdQwdQxdAVdQvdQwdQxdAVdQvdQwdQxdAVdQvdQwdQxdAVdQvdQwdQxdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaafaafaafabcaafaaaaaaaagaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdPNdQydPPdAVdPNdQydPPdAVdPNdQydPPdAVdPNdQydPPdAVdPNdQydPPdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdMxdPudQzdMxdMxdNtdNtdNtdQAdQBdQCdQBdQAdNtdNtdQDdQEdQFdQGdQHdQGdQIdQGdQHdQGdQGdQJdQKdNKdNKdQLdQMdQNdQOdQPdQQdNKdNKdMYdMYdQRdPMdMYdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdQvdQSdQxdAVdQvdQSdQxdAVdQvdQSdQxdAVdQvdQSdQxdAVdQvdQSdQxdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaafaaaaaaaaadAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdPNdQydPPdAVdPNdQydPPdAVdPNdQydPPdAVdPNdQydPPdAVdPNdQydPPdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdMxdPudNTdQTdQUdNtdQVdQWdQXdQYdPUdNydNydQZdRadRbdRcdRddRedRgdRfdRhdRidRjdRkdRldRmdRndRodRpdRqdRrdRsdRtdRudQrdRvdNKdRwdRxdRydPMdMYdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdQvdQSdQxdAVdQvdQSdQxdAVdQvdQSdQxdAVdQvdQSdQxdAVdQvdQSdQxdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVdAVaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa diff --git a/maps/southern_cross/southern_cross-3.dmm b/maps/southern_cross/southern_cross-3.dmm index 8898cf3dac..5db098cf20 100644 --- a/maps/southern_cross/southern_cross-3.dmm +++ b/maps/southern_cross/southern_cross-3.dmm @@ -1932,8 +1932,8 @@ aaaaaaaaaaaaaaaaabababababababababababababababababababaaaaaaaaaaaaaaaaaaaaaaabab "ce" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main) "cf" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/surface/outpost/mining_main) "cg" = (/obj/machinery/deployable/barrier,/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/tiled,/area/surface/outpost/main/security) -"ch" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/structure/closet/secure_closet/guncabinet/phase,/turf/simulated/floor/tiled,/area/surface/outpost/main/security) -"ci" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/structure/closet/secure_closet/guncabinet/phase,/turf/simulated/floor/tiled,/area/surface/outpost/main/security) +"ch" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/structure/closet/secure_closet/guncabinet/phase,/obj/item/clothing/accessory/holster/hip,/turf/simulated/floor/tiled,/area/surface/outpost/main/security) +"ci" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/red/border{dir = 1},/obj/structure/closet/secure_closet/guncabinet/phase,/obj/item/clothing/accessory/holster/hip,/turf/simulated/floor/tiled,/area/surface/outpost/main/security) "cj" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/table/standard,/obj/item/weapon/book/codex/corp_regs,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/red/border{dir = 5},/turf/simulated/floor/tiled,/area/surface/outpost/main/security) "ck" = (/obj/machinery/status_display,/turf/simulated/wall,/area/surface/outpost/main/gateway) "cl" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/surface/outpost/main/gateway) diff --git a/maps/southern_cross/southern_cross_jobs.dm b/maps/southern_cross/southern_cross_jobs.dm index 12166d1478..17c4513443 100644 --- a/maps/southern_cross/southern_cross_jobs.dm +++ b/maps/southern_cross/southern_cross_jobs.dm @@ -17,23 +17,6 @@ var/const/access_explorer = 43 desc = "Explorer" region = ACCESS_REGION_GENERAL -//SC IDs - -/obj/item/weapon/card/id/medical/sar - assignment = "Search and Rescue" - rank = "Search and Rescue" - job_access_type = /datum/job/sar - -/obj/item/weapon/card/id/civilian/pilot - assignment = "Pilot" - rank = "Pilot" - job_access_type = /datum/job/pilot - -/obj/item/weapon/card/id/civilian/explorer - assignment = "Explorer" - rank = "Explorer" - job_access_type = /datum/job/explorer - //SC Jobs /* @@ -51,7 +34,6 @@ var/const/access_explorer = 43 spawn_positions = 1 supervisors = "company officials and Corporate Regulations" selection_color = "#1D1D4F" - idtype = /obj/item/weapon/card/id/gold req_admin_notify = 1 access = list() //See get_access() minimal_access = list() //See get_access() @@ -78,7 +60,6 @@ var/const/access_explorer = 43 spawn_positions = 2 supervisors = "the head of personnel" selection_color = "#515151" - idtype = /obj/item/weapon/card/id/civilian/pilot economic_modifier = 4 access = list(access_pilot, access_cargo, access_mining, access_mining_station) minimal_access = list(access_pilot, access_cargo, access_mining, access_mining_station) @@ -94,7 +75,6 @@ var/const/access_explorer = 43 spawn_positions = 4 supervisors = "the explorer leader and the head of personnel" selection_color = "#515151" - idtype = /obj/item/weapon/card/id/civilian/explorer economic_modifier = 4 access = list(access_explorer) minimal_access = list(access_explorer) @@ -115,7 +95,6 @@ var/const/access_explorer = 43 spawn_positions = 2 supervisors = "the chief medical officer" selection_color = "#515151" - idtype = /obj/item/weapon/card/id/medical economic_modifier = 4 access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_chemistry, access_virology, access_eva, access_maint_tunnels, access_external_airlocks, access_psychiatrist, access_explorer) minimal_access = list(access_medical, access_medical_equip, access_morgue, access_explorer) diff --git a/maps/southern_cross/southern_cross_jobs_vr.dm b/maps/southern_cross/southern_cross_jobs_vr.dm index 7835667529..4a1b8ee28c 100644 --- a/maps/southern_cross/southern_cross_jobs_vr.dm +++ b/maps/southern_cross/southern_cross_jobs_vr.dm @@ -9,7 +9,6 @@ var/const/SAR =(1<<14) icon_state = "cyan" primary_color = rgb(47,189,189) secondary_color = rgb(127,223,223) - job_access_type = /datum/job/sar /obj/item/weapon/card/id/explorer name = "identification card" @@ -18,28 +17,13 @@ var/const/SAR =(1<<14) primary_color = rgb(47,189,189) secondary_color = rgb(127,223,223) -/obj/item/weapon/card/id/explorer/pilot - assignment = "Pilot" - rank = "Pilot" - job_access_type = /datum/job/pilot - -/obj/item/weapon/card/id/explorer/explorer - assignment = "Explorer" - rank = "Explorer" - job_access_type = /datum/job/explorer - -/obj/item/weapon/card/id/explorer/head/ +/obj/item/weapon/card/id/explorer/head name = "identification card" desc = "A card which represents discovery of the unknown." icon_state = "cyanGold" primary_color = rgb(47,189,189) secondary_color = rgb(127,223,223) -/obj/item/weapon/card/id/explorer/head/pathfinder - assignment = "Pathfinder" - rank = "Pathfinder" - job_access_type = /datum/job/pathfinder - /datum/job/pathfinder title = "Pathfinder" flag = PATHFINDER @@ -51,7 +35,6 @@ var/const/SAR =(1<<14) spawn_positions = 1 supervisors = "the research director" selection_color = "#d6d05c" - idtype = /obj/item/weapon/card/id/explorer/head/pathfinder economic_modifier = 7 minimal_player_age = 7 @@ -69,7 +52,6 @@ var/const/SAR =(1<<14) spawn_positions = 2 supervisors = "the pathfinder and the head of personnel" selection_color = "#999440" - idtype = /obj/item/weapon/card/id/explorer/pilot economic_modifier = 5 minimal_player_age = 3 access = list(access_pilot) @@ -86,7 +68,6 @@ var/const/SAR =(1<<14) spawn_positions = 2 supervisors = "the pathfinder and the research director" selection_color = "#999440" - idtype = /obj/item/weapon/card/id/explorer/explorer economic_modifier = 6 access = list(access_explorer, access_research) minimal_access = list(access_explorer, access_research) @@ -102,7 +83,6 @@ var/const/SAR =(1<<14) spawn_positions = 2 supervisors = "the pathfinder and the chief medical officer" selection_color = "#999440" - idtype = /obj/item/weapon/card/id/medical/sar economic_modifier = 6 minimal_player_age = 3 access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_chemistry, access_eva, access_maint_tunnels, access_external_airlocks, access_pilot) diff --git a/maps/southern_cross/structures/closets/misc.dm b/maps/southern_cross/structures/closets/misc.dm index 17999641c0..18e02806d5 100644 --- a/maps/southern_cross/structures/closets/misc.dm +++ b/maps/southern_cross/structures/closets/misc.dm @@ -29,6 +29,7 @@ starts_with = list( /obj/item/weapon/gun/energy/phasegun = 2, + /obj/item/weapon/gun/energy/phasegun/pistol, /obj/item/weapon/cell/device/weapon = 2, /obj/item/clothing/accessory/permit/gun/planetside) diff --git a/maps/submaps/shelters/shelter_a.dmm b/maps/submaps/shelters/shelter_a.dmm index c631e60891..6211a4937d 100644 --- a/maps/submaps/shelters/shelter_a.dmm +++ b/maps/submaps/shelters/shelter_a.dmm @@ -73,7 +73,7 @@ /obj/item/weapon/storage/box/survival/space, /obj/item/weapon/extinguisher/mini, /obj/item/device/radio{ - icon_state = "walkietalkieOLD"; + icon_state = "walkietalkiebay"; name = "emergency radio" }, /obj/item/weapon/towel{ diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm index 453b4dc8c0..7616926a92 100644 --- a/maps/tether/submaps/_tether_submaps.dm +++ b/maps/tether/submaps/_tether_submaps.dm @@ -166,7 +166,52 @@ name = "Away Mission - Debris Field" z = Z_LEVEL_DEBRISFIELD +////////////////////////////////////////////////////////////////////////////////////// +// Gateway submaps go here +/datum/map_template/tether_lateload/gateway + name = "Gateway Submap" + desc = "Please do not use this." + mappath = null + associated_map_datum = null +/datum/map_z_level/tether_lateload/gateway_destination + name = "Gateway Destination" + z = Z_LEVEL_GATEWAY + +#include "gateway/snow_outpost.dm" +/datum/map_template/tether_lateload/gateway/snow_outpost + name = "Snow Outpost" + desc = "Big snowy area with various outposts." + mappath = 'gateway/snow_outpost.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination + +#include "gateway/zoo.dm" +/datum/map_template/tether_lateload/gateway/zoo + name = "Zoo" + desc = "Gigantic space zoo" + mappath = 'gateway/zoo.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination + +#include "gateway/carpfarm.dm" +/datum/map_template/tether_lateload/gateway/carpfarm + name = "Carp Farm" + desc = "Asteroid base surrounded by carp" + mappath = 'gateway/carpfarm.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination + +#include "gateway/snowfield.dm" +/datum/map_template/tether_lateload/gateway/snowfield + name = "Snow Field" + desc = "An old base in middle of snowy wasteland" + mappath = 'gateway/snowfield.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination + +#include "gateway/listeningpost.dm" +/datum/map_template/tether_lateload/gateway/listeningpost + name = "Listening Post" + desc = "Asteroid-bound mercenary listening post" + mappath = 'gateway/listeningpost.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination ////////////////////////////////////////////////////////////////////////////////////// // Admin-use z-levels for loading whenever an admin feels like #if AWAY_MISSION_TEST diff --git a/maps/tether/submaps/admin_use/aro.dmm b/maps/tether/submaps/admin_use/aro.dmm new file mode 100644 index 0000000000..86cc03caca --- /dev/null +++ b/maps/tether/submaps/admin_use/aro.dmm @@ -0,0 +1,22411 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"ac" = ( +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/space) +"ad" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/space) +"ae" = ( +/obj/machinery/computer/security/telescreen/entertainment, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"af" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"ag" = ( +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"ah" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/houseboat) +"ai" = ( +/turf/simulated/floor/wood, +/area/houseboat) +"aj" = ( +/obj/structure/table/marble, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"ak" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 10; + icon_state = "fwindow" + }, +/obj/machinery/door/blast/shutters{ + density = 1; + dir = 1; + icon_state = "shutter1"; + id = "dongleship_blast"; + layer = 3.3; + name = "Blast Shutters"; + opacity = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/houseboat) +"al" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"am" = ( +/obj/structure/bed/chair/comfy/black{ + icon_state = "comfychair_preview"; + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"an" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"ao" = ( +/obj/machinery/computer/gyrotron_control, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"ap" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"aq" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/wood, +/area/houseboat) +"ar" = ( +/obj/structure/flora/pottedplant, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "dongleship_blast"; + name = "exterior shutters"; + pixel_x = 28 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"as" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"at" = ( +/obj/machinery/door/blast/shutters{ + density = 1; + dir = 8; + icon_state = "shutter1"; + id = "dongleship_blast"; + layer = 3.3; + name = "Blast Shutters"; + opacity = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 10; + icon_state = "fwindow" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/houseboat) +"au" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/houseboat) +"av" = ( +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 1; + dir = 4; + icon_state = "shutter1"; + id = "dongleship_blast"; + layer = 3.3; + name = "Blast Shutters"; + opacity = 1 + }, +/obj/structure/window/reinforced{ + dir = 10; + icon_state = "fwindow" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/houseboat) +"aw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"ax" = ( +/obj/machinery/computer/card/centcom, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"ay" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/message_monitor, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"az" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"aA" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"aB" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"aC" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"aD" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/codex, +/turf/simulated/floor/carpet/blue, +/area/houseboat) +"aE" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"aF" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"aG" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "dongleship_blast"; + name = "exterior shutters"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"aH" = ( +/obj/machinery/vending/food/arojoan{ + density = 0; + pixel_x = -32 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"aI" = ( +/obj/machinery/vending/boozeomat{ + density = 0; + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"aJ" = ( +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"aK" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aL" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aM" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aN" = ( +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"aO" = ( +/obj/structure/sign/department/bridge, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"aP" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aQ" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aR" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aS" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aT" = ( +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aU" = ( +/obj/machinery/cooker/oven, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aV" = ( +/obj/machinery/cooker/grill, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aW" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aX" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"aY" = ( +/obj/effect/step_trigger/teleporter{ + dir = 2; + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + teleport_x = 99; + teleport_y = 104; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"aZ" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"ba" = ( +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bb" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"bc" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"bd" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"be" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bf" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bh" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bi" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bj" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bk" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"bl" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/plasteel, +/obj/item/stack/material/plasteel, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bm" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/diamond, +/obj/item/stack/material/gold, +/obj/item/stack/material/silver, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/uranium, +/obj/item/stack/material/uranium, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bo" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bp" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"br" = ( +/obj/structure/table/standard, +/obj/item/weapon/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bs" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 12; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bt" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"bu" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bv" = ( +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bw" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bx" = ( +/obj/structure/bed/chair{ + icon_state = "chair_preview"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"by" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/device/healthanalyzer/advanced, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/item/roller/adv, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bB" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bC" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bD" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bE" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bF" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bG" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 10; + icon_state = "fwindow" + }, +/turf/simulated/shuttle/plating, +/area/houseboat) +"bI" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bJ" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/houseboat/holodeck_area) +"bK" = ( +/obj/machinery/computer/HolodeckControl/houseboat{ + dir = 2 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bL" = ( +/obj/machinery/clonepod/transhuman, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bM" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bO" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bP" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bQ" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bR" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bS" = ( +/obj/machinery/pros_fabricator{ + req_access = list() + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bT" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Centcom Autolathe" + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bU" = ( +/obj/machinery/mecha_part_fabricator{ + req_access = list() + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bV" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"bW" = ( +/obj/machinery/transhuman/resleever, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"bX" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"bY" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"bZ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"ca" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"cb" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"cc" = ( +/obj/machinery/vending/medical{ + density = 0; + pixel_x = 0; + pixel_y = 0; + req_access = list() + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cd" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "dongleship_blast"; + name = "exterior shutters"; + pixel_x = 28 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"ce" = ( +/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{ + pixel_x = 0; + pixel_y = 0 + }, +/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 + }, +/obj/item/weapon/storage/box/body_record_disk, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 10; + icon_state = "fwindow" + }, +/obj/machinery/door/blast/shutters{ + density = 1; + dir = 2; + icon_state = "shutter1"; + id = "dongleship_blast"; + layer = 3.3; + name = "Blast Shutters"; + opacity = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/houseboat) +"cg" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"ch" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"ci" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cj" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"ck" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cl" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cm" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cn" = ( +/obj/effect/step_trigger/teleporter{ + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + pixel_y = -32; + teleport_x = 128; + teleport_y = 100; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"co" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cp" = ( +/obj/effect/step_trigger/teleporter{ + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + pixel_y = -32; + teleport_x = 129; + teleport_y = 100; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/houseboat) +"cq" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cr" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cs" = ( +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"ct" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cu" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cv" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cw" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cx" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/tank/air, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cy" = ( +/obj/machinery/door/blast/regular{ + icon_state = "pdoor1"; + dir = 8 + }, +/turf/space, +/area/houseboat) +"cz" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cA" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cB" = ( +/obj/structure/closet{ + name = "custodial" + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cC" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cD" = ( +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"cE" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"cF" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"cG" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"cH" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cI" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"cK" = ( +/obj/machinery/door/window/brigdoor/southleft{ + name = "Cell 3"; + icon_state = "leftsecure"; + dir = 1; + req_access = list(2); + id = "Cell 3" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "security_lockdown"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cL" = ( +/obj/effect/step_trigger/teleporter{ + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + teleport_x = 126; + teleport_y = 122; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cM" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"cN" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"cO" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"cP" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/houseboat) +"cQ" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cR" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3" + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cS" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cT" = ( +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cU" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 12; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"cW" = ( +/obj/machinery/computer/cryopod{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"cX" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"cY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"cZ" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/houseboat) +"da" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/houseboat) +"db" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"dc" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"dd" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/houseboat) +"de" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_grid, +/area/houseboat) +"df" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dg" = ( +/turf/simulated/floor/reinforced, +/area/houseboat) +"dh" = ( +/obj/item/device/perfect_tele, +/turf/simulated/floor/reinforced, +/area/houseboat) +"di" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "dongleship_blast"; + name = "exterior shutters"; + pixel_x = 28 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"dj" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"dk" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dl" = ( +/obj/structure/catwalk, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/plating, +/area/houseboat) +"dm" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/houseboat) +"dn" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/houseboat) +"do" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dp" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 6 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"ds" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dt" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"du" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 10 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dv" = ( +/obj/structure/railing, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, +/turf/simulated/floor/plating, +/area/houseboat) +"dw" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dx" = ( +/obj/machinery/computer/teleporter{ + icon_state = "computer"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"dy" = ( +/obj/machinery/light, +/obj/machinery/teleport/station{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"dz" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/reinforced, +/area/houseboat) +"dA" = ( +/obj/effect/step_trigger/teleporter{ + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + pixel_y = 0; + teleport_x = 101; + teleport_y = 109; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"dB" = ( +/obj/effect/step_trigger/teleporter{ + icon = 'icons/obj/stairs.dmi'; + invisibility = 0; + name = "stairs"; + pixel_y = 0; + teleport_x = 102; + teleport_y = 109; + teleport_z = 22 + }, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"dC" = ( +/obj/machinery/light, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/steel, +/area/houseboat) +"dD" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dE" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/plating, +/area/houseboat) +"dF" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dG" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dH" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dI" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dK" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + icon_state = "intact"; + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dM" = ( +/obj/structure/railing, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + icon_state = "intact"; + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/plating, +/area/houseboat) +"dN" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dO" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/houseboat) +"dP" = ( +/obj/structure/railing, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/houseboat) +"dR" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dS" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dT" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dU" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + icon_state = "map-supply"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dV" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dW" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"dX" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, +/turf/simulated/floor/plating, +/area/houseboat) +"dY" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"dZ" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/plating, +/area/houseboat) +"ea" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"eb" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/houseboat) +"ec" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/turf/simulated/floor/wood, +/area/houseboat) +"ed" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/wood, +/area/houseboat) +"ee" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/power/fractal_reactor/fluff/converter, +/turf/simulated/floor/plating, +/area/houseboat) +"ef" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"eg" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"eh" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 2; + icon_state = "freezer_1"; + use_power = 1; + power_setting = 20; + set_temperature = 73 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"ei" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"ej" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"ek" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/houseboat) +"el" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"em" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/plating, +/area/houseboat) +"en" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double, +/turf/simulated/floor/wood, +/area/houseboat) +"eo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/houseboat) +"ep" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/houseboat) +"eq" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/houseboat) +"er" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"es" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + icon_state = "intact"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"eu" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"ev" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/wood, +/area/houseboat) +"ew" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + icon_state = "intact"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"ex" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/houseboat) +"ey" = ( +/turf/unsimulated/wall, +/area/space) +"ez" = ( +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"eA" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/cruiser/cruiser) +"eB" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "cruiser_shuttle_bay_sensor"; + pixel_x = -11; + pixel_y = 28 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "cruiser_shuttle_bay"; + pixel_x = 0; + pixel_y = 28; + tag_door = "cruiser_shuttle_bay_hatch" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/computer/shuttle_control/cruiser_shuttle, +/turf/simulated/floor/reinforced, +/area/houseboat) +"eC" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"eD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"eE" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"eF" = ( +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"eG" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/desert) +"eH" = ( +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/desert) +"eI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"eK" = ( +/obj/structure/catwalk, +/obj/machinery/vending/tool, +/turf/simulated/floor/plating, +/area/houseboat) +"eL" = ( +/obj/structure/catwalk, +/obj/machinery/vending/engivend, +/turf/simulated/floor/plating, +/area/houseboat) +"eM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/plating, +/area/houseboat) +"eN" = ( +/obj/machinery/computer/shuttle_control/cruiser_shuttle, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"eP" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"eQ" = ( +/obj/item/weapon/beach_ball, +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"eR" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/houseboat/holodeck/beach) +"eS" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/desert) +"eW" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/nitrogen, +/turf/simulated/floor/plating, +/area/houseboat) +"eX" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"eY" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"eZ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plating, +/area/houseboat) +"fa" = ( +/obj/effect/floor_decal/techfloor/orange{ + icon_state = "techfloororange_edges"; + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fb" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"fc" = ( +/obj/effect/floor_decal/techfloor/orange{ + icon_state = "techfloororange_edges"; + dir = 9 + }, +/obj/effect/floor_decal/corner_techfloor_grid, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fd" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beach" + }, +/area/houseboat/holodeck/beach) +"fe" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"ff" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"fh" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/plating, +/area/houseboat) +"fi" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen{ + icon_state = "o2_map"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fj" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fk" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + icon_state = "air_map"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fl" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "cruiser_shuttle"; + pixel_x = 25; + pixel_y = 0; + tag_door = "cruiser_shuttle_hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"fm" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"fn" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + icon_state = "techfloororange_corners"; + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange/corner, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fo" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/floor_decal/techfloor/orange{ + icon_state = "techfloororange_edges"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fp" = ( +/obj/effect/floor_decal/techfloor/orange/corner{ + icon_state = "techfloororange_corners"; + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange/corner{ + icon_state = "techfloororange_corners"; + dir = 8 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + icon_state = "corner_techfloor_grid"; + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fq" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/houseboat) +"fr" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fs" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"ft" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fu" = ( +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"fv" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/rcd, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/turf/simulated/floor/plating, +/area/houseboat) +"fw" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/houseboat/holodeck/beach) +"fx" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/houseboat/holodeck/snow) +"fy" = ( +/obj/structure/catwalk, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor/plating, +/area/houseboat) +"fz" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fA" = ( +/obj/machinery/power/fractal_reactor/fluff/converter, +/obj/structure/cable/cyan, +/turf/simulated/floor/plating, +/area/houseboat) +"fB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fC" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"fD" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "cruiser_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/cruiser/cruiser) +"fE" = ( +/obj/effect/floor_decal/techfloor/orange{ + icon_state = "techfloororange_edges"; + dir = 6 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fF" = ( +/obj/effect/floor_decal/techfloor/orange{ + icon_state = "techfloororange_edges"; + dir = 10 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/houseboat) +"fG" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fH" = ( +/turf/simulated/floor/plating, +/area/houseboat) +"fI" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate, +/turf/simulated/floor/plating, +/area/houseboat) +"fJ" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/houseboat) +"fK" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/cruiser/cruiser) +"fL" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"fM" = ( +/obj/machinery/atmospherics/unary/heater, +/turf/simulated/floor/plating, +/area/houseboat) +"fN" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor/plating, +/area/houseboat) +"fO" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/telecomms/relay/preset/houseboat{ + toggled = 0 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"fR" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/area/shuttle/cruiser/cruiser) +"fS" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"fT" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"fU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"fV" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"fW" = ( +/turf/simulated/floor/holofloor/space, +/area/houseboat/holodeck/space) +"fX" = ( +/obj/structure/bed/holobed, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"fY" = ( +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"fZ" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"ga" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/holostool, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"gb" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless, +/area/space) +"gc" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gd" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"ge" = ( +/turf/simulated/floor/holofloor/desert, +/area/houseboat/holodeck/picnic) +"gf" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gg" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/space) +"gh" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"gi" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/freezer{ + dir = 2; + icon_state = "freezer_1"; + use_power = 1; + power_setting = 20; + set_temperature = 73 + }, +/turf/simulated/floor/plating, +/area/houseboat) +"gj" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gk" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gl" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gm" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/houseboat/holodeck/picnic) +"gn" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/bunking) +"go" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"gp" = ( +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"gq" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gr" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gs" = ( +/obj/structure/holohoop, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gt" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gu" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/under/color/red, +/obj/item/weapon/holo/esword/red, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"gv" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"gw" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"gx" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gy" = ( +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"gz" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"gA" = ( +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gB" = ( +/obj/item/weapon/beach_ball/holoball, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gC" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/houseboat/holodeck/gaming) +"gD" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gE" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gF" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gG" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gH" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/basketball) +"gI" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/under/color/green, +/obj/item/weapon/holo/esword/green, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"gJ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/houseboat/holodeck/thunderdome) +"gK" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"gL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"gM" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/houseboat/holodeck/off) +"gN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"gQ" = ( +/obj/machinery/power/fractal_reactor/fluff/smes, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"gR" = ( +/obj/machinery/power/fractal_reactor/fluff/smes, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/houseboat) +"gS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/houseboat) + +(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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(11,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(12,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(13,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(14,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(15,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(16,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(17,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(18,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(19,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(20,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(21,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(22,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(23,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +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 +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 +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 +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 +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 +"} +(26,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(35,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(36,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(45,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(50,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(51,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(55,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(56,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(57,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(58,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(59,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(60,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(61,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(62,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(64,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(68,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(69,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(70,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(71,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(75,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(76,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(77,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(78,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(79,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(80,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(85,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(86,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(87,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +dg +dg +fm +dg +dg +dg +dg +ab +af +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(88,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +dg +dg +dg +dg +dg +dg +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(89,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +af +ek +ab +ab +dg +dg +dg +fa +fn +fE +dg +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(90,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +dL +ab +eb +eq +ab +eu +dg +dg +dg +dg +fo +dg +dg +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(91,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +af +dK +dm +dF +dm +ba +dg +dg +dg +dg +dg +fo +dg +dg +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +dk +dD +dM +dS +dF +dm +ba +dg +dg +dg +dg +dg +fo +dg +dg +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,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 +aa +aa +aa +aa +ab +ab +ab +at +ab +ab +ab +ab +cJ +cR +cR +ab +dl +dm +dm +dR +dF +dm +ab +eu +dg +dg +dg +dg +fo +dg +dg +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(94,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 +ab +ab +at +at +at +ab +ab +cm +cs +aN +cm +ab +bF +aT +cJ +cS +cS +ab +dm +dm +dm +dU +ef +em +df +ab +dg +dg +dg +fc +fp +fF +dg +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +at +at +ab +bP +aT +aT +aT +cg +ab +ab +ab +cu +ab +ab +cz +aT +cK +cT +cT +ab +dn +dm +dN +dT +ee +ab +ab +ab +ab +dg +dg +dg +dg +dg +dg +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +br +by +bE +aT +bQ +aT +aT +aT +ch +ab +ab +bX +aN +bX +ba +aT +aT +cJ +cT +cT +ab +dp +dE +dH +dX +af +ab +ab +ab +ab +ab +dg +dg +fq +dg +dg +dg +dg +ab +af +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +at +at +at +ab +af +aK +aP +ab +bh +ap +aT +aT +aT +aT +aT +aT +ce +af +ab +aN +aN +aN +aN +ab +aT +cH +cJ +cU +cX +ab +do +dm +dF +dV +ab +en +ab +en +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gg +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ab +ab +af +aq +ai +ai +ai +al +aH +aL +aQ +ab +bi +ap +bz +bF +aT +aT +aT +aT +aT +ba +aN +aN +aN +aN +aN +af +ab +ab +ab +ab +ab +ab +do +dm +dF +ab +ec +eo +ab +ev +ec +ab +ex +fi +fs +fA +fH +fM +ab +gb +gg +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,1) = {" +aa +aa +aa +aa +ab +af +ah +ai +ai +al +ai +ag +ag +ag +ag +ag +aL +aR +ab +bj +bs +bA +bG +bL +bR +bW +cc +af +af +ck +aN +aN +aN +aN +aN +cA +aN +cL +ab +ab +ab +do +dm +dF +ab +ed +ai +ab +ai +ed +ab +eW +fh +fr +fG +fH +fH +ab +gb +gg +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,1) = {" +aa +aa +aa +ab +ae +ag +ag +ag +ag +am +ai +ag +az +aC +az +ag +aL +aS +ab +ab +ab +ab +bH +bH +bH +ab +ab +ab +ci +aN +co +co +aN +cw +af +ab +ab +ab +ab +ab +ab +dq +cu +ab +ab +ab +cu +ab +cu +ab +ab +eK +eX +fv +fJ +gi +gQ +ab +gb +gg +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,1) = {" +aa +aa +ab +ab +ae +ag +ag +aj +ag +am +ai +ag +aA +aD +aA +ag +aL +aT +ba +aN +aN +aN +aN +aN +aN +bX +aJ +aN +aN +cl +cn +bv +cv +aN +aN +aJ +aN +cM +aN +bX +aJ +aN +aN +bX +aJ +aN +aN +aN +aN +bX +aJ +ea +fj +ft +fI +fQ +gN +ab +gb +gg +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,1) = {" +aa +aa +ab +ab +ae +ag +ag +aj +ag +am +ai +ag +aA +aA +aA +ag +aL +aT +ba +bk +bt +aN +aN +aN +aN +aN +aJ +aN +aN +cl +cp +bv +cv +aN +aN +aJ +bk +aN +aN +aN +aJ +bk +aN +aN +aJ +bk +aN +aN +aN +aN +aJ +ea +fj +dG +fO +fQ +gS +ab +gb +gg +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,1) = {" +aa +aa +aa +ab +ae +ag +ag +ag +ag +am +ai +ag +aB +aB +aB +ag +aL +aU +ab +ab +ab +ab +bH +bH +bH +ab +ab +ab +ci +aN +cq +cq +aN +cw +af +ab +af +cN +cV +cY +ab +dr +cu +ab +ab +ab +cu +ab +cu +ab +ab +eL +eX +fy +fN +gi +gR +ab +gb +gg +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,1) = {" +aa +aa +aa +aa +ab +af +ai +ai +ai +an +ai +ag +ag +ag +ag +ag +aL +aV +ab +bl +bu +bB +bv +bv +bv +bB +bv +af +af +ck +aN +aN +aN +aN +ba +cB +ab +cO +cW +cZ +ab +ds +dm +dm +ab +ed +ai +ab +ai +ed +ab +eM +eZ +fB +fP +fH +fH +ab +gb +gg +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ab +ab +af +ar +au +ai +ai +an +aI +aL +aW +ab +bm +bv +bv +bv +bv +bv +bv +bv +bv +ba +aN +aN +aN +aN +aN +ab +ab +ab +ab +ab +ab +ab +ds +dm +dm +ab +ec +eo +ab +ev +ec +ab +ab +fk +fz +fA +fH +fM +ab +gb +gg +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +av +av +av +ab +af +aM +aX +ab +bn +bv +bC +bv +bM +bS +bY +bv +bv +af +ab +aN +aN +aN +aN +ab +aT +cI +cP +cI +aW +ab +dt +dG +dm +dY +ab +en +ab +en +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gg +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +bw +bD +bI +bN +bT +bZ +bv +bv +cj +ab +ab +bk +aN +bk +ba +aT +aT +aT +aT +aT +ab +ds +dF +dm +dW +af +ab +ab +ab +ab +ab +dg +dg +fm +dg +dg +dg +dg +ab +af +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +av +av +ab +bU +ca +bv +bv +cj +ab +ab +ab +cu +ab +ab +aT +aT +aT +aT +aT +df +dv +dF +dm +dW +eh +ab +ab +ab +ab +dg +dg +dg +dg +dg +dg +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(109,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 +ab +ab +av +av +av +ab +ab +cr +ct +aN +cx +ab +cC +ab +cu +ab +cu +ab +du +dH +dE +dZ +eg +er +ab +ab +dg +dg +aN +aN +aN +aN +aN +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(110,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 +aa +aa +aa +aa +ab +ab +ab +av +ab +ab +ab +ab +cQ +ab +da +ab +dm +dF +dm +dm +ei +dm +ab +eu +dg +eA +eA +eA +fC +eA +eA +eA +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(111,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +dw +dI +dO +dm +ei +dm +ba +dg +dg +eA +eN +fb +fu +fb +fK +fR +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(112,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +af +dP +ea +el +ea +ba +dg +dg +eA +eY +fl +fu +fb +fK +fR +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(113,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +af +ej +es +ab +eB +dg +eA +eA +eA +fD +eA +eA +eA +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(114,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ep +ew +ab +ex +dg +dg +aN +aN +aN +aN +aN +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(115,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ex +ex +dg +dg +dg +dg +dg +dg +dg +dg +aN +cy +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(116,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ex +dg +dg +fq +dg +dg +dg +dg +ab +af +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(117,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(118,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(119,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(120,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +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 +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 +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 +"} +(121,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +ey +gL +gL +gL +gL +gL +ey +gL +gL +gL +gL +gL +ey +gL +gL +gL +gL +gL +ey +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(122,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +ez +eC +eP +fd +fw +fw +fL +fS +fZ +gc +gc +gj +fL +gp +gp +gp +gp +gp +gK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(123,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +at +at +at +at +at +ab +ab +aa +aa +aa +aa +aa +aa +ez +eC +eQ +fd +fw +fw +fL +fT +ga +gd +ga +gk +fL +gp +gw +gz +gC +gp +gK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(124,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +cD +cD +cD +cD +db +dg +dx +ab +aa +aa +aa +aa +aa +aa +ez +eC +eC +fd +fw +fw +fL +fU +ga +gd +ga +gl +fL +gp +gw +gz +gC +gp +gK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(125,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ab +ab +ab +ab +ab +aa +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +ab +cE +cD +cD +cD +db +dh +dy +ab +aa +aa +aa +aa +aa +aa +ez +eC +eC +fd +fw +fw +fL +fU +fU +ge +fU +gk +fL +gp +gw +gz +gC +gp +gK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(126,1,1) = {" +aa +aa +ac +ad +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +aF +ab +aN +aY +bb +ab +aa +ab +bJ +bJ +bJ +bJ +bJ +cf +aa +aa +aa +aa +aa +aa +cy +ap +ap +cD +cD +db +di +dz +ab +aa +aa +aa +aa +aa +aa +ez +eC +eR +fd +fw +fw +fL +fV +fV +gf +gf +gm +fL +gp +gp +gp +gp +gp +gK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(127,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ak +ao +as +aw +ap +aE +af +ab +aO +ab +bc +ab +ab +ab +bJ +bJ +bJ +bJ +bJ +cf +aa +aa +aa +aa +aa +aa +cy +ap +ap +ap +ap +dc +ab +ab +ab +aa +aa +aa +aa +aa +aa +ey +eD +eD +eD +eD +eD +ey +eD +eD +eD +eD +eD +ey +eD +eD +eD +eD +eD +ey +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(128,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ak +ap +ap +ap +ap +ap +ap +aJ +aN +aN +aN +aN +aN +aJ +bJ +bJ +bJ +bJ +bJ +cf +aa +aa +aa +aa +aa +aa +cy +ap +ap +ap +ap +dd +cD +dA +ab +aa +aa +aa +aa +aa +aa +ez +eE +eF +eF +eF +eF +fL +fW +fW +fW +fW +fW +fL +gq +gx +gA +gD +gE +gK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(129,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ak +ap +ap +ax +as +ap +aG +aJ +aN +aN +bd +aN +aN +aJ +bJ +bJ +bJ +bJ +bJ +cf +aa +aa +aa +aa +aa +aa +cy +ap +ap +ap +ap +dd +cD +dB +ab +aa +aa +aa +aa +aa +aa +ez +eF +eF +fe +eF +eF +fL +fW +fW +fW +fW +fW +fL +gr +gx +gA +gD +gF +gK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(130,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ak +ao +as +ay +as +ap +af +ab +aO +ab +ab +ab +bc +ab +bJ +bJ +bJ +bJ +bJ +cf +aa +aa +aa +aa +aa +aa +cy +ap +ap +ap +ap +de +ab +ab +ab +aa +aa +aa +aa +aa +aa +ez +eF +eF +eF +fx +eF +fL +fW +fW +fW +fW +fW +fL +gs +gx +gB +gD +gG +gK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(131,1,1) = {" +aa +aa +ac +ad +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +be +be +ap +ab +bK +bO +bV +cb +cd +ab +aa +aa +aa +aa +aa +aa +cy +ap +ap +cD +cD +db +dj +dj +ab +aa +aa +aa +aa +aa +aa +ez +eF +eF +ff +eF +eF +fL +fW +fW +fW +fW +fW +fL +gt +gx +gA +gD +gH +gK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(132,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ab +aZ +bf +bo +bx +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +ab +cF +cD +cD +cD +db +cG +dC +ab +aa +aa +aa +aa +aa +aa +ez +eF +eF +eF +eF +eF +fL +fW +fW +fW +fW +fW +fL +gq +gx +gA +gD +gE +gK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(133,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ab +aZ +bf +bp +bx +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +cG +cG +cD +cD +db +cG +cG +ab +aa +aa +aa +aa +aa +aa +ey +eD +eD +eD +eD +eD +ey +eD +eD +eD +eD +eD +ey +eD +eD +eD +eD +eD +ey +gL +gL +gL +gL +gL +ey +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 +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 +aa +aa +"} +(134,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ab +aE +bg +bq +ap +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +av +av +av +av +av +ab +ab +aa +aa +aa +aa +aa +aa +ez +eG +eH +eH +eH +eH +fL +fX +fX +fX +fX +fX +go +gu +gy +gy +gy +gI +go +gM +gM +gM +gM +gM +gK +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 +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 +aa +aa +"} +(135,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +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 +ez +eH +eH +eS +eH +eH +fL +fY +fY +fY +fY +fY +go +gv +gy +gy +gy +gJ +go +gM +gM +gM +gM +gM +gK +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 +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 +aa +aa +"} +(136,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +ez +eH +eH +eH +eH +eH +fL +fY +fY +fY +gh +gn +go +gv +gy +gy +gy +gJ +go +gM +gM +gM +gM +gM +gK +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 +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 +aa +aa +"} +(137,1,1) = {" +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +ez +eH +eH +eH +eH +eH +fL +fY +fY +fY +gh +gn +go +gv +gy +gy +gy +gJ +go +gM +gM +gM +gM +gM +gK +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 +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 +aa +aa +"} +(138,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ez +eH +eS +eH +eH +eG +fL +fY +fY +fY +fY +fY +go +gu +gy +gy +gy +gI +go +gM +gM +gM +gM +gM +gK +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 +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 +aa +aa +"} +(139,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ey +eI +eI +eI +eI +eI +ey +eI +eI +eI +eI +eI +ey +eI +eI +eI +eI +eI +ey +eI +eI +eI +eI +eI +ey +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 +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 +aa +aa +"} +(140,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/gateway/carpfarm.dm b/maps/tether/submaps/gateway/carpfarm.dm new file mode 100644 index 0000000000..b5f0524e2c --- /dev/null +++ b/maps/tether/submaps/gateway/carpfarm.dm @@ -0,0 +1,22 @@ +/area/awaymission/carpfarm + icon_state = "blank" + requires_power = 0 + +/area/awaymission/carpfarm/arrival + icon_state = "away" + requires_power = 0 + +/area/awaymission/carpfarm/base + icon_state = "away" + +/area/awaymission/carpfarm/base/entry + icon_state = "blue" + +/obj/item/weapon/paper/awaygate/carpfarm/suicide + name = "suicide letter" + info = "dear rescue,

my name markov. if reading this, i am dead. i am was miner for 3rd union of soviet socialist republiks. \ + comrades yuri, dimitri, ivan, all eaten by space carp. all started month ago when soviet shipment sent new sonic jackhammers. \ + carp attracted to vibrations. killed dimitri. yuri thought good idea to jury-rig hoverpods with lasers. not good idea. \ + very bad idea. only pissed them off. giant white carp appeared. killed ivan. then giant carp cracked yuri pod like \ + eggshell and swallowed yuri.

no food. can't call help. carp chewed comms relay. 2 weeks since then. \ + can't eat carp. is poison.

avenge comrades. avenge me. i die in glory.

-markov" \ No newline at end of file diff --git a/maps/tether/submaps/gateway/carpfarm.dmm b/maps/tether/submaps/gateway/carpfarm.dmm new file mode 100644 index 0000000000..167369911c --- /dev/null +++ b/maps/tether/submaps/gateway/carpfarm.dmm @@ -0,0 +1,20645 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/obj/effect/blocker, +/turf/space{ + density = 1; + desc = "You can't go there!"; + name = "The 4th Wall" + }, +/area/space) +"ac" = ( +/turf/simulated/mineral, +/area/space) +"ad" = ( +/obj/effect/blocker, +/turf/space, +/area/space) +"ae" = ( +/mob/living/simple_mob/animal/space/carp, +/turf/space, +/area/space) +"af" = ( +/obj/effect/landmark/gateway_scatter, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/space) +"ah" = ( +/turf/simulated/mineral/floor/ignore_mapgen, +/area/space) +"aj" = ( +/obj/item/weapon/pickaxe/jackhammer, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/space) +"ak" = ( +/turf/simulated/mineral, +/area/mine/unexplored) +"al" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"am" = ( +/turf/simulated/wall/iron, +/area/awaymission/carpfarm/base) +"an" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/smes/buildable, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"ao" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"ap" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aq" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"ar" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"as" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"at" = ( +/obj/machinery/shower{ + dir = 4; + icon_state = "shower"; + pixel_x = 5 + }, +/obj/machinery/door/window, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/carpfarm/base) +"au" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"av" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aw" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"ax" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"ay" = ( +/obj/structure/bedsheetbin, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"az" = ( +/obj/item/weapon/storage/toolbox/electrical, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/weapon/paper/awaygate/carpfarm/suicide, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aB" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aC" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aD" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aE" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aF" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aG" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aH" = ( +/obj/item/weapon/bedsheet, +/obj/structure/bed/padded, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"aI" = ( +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"aJ" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/item/weapon/mining_scanner, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aK" = ( +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aL" = ( +/obj/structure/closet/toolcloset, +/obj/item/weapon/pickaxe/jackhammer, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aM" = ( +/obj/machinery/gateway{ + density = 0; + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aN" = ( +/obj/machinery/gateway, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aO" = ( +/obj/machinery/gateway{ + density = 0; + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aP" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aR" = ( +/obj/structure/table/woodentable, +/obj/random/action_figure, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"aS" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aU" = ( +/obj/structure/closet/jcloset, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aV" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aW" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aX" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aY" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aZ" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"ba" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bb" = ( +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bc" = ( +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"be" = ( +/obj/structure/closet/gimmick/russian, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bf" = ( +/obj/structure/closet/gimmick/russian, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer, +/obj/item/trash/syndi_cakes, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bh" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/under/syndicate/tacticool, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bi" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark/costume, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bj" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bk" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/crate/internals, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bl" = ( +/obj/structure/closet/crate/internals, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bm" = ( +/obj/structure/closet/crate/plastic, +/obj/random/contraband, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bn" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bo" = ( +/obj/machinery/door/airlock/mining, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bp" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bq" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"br" = ( +/obj/item/mecha_parts/mecha_equipment/tool/drill, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bs" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bt" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bu" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bv" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bw" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bx" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"by" = ( +/obj/machinery/vending/coffee{ + prices = list() + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bz" = ( +/obj/machinery/vending/sovietsoda, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bA" = ( +/obj/machinery/vending/snack{ + prices = list() + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bB" = ( +/obj/machinery/vending/cigarette{ + prices = list() + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bC" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bD" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/weapon/gun/projectile/shotgun/pump/rifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bE" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bF" = ( +/obj/structure/dispenser/oxygen, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1375; + master_tag = "carp_airlock"; + name = "interior access button"; + pixel_x = 26; + pixel_y = -26; + req_one_access = newlist() + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bK" = ( +/obj/machinery/suit_cycler/mining, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bL" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bM" = ( +/obj/mecha/working/hoverpod/combatpod, +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bN" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bO" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bP" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/wall/iron, +/area/awaymission/carpfarm/base) +"bQ" = ( +/obj/machinery/door/airlock/external{ + frequency = 1375; + icon_state = "door_locked"; + id_tag = "carp_inner"; + locked = 1; + name = "External Access"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bS" = ( +/obj/item/weapon/reagent_containers/food/snacks/cubancarp, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bT" = ( +/obj/item/weapon/reagent_containers/food/snacks/carpmeat, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bV" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1375; + id_tag = "carp_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1375; + id_tag = "carp_airlock"; + pixel_x = -28; + pixel_y = 0; + req_access = null; + tag_airpump = "carp_pump"; + tag_chamber_sensor = "carp_sensor"; + tag_exterior_door = "carp_outer"; + tag_interior_door = "carp_inner" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + icon_state = "warningcee"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bW" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1375; + id_tag = "carp_pump" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + icon_state = "warningcee"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bX" = ( +/obj/structure/closet/emcloset, +/obj/item/weapon/storage/toolbox/emergency, +/obj/machinery/airlock_sensor{ + frequency = 1375; + id_tag = "carp_sensor"; + pixel_x = 28 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bY" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"ca" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/closet/crate/bin, +/obj/item/trash/candy/proteinbar, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"cb" = ( +/obj/machinery/door/airlock/external{ + frequency = 1375; + icon_state = "door_locked"; + id_tag = "carp_outer"; + locked = 1; + name = "External Access"; + req_access = newlist() + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"cc" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/awaymission/carpfarm/base) +"cd" = ( +/turf/simulated/floor/airless, +/area/awaymission/carpfarm/base) +"ce" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1375; + master_tag = "carp_airlock"; + name = "exterior access button"; + pixel_x = 26; + pixel_y = 26; + req_access = newlist() + }, +/turf/simulated/floor/airless, +/area/awaymission/carpfarm/base) +"cf" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"cg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/airless, +/area/space) +"ch" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"ci" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/airless, +/area/space) +"cj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/space) +"ck" = ( +/turf/simulated/floor/airless, +/area/space) +"cl" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/airless, +/area/space) +"cm" = ( +/obj/effect/gibspawner/human, +/turf/simulated/floor/airless, +/area/space) +"cn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/airless, +/area/space) +"co" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/space) +"cp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/airless, +/area/space) + +(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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +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 +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 +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +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 +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 +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +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 +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 +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +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 +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 +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +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 +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 +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(14,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +ac +ac +ac +ac +ac +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +ae +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 +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +aj +af +ah +ah +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +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 +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +af +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +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 +aa +aa +aa +aa +aa +ac +ac +ac +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 +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ah +ah +af +ah +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(36,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +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 +ae +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(42,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(43,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(44,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(45,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(46,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ae +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 +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(47,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(48,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +ae +aa +aa +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(49,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(50,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(51,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +af +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(54,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +aj +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(55,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +aa +aa +aa +aa +ae +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 +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +af +ah +ah +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(56,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(57,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(58,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ak +ak +ak +ak +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +af +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(59,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ak +ak +ak +ak +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(60,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +ak +ak +ak +ak +ak +ak +ak +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 +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 +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(61,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +ak +ak +ak +aa +aa +aa +aa +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +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 +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(62,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +ak +ak +ak +ak +ak +ak +aa +ak +ak +ak +am +am +am +am +am +am +am +ba +ba +ba +am +am +am +am +am +am +al +al +cf +cf +cf +cf +cf +cf +cf +cf +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(63,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +an +az +aJ +aJ +aJ +am +bb +bb +bb +am +bq +bc +bc +bM +am +al +aa +aa +al +al +aa +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(64,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ao +aA +aK +aK +aK +aW +bc +bc +bc +am +br +bc +bc +bN +am +al +aa +aa +al +al +al +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ap +aB +aL +aL +aL +am +bc +bc +bc +am +bs +bc +bG +bO +am +al +aa +aa +al +al +aa +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +bd +bc +bc +am +bt +bc +bH +bP +am +am +cc +cg +cj +cj +cj +cj +cj +cn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(67,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aq +aC +aM +aQ +aS +am +bc +bc +bc +am +bu +bc +bI +bQ +bV +cb +cd +ch +ck +ck +ck +ck +cm +co +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(68,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ar +aD +aN +aQ +aS +aX +bc +bc +bc +bo +bc +bc +bJ +bQ +bW +cb +ce +ch +ck +ck +ck +ck +ck +co +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(69,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +as +aE +aO +aQ +aS +am +bc +bc +bc +am +bv +bF +bK +am +bX +am +cd +ci +cl +cl +cl +cl +cl +cp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +bd +bc +bc +am +am +am +am +am +am +am +ak +aa +al +al +aa +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(71,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +at +aF +aP +aP +aP +am +bc +bc +bc +am +bw +bx +bx +bx +bY +am +ak +ak +al +al +al +al +al +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(72,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +au +aG +aG +aG +aG +aY +bc +bc +bc +bp +bx +bx +bx +bx +bx +am +ak +ak +ak +al +aa +al +al +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(73,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +av +am +av +am +av +am +bc +bc +bc +am +by +bx +bx +bR +bx +am +ak +ak +ak +ak +ak +ak +al +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(74,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aw +am +aw +am +aw +am +bc +bc +bc +am +bz +bx +bL +bS +bZ +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(75,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +bd +bc +bc +am +bA +bx +bL +bT +bZ +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(76,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ax +aH +aI +aR +aH +am +bc +bc +bc +am +bB +bx +bx +bU +bx +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(77,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ay +aI +aI +aI +aI +aZ +bc +bc +bc +bp +bx +bx +bx +bx +bx +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(78,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ax +aH +aI +ax +aH +am +bc +bc +bc +am +bC +bx +bx +bx +ca +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(79,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +bj +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 +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(80,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aT +aS +be +aS +bk +aS +bD +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aT +aS +bf +aS +bl +aS +bE +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aS +aS +aS +aS +aS +aS +aS +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aS +aS +aS +aS +aS +aS +aS +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aU +aS +bg +aS +bm +aS +aT +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(85,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aV +aS +bh +aS +aT +aS +aT +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +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 +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(86,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aV +aS +bi +aS +bn +aS +aT +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(87,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(88,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(89,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(90,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(91,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(92,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(94,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +ae +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ae +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +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 +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(109,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(110,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +af +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(111,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(112,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(113,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ah +ah +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(114,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +aj +ah +af +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +ac +aa +ac +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(115,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +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 +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(116,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +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 +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(117,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +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 +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(118,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +af +ah +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(119,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(120,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +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 +aa +aa +aa +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(121,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ae +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 +ac +ac +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 +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(122,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(123,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(124,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(125,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +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 +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(126,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +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 +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(127,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +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 +aa +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(128,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(129,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +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 +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 +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 +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(130,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +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 +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 +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 +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(131,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +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 +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 +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(132,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +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 +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 +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 +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(133,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +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 +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 +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 +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 +ad +ad +aa +aa +aa +aa +aa +aa +aa +"} +(134,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(135,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(136,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(137,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(138,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(139,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(140,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/gateway/listeningpost.dm b/maps/tether/submaps/gateway/listeningpost.dm new file mode 100644 index 0000000000..5f32d82147 --- /dev/null +++ b/maps/tether/submaps/gateway/listeningpost.dm @@ -0,0 +1,221 @@ +/obj/item/weapon/paper/listneningpost/mission + name = "\improper Operation: Watchtower" + info = {"Mission Details: You have been assigned to a newly constructed listening post + constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. + Accurate intel is crucial to the success of our operatives onboard, do not fail us."} + +/obj/item/weapon/paper/listneningpost/reciept + name = "\improper SpacEx reciept" + info = {"1 x Stechtkin pistol plus ammo - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"} + + +//////// 2558 //////// + +/obj/item/weapon/paper/listneningpost/year2558/april + name = "\improper April 2558 report" + info = {"A good start to the operation: intercepted Nanotrasen military communications. + A convoy is scheduled to transfer nuclear warheads to a new military base. This + is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."} + +/obj/item/weapon/paper/listneningpost/year2558/may + name = "\improper May 2558 report" + info = {"I have intercepted faint transmissions from what appears to be some sort of pirate + radio station. They do not appear to be relevant to my assignment. I also learned that + the NDV Brutus is back in operation after being taken out of commission during our + attack in March. Ever since Townes got killed, we've lost our eyes on the inside at + Nanotrasen. Hence my being here..."} + +/obj/item/weapon/paper/listneningpost/year2558/june + name = "\improper June 2558 Report" + info = {"Sounds like Nanotrasen stepped up their recruitment efforts. Virgo is no longer a + secluded research station, and its scientists are no longer hand-picked. This could + be a major oppertunity for us to start snooping around."} + +/obj/item/weapon/paper/listneningpost/year2558/july + name = "\improper July 2558 Report" + info = {"The crew has at least tripled in size since NT got rid of the application-based + process of recruitment. We've managed to find a few people interested in aiding + our cause. From atmospherics sabotoge to straight up bombing the place, we've got + several people ready to go in posing as nothing but more grey tide. It's perfect."} + +/obj/item/weapon/paper/listneningpost/year2558/august + name = "\improper August 2558 Report" + info = {"Sounds like our agents have been successful in rattling things up. With their recuitment + policies laxed, we've been able to carry out several attacks on the VORE. It sounds like + we're the least of their problems, though. They've discovered a new technology. Something + they're calling Redspace."} + +/obj/item/weapon/paper/listneningpost/year2558/september + name = "\improper September 2558 Report" + info = {"Something REALLY BAD is brewing at the VORE. This Redspace shit seems to have attracted + the attention of the cult of Nar-Sie. I think Nanotrasen is trying to weaponize it. We + need to put a stop to this before Nanotrasen can use these weapons against innocent + people and rival companies."} + +/obj/item/weapon/paper/listneningpost/year2558/october + name = "\improper October 2558 Report" + info = {"Oh my god, if it weren't for the impending doom, I'd be laughing my ass off at + all the hell VORE has put up with this month. Near mutiny over a retarded clown, + redspace aliens coming to kill them, and then V.G. Station crew getting mixed up + in a transfer which led to a major riot where DEATHSQUAD had to come clean up the + mess! We shouldn't have to worry about the VORE, but they know about something + called the Citadel. Apparently the cultists are trying to use redspace to bring + in an army from another dimension. We have no time left. We have to strike while + there's still something worth saving."} + +/obj/item/weapon/paper/listneningpost/year2558/november + name = "\improper November 2558 Report" + info = {"Maybe these VORE people aren't so bad after all. Mike says they actually HELPED during + our (apparently failed) attack on the Citadel. Shame they work for an evil corporation + like Nanotrasen though. They seem like a group of okay guys. Anyway, beside that, there + was a lot of commotion at the VORE recently. Space-time anomalies or something. Some + crazy guy showed up on the station claiming he's from 1945. The crew seems to think it's + legit though. Maybe he is. I don't think he is though. I'll keep monitoring the situation."} + +/obj/item/weapon/paper/listneningpost/year2558/december + name = "\improper December 2558 Report" + info = {"We hired a merc to capture their top Redspace scientist Kisuke Gema. Unfortunately, Colonel + Morgan was a fucking idiot as usual and turned his back for half a second, and the nerd cut + his fucking head off WITH HIS OWN ENERGY SWORD. At least the asshole didn't get any credit + for it. Sicko fuck took Morgan's severed head back with him as proof, but some janitor found + it and got all the credit and a big promotion. Just to add insult to injury, Santa visited + their station. IN PERSON. Meanwhile all I got was fucking socks... Okay fine I did need the + socks. It's cold as balls on this outpost... Damn it I'm lonely."} + +//////// 2559 //////// + +/obj/item/weapon/paper/listneningpost/year2559/january + name = "\improper January 2559 Report" + info = {"So, this guy from 1945 is legit. His name is Chase Monroe and he's a former Seargent in + the USCM or something. Although I feel like the USCM didn't exist in 1945. Also a pirate + stole one of our ships this month. A week later, the VORE gets attacked by some asshole + pirate flying one of our ships. Probably the same guy. They managed to take a hostage, + blow several bombs on the station, and even steal the nuke. VORE's security forces are + showing serious signs of weakness. Maybe we could exploit this."} + +/obj/item/weapon/paper/listneningpost/year2559/february + name = "\improper February 2559 Report" + info = {"Sounds like the World War 2 guy from Earth brought some unwanted friends along. Early + in the month, a battlecruiser showed up out of nowhere and started shooting up the station + and Central Command. They even knocked the Brutus out of commission. The Icarus apparently + sacrificed its self to protect the station and CentCom until the Soviets showed up. I guess + the Soviets got a beef with these guys too. Sounds like they jacked one of the Soviet's ships. + Makes sense, because a battleship like that doesn't just appear out of nowhere."} + +/obj/item/weapon/paper/listneningpost/year2559/march + name = "\improper March 2559 Report" + info = {"Hard to believe it's already been a year. NT's private navy has been running exercises more + often than usual. They also replaced the Icarus with a new and more heavily armed cruiser called + the Daedalus. They also have this new Battlenet AI which brought the VORE crew on a simulated + reenactment of Operation Magnum. They even had a copy of Townes, played by a cyborg. There have + been some really cryptic messages popping up though. It's eerily familiar. The message just keeps + repeating Bible verses and saying 'The Truth will set you free'... It's like what Townes used to + say about Nanotrasen. The Truth will set us free. The truth about all the atrocities Nanotrasen + has done over the years."} + +/obj/item/weapon/paper/listneningpost/year2559/april + name = "\improper April 2559 Report" + info = {"We were approached today by a man calling himself the 'Werwolf', alleged to be part of that group + that attacked Nanotrasen in early February. We never understood his motives WHY he attacked them. + Maybe he was trying to win brownie points with the Syndicate. If that was his goal, he's done well. + He offered to buy those nukes we stole last year. He also expressed great interest in our singularity + beacons. He's offered us a huge cache of weapons and a hefty sum in ancient gold and silver artifacts. + I think we're going to take the deal. When I get confirmation, I'll forward a line to Mike and Dave to + make the trade."} + +/obj/item/weapon/paper/listneningpost/year2559/may + name = "\improper May 2559 Report" + info = {"V.O.R.E. found something. An abandoned space station with a weapon called a mind flayer. There's also + rumor about some sort of a secret weapon NT was developing; a singularity bomb. Nothing of else of + real interest to report."} + +/obj/item/weapon/paper/listneningpost/year2559/june + name = "\improper June 2559 Report" + info = {"The WW2 guy is dead. Went out in a blaze of glory killing Space Nazis. Mike and Dave are pissed. + They apparently broke protocol and went to help the V.O.R.E. crew in the attack, and they want to + keep helping. I know it's unorthodox but I have to side with Mike and Dave on this one. Respectfully + command, if we do not neutralize this so-called Fourth Reich, we'll have an enemy much worse than + NanoTrasen to deal with. Curiously, NanoTrasen refuses to officially support helping to remove this + threat. Possible collaberation?"} + +/obj/item/weapon/paper/listneningpost/year2559/july + name = "\improper July 2559 Report" + info = {"USDF ships have been spotted in the area. Admiral Glenn Pink is on board. This guy went MIA almost + ten years ago, and now he's back? Why? Apparently he's got some kind of connection with V.O.R.E.'s + captain Ace. Sounds like they're gearing up to go kick some Nazi ass. It's like a bad action movie + plot. I don't know who this Admiral Pink is, but I guess Ace has at least a couple friends in high + places."} + +/obj/item/weapon/paper/listneningpost/year2559/august + name = "\improper August 2559 Report" + info = {"So, the reason Admiral Pink showed up in the last report was because these Space Nazis hijacked + one of his vessels; the USDF Jormungandr or something. Well, the crazy bastards took it back. + We overheard radio transmissions about some kind of huge mech, bigger than anything we've ever seen + in regard to exosuits. Tore up the crew bad. Killed a few, wounded all of them, but after-action + report says someone got close and slapped C4 on its leg while its anti-tank cannon was firing. + They managed to even capture another one and bring it home. Recommend command try to figure out + what this mech is, and if we can steal it. Furthermore, Dr. Kisuke Gema was KIA. His mechanical + arm was destroyed, and with it, all of his genetic information to get around his cloning disorder. + So he's finally out of our hair."} + +/obj/item/weapon/paper/listneningpost/year2559/september + name = "\improper September 2559 Report" + info = {"Of course it's not that simple. The nerd is back from the dead. Wonderful. I don't know how but + he's back, or they have a fake Kisuke Gema, or whatever bullshit. In other news, the station has + been slated for demolition. They're shipping a new Mark-3 Exodus-class station from Bay Shipyards + all the way from the NanoTrasen branch in Nyx. The demolition keeps getting delayed."} + +/obj/item/weapon/paper/listneningpost/year2559/october + name = "\improper October 2559 Report" + info = {"Station was demolished and operations were put on pause for a whole week. In other news, captain + Ace reportedly got a promotion to CentCom but something went wrong. The stronger loyalty implant + had a negative effect on him and almost killed him. He was quickly demoted back to Captain. This + could be useful information later. Recommend command investigate thoroughly."} + +/obj/item/weapon/paper/listneningpost/year2559/november + name = "\improper November 2559 Report" + info = {"A clown federation owned vessel called the Calypso was discovered in the Virgo system. It was a + ghost ship. Allegedly everyone on board perished due to a joke so funny that everyone laughed + themselves to madness, then death. NanoTrasen is trying to cover it up. No one knows why."} + +/obj/item/weapon/paper/listneningpost/year2559/december + name = "\improper December 2559 Report" + info = {"The V.O.R.E. discovered a new gateway location; a clown temple. We need to send someone to see + this. Reportedly it's full of tunnel clowns and these mutants called cluwnes. A clown researcher + came and tried to study the ruins and translate the glyphs, but I guess he discovered the joke. + I remember listening to him one week just absolutely losing it. Over the command channel, captain + Ace and the others talked about what they had to do, how he couldn't go back to the clown planet. + They never said it outright, but I think Ace put him out of his misery. All I know is the clown + researcher turned up dead. In other news, someone stole the station's entire cloning facility at + the end of the month right before Xmas. That shit was hilarious. We gotta find who this guy is + and see if he wants a job. Ask our contacts on station. Surely one of them knows who's behind + the heist."} + +/obj/item/weapon/paper/listneningpost/year2560/january + name = "\improper January 2560 Report" + info = {"A group of Akula pirates tried to kidnap Kisuke Gema. They succeded, but their leader died of + his injuries soon after. The other pirates defected. I wonder why?"} + +/obj/item/weapon/paper/listneningpost/year2560/february + name = "\improper February 2560 Report" + info = {"There were a few incidents regarding a redspace anomaly in the chapel but the effects have long + since subsided. Nothing of major interest otherwise."} + +/obj/item/weapon/paper/listneningpost/year2560/march + name = "\improper March 2560 Report" + info = {"Very quiet month. Nothing of interest to report. Perhaps the calm before the storm?"} + +/obj/item/weapon/paper/listneningpost/year2560/april + name = "\improper April 2560 Report" + info = {"A loud, painfully high pitched SSTV signal came across global comms. It seems to be a distress signal + of some kind. To what, I have no idea. Efforts to trace the signal's origin have fallen inconclusive."} + +/obj/item/weapon/paper/listneningpost/oddreport + name = "\improper Odd Report" + info = {"I wonder how much longer they will accept my empty reports. They will cancel the case soon without + results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic + solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. + If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space + will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that + stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should + it ever rear it's ugly head again. -Donk Co. Operative #451"} \ No newline at end of file diff --git a/maps/tether/submaps/gateway/listeningpost.dmm b/maps/tether/submaps/gateway/listeningpost.dmm new file mode 100644 index 0000000000..b5d285c63a --- /dev/null +++ b/maps/tether/submaps/gateway/listeningpost.dmm @@ -0,0 +1,20192 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/space, +/area) +"b" = ( +/obj/effect/blocker, +/turf/space, +/area) +"c" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/listeningpost) +"d" = ( +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit" + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"e" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"f" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"g" = ( +/turf/simulated/wall, +/area/awaymission/listeningpost) +"h" = ( +/turf/simulated/mineral, +/area/mine/unexplored) +"i" = ( +/turf/simulated/floor, +/area/awaymission/listeningpost) +"j" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper/monitorkey, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/item/clothing/glasses/regular, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"k" = ( +/obj/structure/table/standard, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"l" = ( +/turf/simulated/mineral/floor/vacuum, +/area/mine/explored) +"m" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"n" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/mob/living/simple_mob/humanoid/merc{ + desc = "A weary looking syndicate operative."; + faction = "syndicate" + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"o" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper{ + info = "Nothing of interest to report."; + name = "november report" + }, +/obj/item/weapon/pen, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"p" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"q" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/syndicate, +/obj/item/clothing/mask/gas, +/obj/item/clothing/head/helmet/space/syndicate, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"r" = ( +/obj/machinery/door/airlock, +/obj/item/weapon/paper{ + info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451"; + name = "odd report" + }, +/obj/item/weapon/gun/projectile/pistol, +/obj/item/weapon/silencer, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"s" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/mineral, +/area/mine/unexplored) +"t" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/mineral, +/area/mine/unexplored) +"u" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area) +"v" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"w" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"x" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"y" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/mineral, +/area/mine/unexplored) +"z" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"A" = ( +/obj/structure/closet, +/obj/item/clothing/gloves/boxing, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"B" = ( +/obj/structure/filingcabinet, +/obj/item/weapon/paper{ + info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."; + name = "april report" + }, +/obj/item/weapon/paper{ + info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment."; + name = "may report" + }, +/obj/item/weapon/paper{ + info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it."; + name = "june report" + }, +/obj/item/weapon/paper{ + info = "Nothing of interest to report."; + name = "july report" + }, +/obj/item/weapon/paper{ + info = "Nothing of interest to report."; + name = "august report" + }, +/obj/item/weapon/paper{ + info = "Nothing of interest to report."; + name = "september report" + }, +/obj/item/weapon/paper{ + info = "Nothing of interest to report."; + name = "october report" + }, +/obj/item/weapon/paper{ + info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"; + name = "receipt" + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"C" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper{ + info = "Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us."; + name = "mission briefing" + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"D" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"E" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/awaymission/listeningpost) +"F" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/mineral, +/area/mine/unexplored) +"G" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"H" = ( +/turf/simulated/floor/tiled/freezer, +/area/awaymission/listeningpost) +"I" = ( +/obj/machinery/shower{ + icon_state = "shower"; + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/listeningpost) +"J" = ( +/obj/structure/toilet{ + icon_state = "toilet00"; + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/listeningpost) +"K" = ( +/turf/simulated/mineral/floor, +/area/mine/unexplored) +"L" = ( +/turf/simulated/floor/greengrid, +/area/mine/explored) +"M" = ( +/turf/simulated/mineral/floor, +/area/mine/explored) +"N" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 9 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"O" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 1 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"P" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 5 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"Q" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 8 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"R" = ( +/obj/machinery/gateway/centeraway, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"S" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 4 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"T" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 10 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"U" = ( +/obj/machinery/gateway, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"V" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 6 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(5,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(6,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(11,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(12,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(13,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(14,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(15,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(16,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(17,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(18,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(19,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(20,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(21,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(22,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(23,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(24,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(25,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(26,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(27,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(28,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(29,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(30,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(31,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(32,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(33,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(34,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(35,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(36,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(37,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(38,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +l +l +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(39,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +l +l +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(40,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(41,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(42,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(43,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(44,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(45,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(46,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(47,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(48,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(49,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +l +l +l +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(50,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(51,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +K +K +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(52,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +K +L +M +h +h +h +h +M +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(53,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +K +L +L +L +h +L +M +M +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(54,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +K +L +L +N +Q +T +L +L +K +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(55,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +L +L +O +R +U +L +L +K +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(56,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +M +L +P +S +V +L +L +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(57,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +M +L +L +L +L +L +M +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(58,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +M +M +L +M +M +M +M +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(59,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +K +K +K +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(60,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(61,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(62,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +a +a +h +h +h +h +a +a +a +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(63,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +l +l +l +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(64,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(65,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(66,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(67,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(68,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(69,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +l +l +l +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(70,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +l +l +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(71,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(72,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +a +a +a +a +h +h +h +h +h +h +h +h +h +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(73,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +h +h +h +h +h +h +h +h +h +l +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(74,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +h +h +h +h +h +h +h +h +h +h +l +a +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(75,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +a +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(76,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(77,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(78,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(79,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(80,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +c +c +c +c +c +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(81,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +c +v +i +A +c +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(82,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +c +c +c +h +c +w +i +B +c +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(83,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +c +c +m +c +c +c +g +f +g +c +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(84,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +c +j +n +p +i +r +i +i +C +c +c +c +c +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(85,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +c +c +c +k +o +k +i +g +i +i +i +G +H +H +c +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(86,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +c +i +f +i +i +i +i +g +i +i +D +g +I +J +c +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(87,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +c +d +g +i +i +i +q +g +x +z +E +c +c +c +c +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(88,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +c +c +c +e +e +c +c +c +c +c +E +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(89,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +c +i +i +c +h +h +h +h +t +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(90,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +c +i +i +c +h +s +y +y +F +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(91,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +c +e +e +c +h +t +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(92,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +a +a +a +a +h +t +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(93,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +a +a +a +a +a +u +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(94,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(95,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(96,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +a +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(97,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +a +a +a +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(98,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(99,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(100,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(101,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(102,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(103,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(104,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(105,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(106,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(107,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(108,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(109,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(110,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(111,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(112,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(113,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(114,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(115,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(116,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(117,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(118,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(119,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(120,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(121,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(122,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(123,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(124,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(125,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(126,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(127,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(128,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(129,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(130,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(131,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(132,1,1) = {" +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +"} +(133,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(134,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(135,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(136,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(137,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(138,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(139,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(140,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/tether/submaps/gateway/snow_outpost.dm b/maps/tether/submaps/gateway/snow_outpost.dm new file mode 100644 index 0000000000..de9d70dfb1 --- /dev/null +++ b/maps/tether/submaps/gateway/snow_outpost.dm @@ -0,0 +1,41 @@ +// -- Areas -- // + +/area/awaymission/snow_outpost + icon_state = "blank" + requires_power = 0 + base_turf = /turf/snow/snow2 + ambience = list('sound/music/main.ogg', 'sound/ambience/maintenance/maintenance4.ogg', 'sound/ambience/sif/sif1.ogg', 'sound/ambience/ruins/ruins1.ogg') + base_turf = /turf/simulated/floor/snow/snow2 + +/area/awaymission/snow_outpost/outside + icon_state = "away1" + requires_power = 1 + always_unpowered = 1 + dynamic_lighting = 1 + power_light = 0 + power_equip = 0 + power_environ = 0 + mobcountmax = 100 + floracountmax = 7000 + valid_mobs = list(/mob/living/simple_mob/animal/sif/savik, /mob/living/simple_mob/animal/wolf, /mob/living/simple_mob/animal/sif/shantak, + /mob/living/simple_mob/animal/sif/kururak, /mob/living/simple_mob/animal/sif/frostfly) + valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, + /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, + /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, + /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush, + /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass) + +/area/awaymission/snow_outpost/restricted // No mob spawns! + icon_state = "red" + mobcountmax = 1 // Hacky fix. + floracountmax = 100 + valid_mobs = list(/obj/structure/flora/tree/pine) // Hacky fix. + valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, + /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, + /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, + /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush, + /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass) + +/area/awaymission/snow_outpost/outpost + icon_state = "away" + ambience = list('sound/ambience/chapel/chapel1.ogg', 'sound/ambience/ruins/ruins5.ogg', 'sound/ambience/ruins/ruins1.ogg') // Rykka was here. <3 diff --git a/maps/tether/submaps/gateway/snow_outpost.dmm b/maps/tether/submaps/gateway/snow_outpost.dmm new file mode 100644 index 0000000000..c3d57c4ece --- /dev/null +++ b/maps/tether/submaps/gateway/snow_outpost.dmm @@ -0,0 +1,22581 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/simulated/wall/snowbrick, +/area/awaymission/snow_outpost/restricted) +"ab" = ( +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ac" = ( +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ad" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ae" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"af" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ag" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ah" = ( +/obj/machinery/gateway/centeraway, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ai" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"aj" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ak" = ( +/obj/machinery/gateway, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"al" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"an" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/wall/snowbrick, +/area/awaymission/snow_outpost/restricted) +"ao" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ap" = ( +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"aq" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/dungeon, +/area/awaymission/snow_outpost/outside) +"ar" = ( +/turf/simulated/floor/water/deep, +/area/awaymission/snow_outpost/outside) +"as" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/snow_outpost/outpost) +"at" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"au" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"av" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"aw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + icon_state = "map"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"ax" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "sec_fore_pump" + }, +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"ay" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"az" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"aC" = ( +/obj/structure/railing, +/turf/simulated/floor/dungeon, +/area/awaymission/snow_outpost/outside) +"aD" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"aE" = ( +/turf/simulated/wall, +/area/awaymission/snow_outpost/outpost) +"aF" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft, +/obj/machinery/door/window/northleft, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aH" = ( +/obj/machinery/suit_cycler, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aI" = ( +/obj/machinery/suit_cycler/mining, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aJ" = ( +/obj/machinery/suit_cycler/medical, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aK" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/awaymission/snow_outpost/outpost) +"aL" = ( +/obj/machinery/suit_cycler/engineering, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aM" = ( +/obj/machinery/suit_cycler/security, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aN" = ( +/obj/machinery/suit_cycler/syndicate, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aO" = ( +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"aP" = ( +/obj/machinery/replicator, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aQ" = ( +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/awaymission/snow_outpost/outpost) +"aR" = ( +/obj/structure/AIcore, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/awaymission/snow_outpost/outpost) +"aS" = ( +/obj/machinery/porta_turret/stationary/syndie, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aT" = ( +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"aU" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aV" = ( +/obj/machinery/clonepod/transhuman/full, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aW" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aX" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/mob/living/simple_mob/humanoid/merc/ranged/ionrifle, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aY" = ( +/obj/machinery/implantchair, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aZ" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"ba" = ( +/obj/machinery/bodyscanner, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bb" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bc" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bd" = ( +/obj/machinery/telecomms/relay, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"be" = ( +/obj/machinery/telecomms/broadcaster, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bf" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bg" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bh" = ( +/obj/structure/ore_box, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bi" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bj" = ( +/obj/machinery/porta_turret/stationary/syndie, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"bk" = ( +/obj/machinery/power/breakerbox/activated, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bl" = ( +/obj/machinery/power/smes/magical, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bm" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bn" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bp" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bq" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"br" = ( +/obj/structure/table/standard, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright, +/obj/machinery/door/window/northleft, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bs" = ( +/obj/random/landmine, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"bt" = ( +/turf/simulated/wall/solidrock{ + block_tele = 0 + }, +/area/awaymission/snow_outpost/outside) +"bu" = ( +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"bv" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"bw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/wall/r_wall, +/area/awaymission/snow_outpost/outpost) +"bx" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"by" = ( +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + icon_state = "map"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bD" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + use_power = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + being_shocked = 1; + locked = 1; + name = "Outpost Security Airlock"; + use_power = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bF" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bJ" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bK" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bL" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 1; + pressure_checks_default = 1; + use_power = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bM" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bN" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bP" = ( +/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/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + icon_state = "map_scrubber_off"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bR" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright, +/obj/machinery/door/window/northleft, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bS" = ( +/obj/tether_away_spawner/underdark_hard, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bT" = ( +/mob/living/simple_mob/humanoid/merc/ranged/laser, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bU" = ( +/mob/living/simple_mob/humanoid/merc/ranged/space, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/awaymission/snow_outpost/outpost) +"bV" = ( +/mob/living/simple_mob/humanoid/merc/ranged, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bW" = ( +/mob/living/simple_mob/humanoid/merc/melee, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bX" = ( +/mob/living/simple_mob/humanoid/merc/melee/sword/space, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bY" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"bZ" = ( +/obj/random/firstaid, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ca" = ( +/obj/random/landmine, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cb" = ( +/obj/random/ammo, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cc" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cd" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"ce" = ( +/turf/simulated/wall/sandstone, +/area/awaymission/snow_outpost/outside) +"cf" = ( +/obj/item/weapon/ore/diamond, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cg" = ( +/obj/structure/boulder, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"ch" = ( +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"ci" = ( +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cj" = ( +/obj/item/weapon/ore, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"ck" = ( +/obj/structure/bed/alien, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"cl" = ( +/obj/structure/cult/talisman, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"cm" = ( +/obj/machinery/artifact, +/obj/structure/anomaly_container, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"cn" = ( +/obj/structure/simple_door/sandstone, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"co" = ( +/obj/structure/loot_pile/surface/alien, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"cp" = ( +/mob/living/simple_mob/animal/passive/tindalos, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"cq" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"cr" = ( +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"cs" = ( +/obj/item/weapon/ore, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ct" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cu" = ( +/obj/structure/anomaly_container, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"cv" = ( +/turf/simulated/wall, +/area/awaymission/snow_outpost/outside) +"cw" = ( +/obj/item/frame/apc, +/obj/item/weapon/module/power_control, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cx" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cy" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/excavation, +/obj/item/device/measuring_tape, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cz" = ( +/obj/machinery/power/port_gen/pacman/super, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cA" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cC" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cD" = ( +/obj/structure/table/rack, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cE" = ( +/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cF" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cG" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cH" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cI" = ( +/obj/structure/boulder, +/obj/effect/decal/mecha_wreckage/ripley, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cJ" = ( +/obj/structure/boulder, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cK" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cL" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/storage/box/samplebags, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cM" = ( +/obj/structure/table/steel, +/obj/item/stack/flag/yellow, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cN" = ( +/obj/random/toolbox, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cO" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cP" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cQ" = ( +/obj/structure/ore_box, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cR" = ( +/turf/simulated/floor/tiled/asteroid_steel, +/area/awaymission/snow_outpost/outside) +"cS" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/asteroid_steel, +/area/awaymission/snow_outpost/outside) +"cT" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cU" = ( +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cV" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cW" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cX" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cY" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cZ" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"da" = ( +/obj/structure/old_roboprinter, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"db" = ( +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dc" = ( +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dd" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"de" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"df" = ( +/obj/structure/window/reinforced/full, +/turf/simulated/wall, +/area/awaymission/snow_outpost/outside) +"dg" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dh" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"di" = ( +/obj/structure/table/standard, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dj" = ( +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dk" = ( +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dl" = ( +/obj/machinery/power/apc{ + operating = 0; + pixel_x = 31 + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dm" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dn" = ( +/obj/structure/closet/crate/trashcart, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"do" = ( +/obj/structure/closet/crate/engineering, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dp" = ( +/obj/machinery/light, +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dq" = ( +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dr" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"ds" = ( +/obj/structure/table/rack, +/obj/item/weapon/pickaxe/drill, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dt" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"du" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dv" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dw" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled/asteroid_steel, +/area/awaymission/snow_outpost/outside) +"dx" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dy" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dz" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5; + dir = 8 + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dA" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/awaymission/snow_outpost/outside) +"dB" = ( +/obj/structure/table/standard, +/obj/item/pizzabox, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dC" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dD" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dE" = ( +/obj/machinery/light/small, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dF" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/awaymission/snow_outpost/restricted) +"dG" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dH" = ( +/obj/structure/flora/tree/sif, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dI" = ( +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dJ" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dK" = ( +/obj/structure/table/steel, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dL" = ( +/obj/structure/flora/tree/sif, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dM" = ( +/mob/living/simple_mob/humanoid/merc/ranged/smg/poi, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dN" = ( +/turf/simulated/floor/snow/snow2, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark6"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"dO" = ( +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark0"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"dP" = ( +/turf/simulated/floor/snow/snow2, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark10"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"dQ" = ( +/mob/living/simple_mob/humanoid/merc/ranged/laser/poi, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dR" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 4 + }, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark0"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"dS" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "propulsion_l" + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dT" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"dU" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"dV" = ( +/obj/machinery/door/airlock/external{ + density = 1; + frequency = 1331; + id_tag = "merc_shuttle_outer"; + name = "Ship External Access"; + req_access = list(150) + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"dW" = ( +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"dX" = ( +/obj/machinery/gibber, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"dY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"dZ" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ea" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eb" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark5"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"ec" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"ed" = ( +/obj/structure/table/steel, +/obj/item/weapon/gun/projectile/automatic/wt550, +/obj/item/weapon/gun/projectile/automatic/p90, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"ee" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"ef" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eg" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eh" = ( +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ei" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ej" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ek" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"el" = ( +/obj/machinery/organ_printer/flesh, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"em" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark9"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"en" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark6"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"eo" = ( +/mob/living/simple_mob/mechanical/viscerator, +/mob/living/simple_mob/mechanical/viscerator, +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"ep" = ( +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"eq" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"er" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"es" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"et" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eu" = ( +/mob/living/simple_mob/humanoid/merc/melee/sword/poi, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ev" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ew" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor/full, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"ex" = ( +/obj/structure/table/steel, +/obj/item/weapon/grenade/smokebomb, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"ey" = ( +/obj/effect/floor_decal/borderfloor/corner, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"ez" = ( +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eA" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eB" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eC" = ( +/obj/structure/table/standard, +/obj/item/weapon/tank/anesthetic, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eD" = ( +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eE" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile, +/obj/item/clothing/gloves/sterile, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eF" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/spray/sterilizine, +/obj/item/weapon/reagent_containers/spray/sterilizine, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eG" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/masks, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eH" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eJ" = ( +/obj/machinery/door/airlock/security{ + locked = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eK" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eL" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark10"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"eM" = ( +/obj/machinery/computer/communications, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eN" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eP" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eQ" = ( +/obj/structure/table/steel, +/obj/item/weapon/material/knife, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eR" = ( +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eS" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eT" = ( +/mob/living/simple_mob/humanoid/merc/ranged/smg/poi, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eU" = ( +/obj/structure/table/steel, +/obj/random/toolbox, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"eV" = ( +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"eW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/snow_outpost/restricted) +"eX" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eY" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eZ" = ( +/mob/living/simple_mob/animal/giant_spider/ion, +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"fa" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fb" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fc" = ( +/obj/structure/table/steel, +/obj/random/projectile, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fd" = ( +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/snow_outpost/restricted) +"ff" = ( +/obj/machinery/door/airlock/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fg" = ( +/obj/effect/floor_decal/corner/grey, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fh" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fi" = ( +/obj/structure/table/steel, +/obj/item/pizzabox, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fj" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fk" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fl" = ( +/obj/machinery/door/airlock/glass, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fm" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/snow_outpost/restricted) +"fo" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "BSD APC"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fp" = ( +/mob/living/simple_mob/humanoid/merc/melee/sword/poi, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fq" = ( +/obj/machinery/computer/area_atmos, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/mob/living/simple_mob/humanoid/merc/ranged/laser/poi, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"ft" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fu" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper{ + info = "We need to take a short stop. The engine's are in need of minor repairs due to turbulence, should be a week's time. We've got reserve food supplies but pleanty of locale fauna to subsist on too if need be. PCRC is keeping most of there assets near New Reykjavik and locale authorities are more mindful then most to travel in this kind of weather. Our outfit should be at the rendezvous point in less then ten days assuming the upper ecehelon hasn't dropped ties with us yet."; + name = "Operation Progress/M-53" + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fv" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fw" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fx" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fy" = ( +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fz" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fA" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fB" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fC" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"fD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fE" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fF" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fG" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snow_outpost/restricted) +"fH" = ( +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snow_outpost/restricted) +"fI" = ( +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"fJ" = ( +/obj/structure/table/steel, +/obj/item/weapon/gun/projectile/pistol, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"fK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fL" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/structure/bed, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fM" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snow_outpost/restricted) +"fN" = ( +/mob/living/simple_mob/mechanical/viscerator, +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"fO" = ( +/obj/structure/table/steel, +/obj/random/energy, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"fP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/mob/living/simple_mob/humanoid/merc/melee/sword/poi, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fQ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snow_outpost/restricted) +"fR" = ( +/obj/machinery/light, +/obj/structure/table/rack, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fS" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fT" = ( +/obj/structure/table/woodentable, +/obj/random/projectile, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fU" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fV" = ( +/obj/tether_away_spawner/aerostat_inside, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"fW" = ( +/obj/item/weapon/ore/gold, +/obj/tether_away_spawner/aerostat_inside, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"fX" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"fY" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"fZ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ga" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gb" = ( +/obj/item/weapon/shovel, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gc" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gd" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ge" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gf" = ( +/obj/item/ammo_casing/a45, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gg" = ( +/obj/item/ammo_casing/a45, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gh" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gi" = ( +/obj/structure/flora/tree/sif, +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"gj" = ( +/obj/item/ammo_casing/a45, +/obj/random/landmine, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gk" = ( +/obj/random/landmine, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gl" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gm" = ( +/obj/item/ammo_casing/a45, +/obj/item/ammo_casing/a45, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gn" = ( +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"go" = ( +/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gp" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"gq" = ( +/obj/item/clothing/accessory/storage/webbing, +/obj/item/weapon/material/knife/tacknife/combatknife, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gr" = ( +/mob/living/simple_mob/animal/giant_spider, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gs" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gt" = ( +/obj/random/mob/spider, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gu" = ( +/mob/living/simple_mob/animal/giant_spider/lurker, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gv" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gw" = ( +/mob/living/simple_mob/animal/giant_spider/webslinger, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gx" = ( +/obj/effect/decal/cleanable/cobweb2, +/mob/living/simple_mob/animal/giant_spider/lurker, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gy" = ( +/obj/random/landmine, +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"gz" = ( +/obj/random/mob/spider/mutant, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gA" = ( +/mob/living/simple_mob/animal/giant_spider/lurker, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"gB" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gC" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_3" + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gD" = ( +/obj/structure/closet/crate, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/weapon/storage/toolbox, +/obj/random/toolbox, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gE" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gF" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gG" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gH" = ( +/obj/structure/closet/crate, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/glass/bottle/antitoxin, +/obj/item/weapon/reagent_containers/pill/antitox, +/obj/item/weapon/reagent_containers/pill/antitox, +/obj/item/weapon/reagent_containers/pill/antitox, +/obj/item/weapon/reagent_containers/pill/paracetamol, +/obj/random/firstaid, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gJ" = ( +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/energy, +/obj/item/weapon/material/star, +/obj/item/weapon/material/star, +/obj/item/weapon/material/star, +/obj/item/weapon/material/star, +/obj/item/weapon/material/star, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gK" = ( +/obj/effect/spider/stickyweb, +/mob/living/simple_mob/animal/giant_spider/lurker, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gN" = ( +/obj/machinery/computer/communications, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gO" = ( +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gP" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gQ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gR" = ( +/obj/structure/flora/tree/dead, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gS" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gT" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gU" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gV" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gW" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"gX" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"gY" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"gZ" = ( +/obj/random/trash, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"ha" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/lipstick/random, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hb" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hc" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/pill/happy{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hd" = ( +/obj/structure/curtain/black, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"he" = ( +/obj/random/trash, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hf" = ( +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hg" = ( +/obj/effect/decal/remains/mouse, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hh" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hi" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/pill/methylphenidate{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hj" = ( +/obj/structure/bed/chair/comfy/beige{ + icon_state = "armchair_preview"; + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hk" = ( +/obj/item/weapon/reagent_containers/pill/citalopram{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hl" = ( +/obj/random/junk, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hm" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/contraband/poster, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hn" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"ho" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/item/weapon/reagent_containers/syringe/drugs, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hp" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/weapon/reagent_containers/pill/citalopram{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hq" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hr" = ( +/obj/item/weapon/reagent_containers/pill/citalopram{ + name = "pill" + }, +/obj/item/weapon/reagent_containers/pill/citalopram{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hs" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/pill_bottle/happy, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"ht" = ( +/obj/structure/table/standard, +/obj/item/stack/medical/splint, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hu" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/pill/citalopram, +/obj/item/weapon/reagent_containers/pill/citalopram, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hv" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/pill/tramadol, +/obj/item/weapon/reagent_containers/pill/tramadol, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hw" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/jacket, +/obj/item/weapon/material/butterfly/switchblade, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hx" = ( +/obj/item/weapon/reagent_containers/pill/zoom{ + name = "pill" + }, +/obj/random/trash, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hy" = ( +/obj/item/weapon/reagent_containers/pill/zoom{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hz" = ( +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hA" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/scalpel, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hB" = ( +/obj/item/wheelchair, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hC" = ( +/obj/structure/table/standard, +/obj/random/firstaid, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hD" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hE" = ( +/obj/effect/floor_decal/rust, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hF" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/pill/zoom, +/obj/item/weapon/reagent_containers/pill/zoom, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hG" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/pill/tramadol{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hH" = ( +/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hI" = ( +/obj/structure/girder, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hJ" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hK" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hL" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/syringe/drugs, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hM" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hN" = ( +/obj/effect/spider/spiderling/frost, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hO" = ( +/obj/item/weapon/spacecash/c100, +/obj/item/weapon/spacecash/c100, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hP" = ( +/obj/random/mob/spider/mutant, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hQ" = ( +/obj/item/weapon/spacecash/c100, +/obj/item/weapon/spacecash/c100, +/obj/item/weapon/spacecash/c100, +/obj/effect/decal/remains, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hR" = ( +/obj/random/mob/spider, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hS" = ( +/obj/item/weapon/grenade/spawnergrenade/spider, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hT" = ( +/obj/random/toolbox, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hU" = ( +/obj/effect/decal/mecha_wreckage/ripley, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hV" = ( +/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hW" = ( +/mob/living/simple_mob/animal/giant_spider/frost, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hX" = ( +/obj/effect/spider/stickyweb, +/obj/effect/spider/stickyweb, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hY" = ( +/mob/living/simple_mob/animal/giant_spider/frost, +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"hZ" = ( +/mob/living/simple_mob/animal/giant_spider/frost, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ia" = ( +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"ib" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"ic" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"id" = ( +/turf/simulated/floor/water, +/area/awaymission/snow_outpost/outside) +"ie" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"if" = ( +/turf/simulated/shuttle/wall, +/area/awaymission/snow_outpost/outside) +"ig" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/shuttle/plating, +/area/awaymission/snow_outpost/outside) +"ih" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"ii" = ( +/obj/structure/bed/chair{ + icon_state = "chair_preview"; + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/water, +/area/awaymission/snow_outpost/outside) +"ij" = ( +/obj/structure/bed/chair{ + icon_state = "chair_preview"; + dir = 1 + }, +/obj/effect/decal/remains/posi, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/vending/wallmed1{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = 28; + pixel_y = 0 + }, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/under/mbill, +/obj/item/clothing/head/soft/mbill, +/turf/simulated/floor/water, +/area/awaymission/snow_outpost/outside) +"ik" = ( +/obj/structure/bed/chair{ + icon_state = "chair_preview"; + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker/east, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/closet/crate/hydroponics{ + desc = "All you need to destroy that pesky planet."; + name = "exotic seeds crate"; + starts_with = list(/obj/item/seeds/random = 6, /obj/item/seeds/replicapod = 2, /obj/item/seeds/ambrosiavulgarisseed = 2, /obj/item/seeds/kudzuseed, /obj/item/seeds/libertymycelium, /obj/item/seeds/reishimycelium) + }, +/turf/simulated/floor/water, +/area/awaymission/snow_outpost/outside) +"il" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/turf/simulated/shuttle/wall, +/area/awaymission/snow_outpost/outside) +"im" = ( +/obj/structure/door_assembly/door_assembly_ext{ + anchored = 1 + }, +/turf/simulated/floor/water, +/area/awaymission/snow_outpost/outside) +"in" = ( +/turf/unsimulated/mineral, +/area/awaymission/snow_outpost/outside) +"io" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"ip" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iq" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ir" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"is" = ( +/turf/simulated/mineral, +/area/awaymission/snow_outpost/outside) +"it" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iu" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + icon_state = "propulsion"; + dir = 8 + }, +/turf/simulated/shuttle/wall, +/area/awaymission/snow_outpost/outside) +"iv" = ( +/obj/effect/spider/eggcluster/small/frost, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iw" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Hatch"; + welded = 1 + }, +/turf/simulated/shuttle/floor, +/area/awaymission/snow_outpost/outside) +"ix" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + pixel_y = -26 + }, +/turf/simulated/shuttle/floor, +/area/awaymission/snow_outpost/outside) +"iy" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_y = 28 + }, +/obj/machinery/light, +/obj/item/weapon/weldingtool/largetank, +/turf/simulated/shuttle/floor, +/area/awaymission/snow_outpost/outside) +"iz" = ( +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/bed/chair{ + icon_state = "chair_preview"; + dir = 8 + }, +/obj/effect/decal/remains, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing/spent, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/glasses/sunglasses, +/obj/random/multiple/gun/projectile/handgun, +/turf/simulated/shuttle/floor, +/area/awaymission/snow_outpost/outside) +"iA" = ( +/mob/living/simple_mob/animal/giant_spider/frost/sif{ + ai_holder_type = /datum/ai_holder/simple_mob/guard/give_chase + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iB" = ( +/mob/living/simple_mob/animal/giant_spider/carrier{ + ai_holder_type = /datum/ai_holder/simple_mob/guard/give_chase + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iC" = ( +/obj/effect/spider/stickyweb, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iD" = ( +/obj/structure/closet/crate/mimic/dangerous, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"iE" = ( +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"iF" = ( +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"iG" = ( +/obj/structure/closet/grave, +/obj/structure/gravemarker, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"iH" = ( +/obj/structure/closet/crate/mimic/dangerous, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"iI" = ( +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"iJ" = ( +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iK" = ( +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/restricted) +"iL" = ( +/obj/vehicle/bike, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iM" = ( +/obj/effect/decal/remains/deer, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iN" = ( +/turf/simulated/floor/water/deep, +/area/awaymission/snow_outpost/restricted) +"iO" = ( +/obj/mecha/combat/phazon/equipped, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"iP" = ( +/obj/machinery/atmospherics/unary/vent_pump, +/obj/item/weapon/cell/infinite, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"iQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5; + icon_state = "intact" + }, +/obj/item/weapon/cell/infinite, +/obj/item/weapon/cat_box, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"iR" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 1; + pressure_checks_default = 1; + use_power = 1 + }, +/obj/item/stack/material/phoron, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"iS" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"iT" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/item/toy/plushie/spider, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"iU" = ( +/turf/simulated/floor/snow/snow2, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark5"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"iV" = ( +/turf/simulated/floor/snow/snow2, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark9"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"iW" = ( +/obj/effect/decal/remains/deer, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"iX" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"iY" = ( +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"iZ" = ( +/obj/structure/dogbed, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"ja" = ( +/obj/structure/closet/crate/mimic/dangerous, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"jb" = ( +/obj/structure/flora/tree/sif, +/turf/unsimulated/mineral, +/area/awaymission/snow_outpost/outside) +"je" = ( +/turf/unsimulated/mineral, +/area/awaymission/snow_outpost/restricted) + +(1,1,1) = {" +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +"} +(2,1,1) = {" +in +hZ +ia +ia +ic +id +id +id +id +ib +ia +ih +ia +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(3,1,1) = {" +in +ab +ia +ic +id +id +ar +ar +ar +id +id +ia +ia +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +hX +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(4,1,1) = {" +in +ab +ib +id +if +if +if +if +il +ar +ar +id +io +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +cd +cd +cd +cd +cd +cd +cd +hO +hQ +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +hX +hX +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(5,1,1) = {" +in +ab +ia +id +ig +ii +ij +ik +im +ar +ar +id +ia +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cr +cr +hO +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +hM +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +da +da +da +da +ab +ab +ab +ab +ab +ab +dz +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(6,1,1) = {" +in +ab +ia +ie +if +if +if +if +il +ar +id +id +io +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +hN +cr +cd +cd +cd +hM +hM +cd +cd +cd +cd +cd +cd +cd +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(7,1,1) = {" +in +ab +ia +ia +ih +ia +id +id +id +id +ia +io +ia +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +cd +hM +cr +cr +cd +cd +cr +cr +cr +hP +cr +cr +cr +cr +cr +cr +hN +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +fW +fV +fV +fV +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(8,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cr +cr +hR +cr +cr +cr +cr +cr +cr +hM +cr +cr +cr +cr +cr +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +db +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(9,1,1) = {" +in +ab +ab +iq +ab +ap +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +hM +cr +cr +cr +cr +hM +hM +cr +cr +cr +cr +cd +cr +cr +hP +cr +hM +cd +cd +cd +cd +cd +cd +cd +cd +cd +dc +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(10,1,1) = {" +in +ab +ab +ab +ap +ap +ar +ar +ar +ar +ar +ar +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cr +hM +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +cr +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ce +ce +ce +ce +ce +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(11,1,1) = {" +in +ab +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cQ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ce +ce +ch +ch +ch +ce +ce +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(12,1,1) = {" +in +ab +ab +ge +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +hM +cr +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +hM +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +dm +ab +ab +ab +cR +dA +cR +cR +cR +ab +ab +cd +cd +cd +ce +ch +ch +cm +ch +ch +ce +cd +cd +cd +cd +cd +cd +cJ +cN +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(13,1,1) = {" +in +ab +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +hM +hN +cr +cr +hT +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +hM +cd +cd +cd +cd +cd +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +dw +cR +cv +dC +cv +cR +ab +ab +cd +cd +cd +ce +ch +ch +ch +ch +ch +ce +cd +cd +cd +cv +cz +cF +cK +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(14,1,1) = {" +in +ab +ab +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +cd +cd +hM +cr +cr +cr +hM +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +hM +cr +cr +cd +cd +cd +cd +cd +cR +cv +cv +cv +cv +df +df +df +df +df +cv +cv +cv +cv +cv +dD +cv +cR +ab +ab +cd +cd +cd +ce +ce +ce +cn +ce +ce +ce +cq +cd +cd +cw +cA +ci +ci +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(15,1,1) = {" +in +ab +fY +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +cr +cr +cd +cd +cd +cd +cd +cS +cv +cT +cU +cU +cU +cU +cU +cU +cU +cT +ds +ds +cv +cv +dC +cv +cR +ab +ab +cd +cd +cd +ce +ch +ch +ch +ch +ch +ce +cr +ab +cs +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(16,1,1) = {" +in +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +cd +cd +cd +cd +hM +cr +cr +hM +cd +cd +hU +hV +hM +cd +cd +cd +cd +cr +cr +cr +hP +cd +cd +cd +cd +cR +cv +cU +cU +cU +dg +cU +cU +cU +cU +dg +cU +cU +cU +cU +cU +cv +cR +ab +ab +cd +cd +cd +ce +ch +ch +ch +ch +ch +cn +ch +ab +ab +ab +cB +cB +ct +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(17,1,1) = {" +in +dH +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +hM +cr +cr +cr +cr +cr +cr +cr +cr +hM +cd +cd +cd +cr +cr +cr +cd +cd +cd +cd +cd +cR +cv +cv +cZ +cv +cv +cv +cZ +cv +cv +cv +cv +cv +cv +cv +dC +cv +cR +ab +dE +cd +cd +cd +ce +ch +cl +ci +ch +ch +ce +ch +ab +ab +cx +cC +cG +cL +cO +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(18,1,1) = {" +in +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +hN +cr +cr +cr +hR +cr +cr +cr +cr +hM +hW +cd +cd +cr +cr +cr +cd +cd +cd +cd +cd +cR +cv +cV +cU +cV +cv +dh +dk +dk +dn +cv +cT +cU +dx +cU +cU +cv +cR +ab +ab +cd +cd +cd +ce +ci +ci +ci +ch +ch +ce +ch +ab +ab +cy +cD +cH +cM +cP +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(19,1,1) = {" +in +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cr +cr +cr +cr +cr +cr +cr +hP +cr +cr +hM +cd +cr +cr +hM +hM +cd +cd +cd +cd +cd +cR +cv +cW +cU +dd +cv +di +dk +dk +do +cv +dt +cU +dy +cW +dy +cv +cR +cd +cd +cd +cd +cd +cg +cj +ci +ch +ch +ch +ch +ch +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(20,1,1) = {" +in +fY +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +cd +cd +cr +cr +cr +cr +cr +cr +cr +cr +cr +cr +cr +cr +cr +cr +hN +hM +cd +cd +cd +cd +cd +cd +cd +cR +cv +cX +cU +de +cv +di +dk +dk +dp +cv +du +cU +dy +cW +dy +cv +cR +cd +cd +cd +cd +cd +ce +ci +ch +ch +ch +ch +cj +ab +ab +ab +ab +ct +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(21,1,1) = {" +in +ab +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cr +hP +cr +cr +cd +hM +hM +hM +hM +hM +hM +cr +cr +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cS +cv +cY +cU +cW +cv +dj +dk +dk +dq +cv +iI +cU +dy +dB +dy +cv +cR +cd +cd +cd +cd +cd +ce +ce +ce +ch +ci +ci +ce +cs +ab +ct +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(22,1,1) = {" +in +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +gd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cR +cv +cV +cU +cV +cv +iH +dk +dl +dr +cv +dv +cU +dg +cU +cU +cv +cd +cd +cd +cd +cd +cd +ce +ch +ch +ch +ch +cp +ce +ct +ab +ab +ab +cE +ab +ct +cQ +cQ +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(23,1,1) = {" +in +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cr +hN +cr +cr +hS +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cR +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cd +cd +cd +cd +cd +cd +ce +ck +ch +ch +ch +ch +ci +ab +ab +cu +cu +cd +cI +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(24,1,1) = {" +in +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +gd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cr +cr +hN +hP +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ce +ce +ch +co +ch +ce +ci +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(25,1,1) = {" +in +dH +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +dH +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +bs +aO +aO +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +cd +cd +cd +cr +cr +cr +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ce +ce +ce +ce +ce +cd +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(26,1,1) = {" +in +ab +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +gd +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aT +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(27,1,1) = {" +in +ab +ab +ap +ap +ap +ar +ar +ar +ar +ar +ar +ap +ap +ap +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +dH +ab +ab +cd +cd +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(28,1,1) = {" +in +ab +ab +dH +ab +ap +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +bj +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aT +aO +aO +bj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(29,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +bj +as +as +bn +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +hY +bu +bu +bv +bu +cd +cd +ao +ao +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(30,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +is +ab +ab +ab +ab +ab +ab +ca +aO +aO +aO +as +bk +at +bG +ay +bw +ay +ay +aw +ay +ay +ay +ay +bx +aw +ay +aA +au +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +cd +cd +bu +bv +bu +bu +bu +hY +bu +bu +bu +bu +bu +bu +cd +cd +ao +ab +ao +cd +cd +cd +cd +ao +cd +cd +cd +cd +cd +cd +in +"} +(31,1,1) = {" +in +ab +ab +ab +ab +ab +dH +ab +ab +ab +is +is +is +ab +ab +dH +ab +ab +ab +ab +aO +aO +aO +as +bl +at +aG +bm +as +aX +at +bH +at +at +at +at +av +ax +az +ax +aB +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bu +bu +bv +bu +bu +cd +cd +ao +ab +ao +ab +ab +cd +ao +ao +cd +cd +cd +cd +cd +cd +in +"} +(32,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +is +is +is +is +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +as +as +as +as +as +bg +at +bH +at +at +at +at +bq +at +at +at +au +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +bu +bu +hY +bu +bu +bu +bu +bu +bu +bu +bu +bu +cd +cd +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +in +"} +(33,1,1) = {" +in +ge +ab +ab +ab +ab +ab +ab +ab +ab +is +is +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +aP +bz +aW +bD +aE +at +at +bH +at +at +at +bV +as +as +as +as +as +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +iJ +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +bu +bu +bu +bu +bu +bv +bu +bu +bu +bu +bu +bu +bv +ao +ab +ab +cd +cd +ao +ab +ab +ab +ab +ao +ab +cd +cd +cd +in +"} +(34,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aT +aO +aO +as +aY +bH +aZ +bH +aF +at +at +bH +at +at +at +at +as +bj +aO +aO +bj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +fX +ab +ab +ab +gc +ab +ab +cd +ab +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bv +bu +bu +bu +bu +bv +ao +ab +ab +cd +cd +cd +ao +ab +ab +hZ +ab +ab +cd +cd +cd +in +"} +(35,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +aO +aO +aO +as +aU +aG +ay +bC +bR +aw +ay +bK +ay +ay +ay +aA +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +cd +cd +cd +cd +cd +ab +fZ +ab +dH +ab +fZ +gb +ab +fY +ab +ab +ab +ab +cd +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bv +ao +ab +ab +cd +cd +cd +cd +bt +ab +ab +ab +hZ +cd +cd +cd +in +"} +(36,1,1) = {" +in +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +it +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +aV +at +bW +at +br +bH +at +bH +at +at +at +bH +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +fY +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +gd +ab +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +hY +bu +bu +bu +bu +bu +bu +bv +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(37,1,1) = {" +in +ab +ab +ab +ir +ab +ab +ab +ab +ab +ab +it +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +aE +bg +at +bc +aE +bL +bT +bH +bT +at +bT +bO +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +fX +ab +ab +ab +ab +ab +ab +fZ +ab +ab +ab +ab +ab +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bu +bv +bu +bu +bu +bv +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(38,1,1) = {" +in +ab +ab +ab +ab +ir +ab +ab +ab +ir +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +ba +at +at +as +as +as +as +bN +as +bn +as +as +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +fZ +ab +ab +dH +ab +ab +ab +ab +ab +ab +fX +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bv +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(39,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +bb +at +at +bn +at +at +as +bH +at +at +bG +bP +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +cd +cd +eZ +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bv +ao +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(40,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +bj +as +as +as +as +as +bG +ay +bF +bK +ay +ay +bC +bQ +as +aO +aO +aO +aO +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +cd +cd +cd +ab +ga +ab +ab +ab +ab +fX +ab +ab +fZ +ab +ab +cd +cd +ab +ab +cd +cd +bu +bu +bu +bu +bv +bu +bu +hY +bu +bu +bu +bu +bv +bv +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(41,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +bo +aA +bS +as +bH +at +bn +bH +at +aS +at +aS +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ga +ab +ab +ab +cd +cd +cd +cd +ab +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bv +bv +bv +bu +bu +bu +bu +bu +bu +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(42,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +aO +aO +aO +as +bS +bA +ay +bE +bI +at +as +bN +as +as +bp +as +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +cd +cd +bu +bu +bv +bu +bu +bu +bu +bu +bu +bu +bu +bu +ab +bv +bu +bu +bu +bu +bu +bu +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(43,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +by +bB +bS +as +bH +bX +as +bH +as +aQ +aQ +aQ +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +cd +cd +bv +bv +cd +cd +cd +cd +ab +ab +cd +cd +cd +cd +ab +bv +cd +cd +cd +cd +bu +bu +bv +bv +cd +cd +cd +cd +cd +cd +in +"} +(44,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aT +aO +aO +as +as +as +as +as +bJ +at +as +bH +as +aK +aR +aQ +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +cd +cd +bv +bv +cd +cd +cd +cd +ab +ab +cd +cd +cd +cd +ab +ao +cd +cd +cd +cd +bu +bu +bv +bv +cd +cd +cd +cd +cd +cd +in +"} +(45,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +iP +iQ +iO +as +bH +at +as +bH +as +aQ +bU +aQ +as +aO +aO +aO +aO +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +ab +ao +cd +cd +ao +ab +ab +ao +cd +cd +cd +cd +hY +bu +bu +bu +cd +cd +cd +cd +cd +cd +in +"} +(46,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +bo +bC +ay +bF +bK +aA +as +bH +as +as +as +as +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ge +ab +ab +cd +cd +cd +cd +cd +cd +cd +ab +ao +cd +cd +ao +ab +ab +ao +cd +cd +cd +cd +bu +bu +bu +bu +cd +cd +cd +cd +cd +cd +in +"} +(47,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +bd +be +bd +as +bL +bM +as +bi +ay +aA +at +bf +as +aO +aO +bs +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +cd +cd +ab +ab +ao +ao +cd +cd +cd +cd +bv +bv +ab +ab +cd +cd +cd +cd +cd +cd +in +"} +(48,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +as +as +as +as +as +as +as +as +as +bN +as +as +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +dH +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ao +ab +cd +cd +ab +ab +ab +ao +cd +cd +cd +cd +bv +bv +ab +ab +cd +cd +cd +cd +cd +cd +in +"} +(49,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +bj +as +aH +at +bH +at +aL +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ao +ao +cd +cd +ao +ab +cd +cd +cd +bv +bu +bu +bu +bv +bv +ao +ab +ab +ao +cd +cd +cd +cd +cd +cd +ao +ab +ab +ao +cd +cd +cd +cd +in +"} +(50,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +as +aI +bG +bC +aA +aM +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +cd +ao +cf +ao +ao +ab +ab +cd +cd +cd +hY +bu +bv +bu +bv +bv +bv +ao +ab +ab +cd +cd +ao +ab +ab +cd +ab +ab +ab +ao +cd +cd +cd +cd +in +"} +(51,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aT +aO +aO +aO +as +aJ +iR +bh +bO +aN +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bu +bu +bu +bu +cd +cd +cd +cd +ab +ab +ab +ao +ab +ab +ab +ao +ab +ab +ab +ao +cd +cd +cd +cd +in +"} +(52,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +as +as +as +as +as +as +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +dH +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bu +bu +bu +bu +cd +ao +ao +cd +ab +ao +ab +ao +ab +ab +ab +ab +ab +ab +ao +ao +cd +cd +cd +cd +in +"} +(53,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aT +aO +aO +aO +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +gh +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +ab +cd +ao +cf +ab +ab +ab +ab +ab +ab +ab +bu +bu +bu +bv +cd +bY +ab +cd +ab +ab +ab +ao +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(54,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +ab +cd +cd +ao +cf +ab +ab +ao +cd +cd +cd +bu +bv +bu +bv +cd +ab +ab +ab +ab +ab +ao +ao +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(55,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +bv +bv +hY +bv +cd +ab +ab +cd +cd +cd +cd +cd +ab +ab +ao +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(56,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ao +ao +ab +ao +cd +ab +ab +ab +ab +ab +ao +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(57,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ao +ab +ao +cd +ab +ab +ao +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(58,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +ao +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(59,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +ao +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(60,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +bY +ab +ab +ab +ab +ao +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(61,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +gh +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +dH +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +hZ +ab +bY +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(62,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ga +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +cd +cd +ao +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(63,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +gh +ab +ab +gh +ga +ab +ab +ab +ab +gh +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ao +ao +ab +ab +ab +ao +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(64,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +bZ +cb +bY +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(65,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ga +ga +ga +ga +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(66,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gQ +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(67,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +gh +ga +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(68,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gT +ab +gT +ab +ab +ab +ab +ga +ab +ga +ga +ab +ab +gh +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ga +ga +ga +ga +ab +ab +gh +ab +ab +ga +ab +ab +cd +cd +cd +cd +ab +dH +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(69,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ga +ab +ga +ga +ga +ga +gQ +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ab +gP +ab +ab +ga +ab +ab +ab +ab +ab +ga +ga +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +dH +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(70,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gU +ga +ga +ga +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ap +ap +cd +cd +ap +ap +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(71,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +gR +ab +gh +ab +ab +ab +ga +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ap +gi +ap +ap +ap +ap +ap +ap +cd +cd +cd +cd +cd +cd +cd +in +"} +(72,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gP +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +gr +gl +cd +cd +cd +cd +cd +cd +ap +ap +gy +ap +ap +ap +ap +ap +cd +cd +cd +cd +cd +cd +cd +in +"} +(73,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ga +ga +ga +gP +ga +ga +ga +ga +gP +ga +ga +ga +ga +ga +ab +gh +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +dH +ab +ab +cd +cd +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +cd +ab +ab +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +ap +ap +ap +ap +ap +ap +ap +ap +ap +gi +cd +cd +cd +cd +cd +cd +in +"} +(74,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +gP +ga +ga +ga +ga +ga +ga +gQ +gS +gQ +gQ +gQ +gQ +gQ +ab +ab +ab +ga +ab +ab +ab +ga +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +gq +gn +gn +gt +cd +cd +cd +cd +ap +ap +ap +ap +gi +gy +ap +ap +ap +ap +cd +cd +cd +cd +cd +cd +in +"} +(75,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ga +ga +ga +ga +ga +ga +ga +gQ +gQ +gQ +gQ +gQ +gS +gQ +ab +ga +ga +ab +ga +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +cd +cd +cd +cd +cd +ap +ap +ap +ap +ap +ap +gn +ap +cd +cd +cd +cd +cd +in +"} +(76,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ab +ab +ab +ga +ab +ga +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +gn +gn +gn +gn +gn +gn +gn +cd +cd +cd +cd +cd +gl +gn +ap +gn +gn +gn +gl +cd +cd +cd +cd +cd +in +"} +(77,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +gh +ab +ab +ab +ab +ga +ab +ga +ga +ga +ga +ga +ga +ga +gP +ga +gU +ga +ga +ga +ga +ga +ga +ab +ab +ab +ab +gh +gh +ab +ab +ab +ga +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +gn +gn +gn +gn +gn +gn +gn +gw +cd +cd +cd +cd +cd +gn +gn +gn +gn +cd +cd +cd +cd +cd +cd +cd +in +"} +(78,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ga +gQ +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +gl +gn +gu +cd +gn +gn +gn +gn +cd +cd +cd +cd +cd +gn +gn +cd +gA +cd +cd +cd +cd +cd +cd +cd +in +"} +(79,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +gh +ga +ga +gP +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gP +ga +ab +gh +ab +ab +ge +ab +ab +ab +ab +ga +ab +gC +ab +ab +gQ +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gv +gn +gn +cd +cd +cd +cd +cd +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(80,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ab +ab +ab +ab +ga +ga +ab +ga +ga +gU +ga +ga +ga +ga +ga +gP +ga +ga +ga +ga +ga +ab +iM +ab +ab +ab +ab +ab +ab +gC +ga +ga +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +gf +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gn +gn +gz +gn +gn +cd +cd +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(81,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +gh +ab +ab +ab +ab +ga +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +dH +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ap +ap +cd +cd +gn +gn +gn +gn +gn +gn +gn +gn +gl +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(82,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +gh +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +gf +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +cd +cd +cd +gn +gn +cd +cd +gu +gn +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(83,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ap +ap +ap +ap +gX +ab +ab +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gP +gU +ga +ga +ab +gB +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +cd +cd +cd +cd +gn +gn +cd +cd +cd +gn +gn +cd +cd +cd +cd +gl +gK +gn +cd +cd +cd +cd +in +"} +(84,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gW +ar +ar +ar +ab +gh +ga +ab +ga +ga +ga +ga +ga +ga +ga +gR +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ga +ga +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +gm +gf +ab +ap +cd +cd +cd +cd +cd +cd +gn +gn +cd +cd +cd +gn +gn +gn +cd +cd +cd +gn +gn +gn +gn +cd +cd +cd +in +"} +(85,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ga +ga +ab +ab +ga +ga +gP +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ga +ga +ab +ab +gR +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +gj +ab +ab +ab +ap +cd +cd +cd +cd +cd +gs +gn +gn +gA +cd +cd +iF +gn +gn +gl +cd +gn +gn +gn +gn +gl +cd +cd +cd +in +"} +(86,1,1) = {" +in +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +cd +cd +cd +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ge +ga +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +go +ab +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +gn +gn +gn +gn +gn +gn +gn +gn +cd +cd +cd +cd +in +"} +(87,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +gX +ar +ar +ar +ar +ar +ar +ar +ap +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gU +gP +ga +ga +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ca +ab +cd +cd +cd +cd +cd +cd +cd +gt +gn +gn +cd +cd +cd +cd +gn +gn +gn +gk +gn +gn +gn +gn +cd +cd +cd +cd +in +"} +(88,1,1) = {" +in +ab +ab +cd +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gX +ar +ar +ar +ar +ar +ar +ar +ap +ab +gQ +ga +ga +ga +ga +ga +ga +gP +ga +ga +ga +ga +ga +ga +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +cd +cd +cd +cd +ab +dH +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +gk +gn +gn +gn +gl +cd +cd +cd +cd +cd +cd +cd +in +"} +(89,1,1) = {" +in +ab +ab +cd +dF +dI +dI +dI +dI +dI +dI +dI +en +dO +eW +fe +fe +fn +dO +eb +dI +dI +dI +dI +dI +dI +dI +dJ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gX +ar +ar +ar +ar +ar +ar +ar +ap +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gh +ga +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +dH +ab +ab +ab +ab +ab +dH +gf +ab +ab +gk +gn +gp +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +gl +gl +gk +gn +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(90,1,1) = {" +in +dG +ab +cd +dF +dF +dI +dI +dI +dI +dI +en +dO +eM +eX +eX +eX +eX +fq +dO +eb +dI +dI +dI +dI +dI +dI +dI +ab +cc +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +gh +ar +ap +gX +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ga +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +ab +ab +gf +gg +cd +gl +gn +gn +gp +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +cd +cd +cd +cd +cd +in +"} +(91,1,1) = {" +in +ab +ab +ab +dF +dF +dN +dO +dO +eb +en +dO +eH +eN +eR +eR +eR +eR +fm +fA +dO +eb +en +dO +dO +iU +dI +dI +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ap +gh +ar +ar +ar +ar +ar +ap +ab +ab +ga +ga +gP +ga +ga +ga +ga +ga +ga +ga +ga +gU +ga +ga +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +gf +cd +cd +cd +cd +gl +gn +cd +cd +gs +gn +gn +gk +gn +gn +gn +gl +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +gn +gz +cd +cd +cd +in +"} +(92,1,1) = {" +in +ab +ab +ab +dI +dI +dO +dO +dO +dO +dO +ew +eI +ef +ef +eq +ey +ef +fr +fB +ew +dO +dO +dO +dO +dO +dI +dI +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ar +ar +ap +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +gV +ga +ga +ga +ga +ga +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +cd +cd +cd +cd +cd +gl +gn +gk +gn +gn +gn +gn +gn +cd +cd +gn +gn +gn +cd +cd +cd +gn +gn +gn +dk +dk +dk +gn +gn +gu +cd +cd +in +"} +(93,1,1) = {" +in +ab +ab +ab +dJ +dL +dO +dO +dO +dO +dO +dO +dO +dO +dO +ff +fl +dO +dO +dO +dO +dO +dO +dO +dO +dO +dL +dI +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ap +ap +ar +ar +ar +ap +ab +ab +ga +ga +ga +ga +ga +ga +gQ +ga +ga +ga +ga +ga +ga +ga +ga +gh +ab +ab +ab +ga +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +dH +ab +ab +cd +cd +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +cd +ab +ab +cd +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +cd +cd +cd +cd +gx +gn +gn +cd +cd +gn +gn +gn +dk +gG +gI +gL +gn +gn +gn +cd +cd +in +"} +(94,1,1) = {" +in +ab +ab +ab +dI +dI +dO +dO +dO +ec +eo +ec +eJ +eO +eY +eN +fm +eY +fs +eJ +ec +fI +fN +dO +dO +dO +dI +dL +ab +ab +ab +ab +cc +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ab +ab +ga +ga +ga +ga +ga +ga +gQ +gQ +ga +ga +ga +gQ +ga +ga +ga +ab +ab +ab +ab +ga +ab +ab +ab +ab +ga +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +gp +gn +gn +gn +cd +cd +cd +cd +cd +gn +gn +cd +gu +gn +dk +dk +gF +cv +cv +gM +dk +dk +gn +cd +cd +in +"} +(95,1,1) = {" +in +ab +ab +dH +dI +dI +dP +dO +dO +ed +ep +ex +dO +er +eR +eR +eR +eR +ez +dO +fC +fJ +fO +dO +dO +iV +dI +dI +dG +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +gh +ar +ar +ar +ap +ab +ab +ab +ab +ab +gh +ab +ga +ga +ga +ab +ab +gP +ab +ab +ab +ga +ab +ab +ga +ab +ab +gh +ab +ab +ab +ab +ab +ab +gh +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +cd +gn +gn +cd +gn +gn +dk +dk +gF +cv +cv +gN +dk +gO +cd +cd +cd +in +"} +(96,1,1) = {" +in +ab +ab +ab +dI +dI +dI +dO +dO +dO +dO +dO +dO +er +eR +fg +eR +eR +ez +dO +dO +dO +dO +dO +dO +dI +dI +dI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ap +ab +ga +ga +ga +ga +ga +ab +ga +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +gs +gk +gn +gn +gt +cd +cd +gn +gD +dk +dk +gH +gJ +dk +dk +cd +cd +cd +cd +in +"} +(97,1,1) = {" +in +ab +cd +ab +dI +dI +dI +dO +dT +ee +ee +ee +ee +eN +eR +eR +eR +eR +fm +ee +ee +ee +ee +fR +dO +dI +dI +dI +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ap +ap +ar +gh +ab +ap +gh +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ga +ab +ab +gh +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ga +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +gn +gn +gn +gn +cd +cd +cd +gn +gn +gE +dk +gz +gn +dk +cd +cd +cd +cd +cd +in +"} +(98,1,1) = {" +in +cd +cd +ab +dK +dK +dK +dO +dU +ef +eq +ey +ef +ef +fa +eR +eR +fa +ft +ef +fD +ey +fP +fS +dO +dK +dK +dK +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ap +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gt +cd +gv +gn +cd +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +cd +cd +cd +cd +cd +cd +in +"} +(99,1,1) = {" +in +cd +ab +ab +dK +dM +dI +dO +dO +dO +er +ez +dO +dO +dO +fh +fh +dO +dO +dO +er +ez +dO +dO +dO +dQ +dI +dK +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +gn +cd +gn +gn +cd +cd +cd +cd +cd +cd +cd +in +"} +(100,1,1) = {" +in +ab +ab +ab +dK +dI +dI +dI +dV +eg +er +ez +dO +eP +eR +eR +eR +eR +fu +dO +er +ez +eg +dV +dI +dI +dI +dK +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ap +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(101,1,1) = {" +in +ab +ab +ab +dK +dI +dI +dI +dV +eg +es +eA +dO +eQ +eR +eR +eR +eR +fv +dO +fE +fK +eg +dV +dI +dI +dI +dK +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ap +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +gh +ab +ga +ab +ab +ab +ab +gh +ga +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(102,1,1) = {" +in +ab +dH +ab +dK +dI +dQ +dO +dO +dO +dO +dO +dO +eR +fb +fi +fj +fb +eR +dO +dO +dO +dO +dO +dO +dI +dM +dK +ab +ab +cc +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ap +ap +ar +ap +gW +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +gh +ab +ge +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(103,1,1) = {" +in +ab +ab +ab +dK +dK +dK +dO +dW +eh +eh +eB +dO +eS +fb +fj +fj +fb +fw +dO +fF +fL +fF +fF +dO +dK +dK +dK +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ap +ab +ab +gh +ab +ab +ge +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(104,1,1) = {" +in +ab +ab +ab +dI +dI +dI +dO +dX +ei +et +eC +dO +eR +fb +fj +fj +fb +eT +dO +eR +eR +eR +fT +dO +dI +dI +dI +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iE +iE +iY +iE +je +"} +(105,1,1) = {" +in +ab +ab +ab +dI +dI +dI +dO +dY +ej +et +ek +eK +eT +eR +eR +eR +eR +eR +fh +eR +fF +fF +fU +dO +dI +dI +dI +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ap +iG +iE +iE +iX +je +"} +(106,1,1) = {" +in +ab +dH +ab +dI +dI +dI +dO +dZ +ek +ek +eD +dO +eR +eR +eR +eR +eR +eR +dO +eR +eR +eR +iS +dO +dI +dL +dI +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +gh +ar +ap +ap +ab +ab +ab +ab +ab +ab +gh +ga +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ar +ap +iK +iK +iW +iE +je +"} +(107,1,1) = {" +in +ab +ab +ab +dI +dI +dL +dO +ea +ek +eu +eE +dO +dO +dO +fk +fk +dO +dO +dO +eR +fF +fF +iT +dO +iU +dI +dI +cd +cd +dH +ab +dG +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ar +ar +ar +ar +iN +iK +iK +iE +je +"} +(108,1,1) = {" +in +ab +ab +ab +dI +dI +dN +dO +dO +ek +ej +eF +dO +eU +fc +eR +eR +fo +fx +dO +fG +dO +dO +dO +dO +dO +dL +dJ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +iN +iN +iK +iZ +je +"} +(109,1,1) = {" +in +ab +dG +ab +dJ +dI +dO +dO +dO +el +ev +eG +dO +eU +eR +eR +eR +eR +fy +dO +fH +fM +fQ +dO +dO +dO +dI +dI +ab +ab +ab +ab +cc +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +gh +ap +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ap +ap +ap +ap +ab +ab +ap +ap +ap +ab +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +iN +iN +iK +iE +je +"} +(110,1,1) = {" +in +ab +ab +ab +dI +dI +dO +dO +dO +dO +dO +dO +dO +eV +eR +eR +eR +eR +fz +dO +dO +dO +dO +dO +dO +dO +dI +dI +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ap +ab +ab +gh +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ap +ar +ap +ab +ap +ar +ar +ap +ap +ap +ap +ar +ap +ap +ap +ar +ar +ap +ap +ar +ar +ar +ar +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +iN +iN +iK +iE +je +"} +(111,1,1) = {" +in +ab +ab +ab +dL +dI +dO +dO +dO +dO +em +dI +eL +dO +fd +fd +fd +fp +dO +em +dI +eL +dO +dO +dO +dO +dI +dF +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ap +ap +ap +ar +ar +ar +ar +ar +ap +ar +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +iN +iN +iK +ja +je +"} +(112,1,1) = {" +in +cd +cd +cd +dI +dI +dO +dO +dO +em +dI +dI +dI +eL +dR +dR +dR +dR +em +dI +dI +dI +eL +dR +dR +iV +dF +dF +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ap +ap +ar +ar +ap +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +iN +iN +iK +iK +je +"} +(113,1,1) = {" +in +dH +cd +cd +dF +dI +dP +dR +dR +dI +dI +dI +dI +dI +dS +dS +dS +dS +dI +dI +dI +dL +dI +dS +dS +dI +dF +dF +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ar +ar +ap +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +ap +ap +ap +ap +ap +ap +ap +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ar +ar +ar +ar +ar +ap +iN +iN +iK +iN +je +"} +(114,1,1) = {" +in +ab +ab +ab +dI +dI +dI +dS +dS +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dF +dF +cd +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ap +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ar +ar +ap +ap +ar +ar +ar +ar +ap +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ap +ap +ap +gn +gn +gn +gn +gn +gn +gn +ap +ap +ap +ap +ap +ap +ap +iK +iN +iN +iN +je +"} +(115,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ap +ap +ap +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ar +ar +ap +ap +ar +ar +ar +ar +ar +ar +ap +ap +ap +ap +ar +ar +ar +ar +ap +ab +ab +ab +ab +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +iK +iN +iN +iN +je +"} +(116,1,1) = {" +in +cc +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ap +ap +ar +ar +ar +ar +ar +ap +ar +ap +ap +ap +ap +ab +ab +ap +ap +ap +ar +ar +ap +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +gn +iK +iN +iN +iN +je +"} +(117,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ap +ap +ar +ar +ap +ar +ap +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +iD +iK +iK +iK +iK +je +"} +(118,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(119,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ab +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(120,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(121,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ab +ab +ab +ap +ab +ab +ab +ab +ab +ab +ab +ap +ab +ap +ap +ab +ab +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(122,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ap +ap +ap +ap +ab +ab +ab +ap +ap +ab +ap +ap +ab +ab +ab +ab +ap +ab +ap +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ap +ap +ap +ap +ap +ap +ap +ap +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(123,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ap +ab +ap +ab +ab +ab +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ap +ap +ar +ap +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cv +cv +cv +cv +cv +cv +cv +cd +cd +in +"} +(124,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ap +ap +ap +ab +ap +ap +ap +ap +ab +ab +ab +ap +ap +ap +ab +ap +ap +ab +ap +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cv +hs +hA +hE +dk +hI +cv +cd +cd +in +"} +(125,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ap +ap +ab +ap +ap +ab +ab +ab +ab +ab +ab +ap +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cv +ht +hB +dk +hH +dk +cv +cd +cd +in +"} +(126,1,1) = {" +in +ab +ab +ab +ab +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ap +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cv +hu +gY +dk +dk +hJ +cv +cd +cd +in +"} +(127,1,1) = {" +in +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cv +hv +hC +hF +dk +dk +cv +cd +cd +in +"} +(128,1,1) = {" +in +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +aq +aC +ab +ap +ap +ap +ar +ar +ar +ar +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +dC +cv +cv +cd +cd +in +"} +(129,1,1) = {" +in +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +aq +aC +ap +ap +ar +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cv +cU +gY +gY +hg +hl +dk +hq +dk +dk +gZ +dk +dk +dk +cd +cd +in +"} +(130,1,1) = {" +in +ab +ab +ab +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +aq +aC +ap +ar +ar +ar +ar +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +dC +cU +gY +dk +dk +dk +dk +dk +dk +cU +dk +dk +dk +hl +cd +cd +in +"} +(131,1,1) = {" +in +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +ip +ip +iC +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aq +aC +ap +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cv +cU +gZ +dk +dk +gZ +dk +gY +cU +hD +gY +dk +gZ +cv +cd +cd +in +"} +(132,1,1) = {" +in +ap +ab +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +ip +ip +ab +iB +ip +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aq +aC +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cv +cv +cv +hd +cv +cv +cv +hd +cv +cv +cv +hd +cv +cv +cd +cd +in +"} +(133,1,1) = {" +in +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +dH +iu +iw +iu +ab +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aq +aC +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cd +cd +cv +ha +he +hh +cv +hm +hf +hw +cv +hh +hf +hh +cv +cd +cd +in +"} +(134,1,1) = {" +in +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +ip +if +ix +if +ab +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cv +hb +hf +hi +cv +hn +hf +hx +cv +hG +hf +hK +cv +cd +cd +in +"} +(135,1,1) = {" +in +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +if +iy +if +ip +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +ab +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cv +hc +hf +hj +cv +ho +hf +hy +cv +hn +hf +hL +cv +cd +cd +in +"} +(136,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +if +iz +if +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iL +aa +ac +ac +ac +ac +ac +aa +ap +aD +ap +ao +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cv +hb +hf +hk +cv +hp +hr +hz +cv +hn +hf +he +cv +cd +cd +in +"} +(137,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +if +ig +if +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +ac +ad +ag +aj +ac +an +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +gn +cd +cd +cd +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cd +cd +in +"} +(138,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +dH +iv +ip +ip +iA +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iL +aa +ac +ae +ah +ak +ac +aa +ab +ab +ao +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(139,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +ip +ip +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +ac +af +ai +al +ac +aa +ao +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(140,1,1) = {" +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +jb +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +je +je +je +je +je +je +je +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +"} diff --git a/maps/tether/submaps/gateway/snowfield.dm b/maps/tether/submaps/gateway/snowfield.dm new file mode 100644 index 0000000000..80f3e07f74 --- /dev/null +++ b/maps/tether/submaps/gateway/snowfield.dm @@ -0,0 +1,171 @@ +// -- Areas -- // + +/area/awaymission/snowfield + icon_state = "blank" +// requires_power = 0 + base_turf = /turf/snow/snow2 + ambience = list('sound/ambience/ambispace.ogg','sound/music/title2.ogg','sound/music/space.ogg','sound/music/main.ogg','sound/music/traitor.ogg') + base_turf = /turf/simulated/floor/snow/snow2 + +/area/awaymission/snowfield/outside + icon_state = "green" + requires_power = 1 + always_unpowered = 1 + dynamic_lighting = 1 + power_light = 0 + power_equip = 0 + power_environ = 0 + mobcountmax = 40 + floracountmax = 2000 + + valid_mobs = list(/mob/living/simple_mob/animal/sif/sakimm/polar, /mob/living/simple_mob/animal/sif/diyaab/polar, + /mob/living/simple_mob/animal/sif/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar, + /mob/living/simple_mob/animal/wolf) + valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, + /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, + /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, + /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush, + /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass) + +/area/awaymission/snowfield/restricted // No mob spawns! + icon_state = "red" + mobcountmax = 1 // Hacky fix. + floracountmax = 120 + valid_mobs = list(/obj/structure/flora/tree/pine) // Hacky fix. + valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, + /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, + /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, + /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush, + /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass) + +/area/awaymission/snowfield/base + icon_state = "away" + ambience = null // Todo: Add better ambience. + +// -- Mobs -- // + +/mob/living/simple_mob/animal/space/bear/polar // More aggressive than normal bears so none of that fancy life() stuff. + name = "polar bear" + desc = "The real question is, why are you examining it, instead of running away?" + icon = 'icons/mob/vore.dmi' + icon_state = "polarbear" + icon_living = "polarbear" + icon_dead = "polarbear-dead" + icon_gib = "bear-gib" + vore_icons = SA_ICON_LIVING + vore_active = 1 + say_list_type = /datum/say_list/polar_bear + + faction = "polar" + maxHealth = 80 + health = 80 // Polar bear will fuck you up. + + //stop_when_pulled = 0 //VORESTATION AI TEMPORARY REMOVAL + //turns_per_move = 5 //VORESTATION AI TEMPORARY REMOVAL + see_in_dark = 6 + + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "desperately attacks" + + melee_damage_lower = 20 + melee_damage_upper = 50 // srsly u gon get rekt + + minbodytemp = 0 + + //speak_chance = 1 //VORESTATION AI TEMPORARY REMOVAL + meat_type = /obj/item/weapon/reagent_containers/food/snacks/bearmeat +/datum/say_list/polar_bear + speak = list("RAWR!","Rawr!","GRR!","Growl!") + emote_hear = list("rawrs","grumbles","grawls") + emote_see = list("stares ferociously", "stomps") + + + +/mob/living/simple_mob/animal/space/bear/polar/death() + desc = "This bastard sure isn't drinking Space Cola anymore." + ..() + +/mob/living/simple_mob/animal/sif/sakimm/polar + faction = "polar" + +/mob/living/simple_mob/animal/sif/diyaab/polar + faction = "polar" + +/mob/living/simple_mob/animal/sif/shantak/polar + faction = "polar" + +// -- Items -- // + +// For fake solar power. +/obj/machinery/power/fractal_reactor/fluff/smes + name = "power storage unit" + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit. The controls are locked." + icon_state = "smes" + +/obj/effect/landmark/away + name = "awaystart" + +/obj/effect/floor_decal/derelict/d1 + name = "derelict1" + icon_state = "derelict1" + +/obj/effect/floor_decal/derelict/d2 + name = "derelict2" + icon_state = "derelict2" + +/obj/effect/floor_decal/derelict/d3 + name = "derelict3" + icon_state = "derelict3" + +/obj/effect/floor_decal/derelict/d4 + name = "derelict4" + icon_state = "derelict4" + +/obj/effect/floor_decal/derelict/d5 + name = "derelict5" + icon_state = "derelict5" + +/obj/effect/floor_decal/derelict/d6 + name = "derelict6" + icon_state = "derelict6" + +/obj/effect/floor_decal/derelict/d7 + name = "derelict7" + icon_state = "derelict7" + +/obj/effect/floor_decal/derelict/d8 + name = "derelict8" + icon_state = "derelict8" + +/obj/effect/floor_decal/derelict/d9 + name = "derelict9" + icon_state = "derelict9" + +/obj/effect/floor_decal/derelict/d10 + name = "derelict10" + icon_state = "derelict10" + +/obj/effect/floor_decal/derelict/d11 + name = "derelict11" + icon_state = "derelict11" + +/obj/effect/floor_decal/derelict/d12 + name = "derelict12" + icon_state = "derelict12" + +/obj/effect/floor_decal/derelict/d13 + name = "derelict13" + icon_state = "derelict13" + +/obj/effect/floor_decal/derelict/d14 + name = "derelict14" + icon_state = "derelict14" + +/obj/effect/floor_decal/derelict/d15 + name = "derelict15" + icon_state = "derelict15" + +/obj/effect/floor_decal/derelict/d16 + name = "derelict16" + icon_state = "derelict16" \ No newline at end of file diff --git a/maps/tether/submaps/gateway/snowfield.dmm b/maps/tether/submaps/gateway/snowfield.dmm new file mode 100644 index 0000000000..43efd4d2a9 --- /dev/null +++ b/maps/tether/submaps/gateway/snowfield.dmm @@ -0,0 +1,21565 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/unsimulated/wall/planetary/sif, +/area/awaymission/snowfield/restricted) +"ab" = ( +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/restricted) +"ac" = ( +/obj/effect/blocker, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/restricted) +"ad" = ( +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"ae" = ( +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield) +"af" = ( +/obj/effect/landmark/gateway_scatter, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield) +"ag" = ( +/obj/machinery/light/small, +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ah" = ( +/turf/simulated/floor/outdoors/snow{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ai" = ( +/turf/simulated/wall/durasteel, +/area/awaymission/snowfield/base) +"aj" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/durasteel, +/area/awaymission/snowfield/base) +"ak" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"al" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"am" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil/yellow{ + amount = 2; + icon_state = "coil2" + }, +/obj/item/weapon/shovel, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"an" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"ao" = ( +/obj/machinery/power/smes/buildable{ + charge = 2.5e+006; + input_attempt = 1; + input_level = 250000; + inputting = 1; + output_level = 250000; + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"ap" = ( +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"aq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"ar" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump-derelict"; + operating = 0; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"as" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"at" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"au" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall/durasteel, +/area/awaymission/snowfield/base) +"av" = ( +/obj/machinery/door/airlock/centcom, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"aw" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ax" = ( +/obj/structure/closet/secure_closet/hydroponics{ + req_access = list(47) + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ay" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"az" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aA" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aB" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aC" = ( +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"aD" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aE" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/item/weapon/tool/wrench, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aF" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aG" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aH" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aI" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aJ" = ( +/obj/structure/closet/jcloset, +/obj/item/weapon/soap, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"aK" = ( +/obj/structure/closet/jcloset, +/obj/item/weapon/soap/deluxe, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"aL" = ( +/obj/structure/closet/l3closet/janitor, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"aM" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aN" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aO" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"aQ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Isolation to Waste" + }, +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aR" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aS" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aT" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aU" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"aV" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Port to Isolation" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aW" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aX" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aY" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aZ" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/botanydisk, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ba" = ( +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bb" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bc" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bd" = ( +/obj/machinery/door/airlock/research{ + name = "Xenoflora Storage"; + req_access = list(55) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"be" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bf" = ( +/obj/machinery/botany/editor, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bg" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bh" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bi" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 2; + icon_state = "freezer" + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bj" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 2; + icon_state = "heater" + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bk" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"bm" = ( +/obj/machinery/botany/extractor, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bn" = ( +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bo" = ( +/obj/machinery/door/window/northright{ + name = "Xenoflora Containment"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 5 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bq" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"br" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 9 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bs" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bt" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bu" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bv" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bw" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bx" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"by" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bz" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bA" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bB" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bC" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bD" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + layer = 4; + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bE" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bF" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bG" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bH" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/structure/closet/medical_wall{ + pixel_y = -32 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bI" = ( +/obj/machinery/seed_storage/xenobotany, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bJ" = ( +/obj/machinery/vending/hydronutrients{ + categories = 3 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bK" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bL" = ( +/obj/structure/table/glass, +/obj/item/weapon/tape_roll, +/obj/item/device/analyzer/plant_analyzer, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bM" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/white, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bN" = ( +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/janitorialcart, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bO" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bP" = ( +/obj/machinery/portable_atmospherics/hydroponics{ + closed_system = 1; + name = "isolation tray" + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bQ" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"bS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"bT" = ( +/obj/machinery/door/airlock/freezer, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bU" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bV" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"bW" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"bX" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"bY" = ( +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/base) +"bZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ca" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cb" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cc" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/sink/kitchen{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cd" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ce" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cf" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cg" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ch" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ci" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cj" = ( +/obj/structure/toilet, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ck" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/door/window/southright{ + name = "Shower" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cl" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"cm" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"cn" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"co" = ( +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/base) +"cp" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cq" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cr" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cs" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"ct" = ( +/obj/machinery/gateway, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"cu" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"cv" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cw" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cx" = ( +/obj/machinery/door/airlock/silver{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cy" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"cz" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/base) +"cA" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/base) +"cB" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/sovietsoda, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cC" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cD" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cE" = ( +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cF" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cG" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"cH" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"cI" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cJ" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cK" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cL" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cM" = ( +/obj/machinery/door/airlock/highsecurity, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"cN" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/closet/crate/bin, +/obj/item/trash/pistachios, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cO" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cP" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cQ" = ( +/obj/machinery/door/airlock/freezer, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"cS" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cT" = ( +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cU" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/derelict/d9, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cW" = ( +/obj/effect/floor_decal/derelict/d10, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cX" = ( +/obj/effect/floor_decal/derelict/d11, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cY" = ( +/obj/effect/floor_decal/derelict/d12, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cZ" = ( +/obj/effect/floor_decal/derelict/d13, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"da" = ( +/obj/effect/floor_decal/derelict/d14, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"db" = ( +/obj/effect/floor_decal/derelict/d15, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/derelict/d16, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dd" = ( +/obj/effect/floor_decal/derelict/d1, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"de" = ( +/obj/effect/floor_decal/derelict/d2, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"df" = ( +/obj/effect/floor_decal/derelict/d3, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dg" = ( +/obj/effect/floor_decal/derelict/d4, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dh" = ( +/obj/effect/floor_decal/derelict/d5, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"di" = ( +/obj/effect/floor_decal/derelict/d6, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dj" = ( +/obj/effect/floor_decal/derelict/d7, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dk" = ( +/obj/effect/floor_decal/derelict/d8, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dl" = ( +/obj/machinery/door/airlock/security, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/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/awaymission/snowfield/base) +"dn" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/southleft, +/obj/machinery/door/window/northleft, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"do" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"dp" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/base) +"dq" = ( +/obj/machinery/door/airlock/maintenance{ + locked = 1; + name = "Storage Access" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dr" = ( +/obj/structure/closet/l3closet/security, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"ds" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dt" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"du" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dv" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dw" = ( +/turf/simulated/floor/grass, +/area/awaymission/snowfield/base) +"dx" = ( +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/base) +"dy" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/gimmick/russian, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/l3closet/general, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dB" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/weapon, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dF" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dG" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/device/radio/phone, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dH" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/grass, +/area/awaymission/snowfield/base) +"dI" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/base) +"dJ" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/base) +"dK" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/grass, +/area/awaymission/snowfield/base) +"dL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dM" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dN" = ( +/obj/structure/closet/bombclosetsecurity, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dO" = ( +/obj/structure/closet/medical_wall{ + pixel_y = -32 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/adv, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dP" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/backpack/satchel/sec, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dQ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/head/hood/winter, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/internals, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/remains/human, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/remains/human, +/obj/structure/closet/crate/mimic/guaranteed{ + name = "steel crate" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/gmcloset, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dW" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dX" = ( +/obj/machinery/door/airlock/highsecurity{ + locked = 1; + name = "Secure Armoury Section"; + req_access = list(150) + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dY" = ( +/obj/structure/closet, +/obj/item/clothing/under/soviet, +/obj/item/clothing/shoes/boots/jackboots, +/obj/item/clothing/head/ushanka, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dZ" = ( +/obj/structure/closet/crate/secure/gear, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"ea" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"eb" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/space/syndicate, +/obj/item/clothing/head/helmet/space/syndicate, +/obj/structure/closet/crate/internals, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ec" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/hgpirate, +/obj/item/clothing/head/hgpiratecap, +/obj/structure/closet/crate/secure/gear, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ed" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/armor/combat, +/obj/structure/closet/crate/secure/gear, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ee" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"ef" = ( +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"eg" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"eh" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/weapon/gun/projectile/shotgun/pump/rifle, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"ei" = ( +/obj/structure/coatrack, +/turf/simulated/floor/grass, +/area/awaymission/snowfield/base) +"ej" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/wardrobe/red, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ek" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"el" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"em" = ( +/obj/effect/floor_decal/industrial/loading{ + icon_state = "loadingarea"; + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"en" = ( +/obj/machinery/conveyor_switch{ + id = "away_soviet" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"eo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/phoron, +/obj/fiftyspawner/phoron, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ep" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"eq" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/door/airlock/centcom, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/base) +"er" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 2; + id = "away_soviet" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"es" = ( +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"et" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eu" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ev" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ew" = ( +/obj/machinery/conveyor_switch{ + id = "away_soviet" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ex" = ( +/obj/machinery/conveyor{ + dir = 2; + id = "away_soviet" + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ey" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ez" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eA" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eB" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eC" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eD" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eE" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eF" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eG" = ( +/turf/simulated/floor/reinforced{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) + +(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 +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 +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 +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 +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(3,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(4,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(5,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(6,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(7,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(8,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(9,1,1) = {" +aa +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +ab +ab +aa +"} +(10,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(11,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(12,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(13,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(14,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(15,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(16,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(17,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(18,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(19,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(20,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(21,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(22,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(23,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(24,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(25,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +ad +ad +ad +ae +ae +ae +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(26,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +ad +ae +ae +ae +ae +ae +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(27,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +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 +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +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 +ad +ae +ae +af +ae +ae +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(28,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +ad +ae +ae +ae +ae +ae +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(29,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +ad +ad +ad +ae +ae +ae +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(30,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(31,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(32,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(33,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(34,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(35,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(36,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(37,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(38,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +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 +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 +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(39,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +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 +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 +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(40,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +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 +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 +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 +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(41,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +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 +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 +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(42,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +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 +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 +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(43,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(44,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(45,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(46,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(47,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(48,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(49,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(50,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(51,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(52,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(53,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(54,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(55,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(56,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(57,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(58,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(59,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(60,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(61,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aw +aM +bb +bh +bo +bz +ai +ai +ci +cr +ai +cD +cJ +cD +ai +cT +cT +ai +dr +dF +dN +ai +dY +ee +dY +ai +es +es +eA +ez +ez +ez +ez +ez +ez +ez +ez +ez +ez +et +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(62,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ax +aN +aN +bi +bp +aC +bP +ai +cj +aN +cx +cE +cE +cE +cP +cT +cT +dl +cy +cy +cy +ai +dY +ef +dY +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(63,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ax +aN +bc +bj +bq +bA +bQ +ai +ck +aN +ai +cF +cK +cF +ai +cT +cT +ai +cy +cy +cy +ai +dY +ef +dY +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(64,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ay +aO +aO +bk +br +bB +ai +ai +ai +ai +ai +ai +ai +ai +ai +cU +cT +ai +ds +cy +cy +dX +cy +ef +cy +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(65,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ai +aP +bd +bl +ai +ai +ai +bV +cl +cs +cy +cG +cy +ai +cy +cT +cT +dm +dt +cy +dO +ai +dZ +ef +eh +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(66,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +az +aQ +aC +aC +bs +bC +ai +bW +cm +ct +cy +cy +cy +cM +cy +cT +cT +dn +du +cy +cy +ai +dZ +ef +eh +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(67,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aA +aR +aC +aC +bt +bD +ai +bX +cn +cu +cy +cH +cy +ai +cy +cT +cT +do +dv +dG +dP +ai +dZ +eg +eh +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(68,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ai +ai +ai +ai +aA +aS +aC +aC +bt +bE +ai +ai +ai +ai +ai +ai +ai +ai +ai +cV +dd +ai +ai +ai +ai +ai +ai +ai +ai +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(69,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +ai +al +ap +ar +ai +aB +aT +be +be +bt +bF +bR +bY +co +bY +cz +bY +co +bY +bR +cW +de +ai +dw +dH +dw +dw +dw +dH +dw +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(70,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +ag +aj +am +ap +as +au +aC +aU +be +be +bu +bG +bS +bY +co +bY +co +bY +co +bY +bS +cX +df +ai +dw +dI +dI +dw +dI +dI +ei +ai +et +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(71,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +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 +ah +ak +an +ap +as +av +aC +aU +be +be +aC +aC +bT +bZ +bZ +bZ +bZ +bZ +bZ +bZ +cQ +cY +dg +dp +dx +dx +dx +dx +dx +dx +dx +eq +eu +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(72,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +ai +ao +aq +at +aj +aC +aU +be +be +aC +aC +bT +ca +ca +ca +ca +ca +ca +ca +cQ +cZ +dh +dp +dx +dx +dx +dx +dx +dx +dx +eq +eu +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(73,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +ai +ai +ai +ai +ai +aD +aV +be +be +bv +bH +bR +bY +co +bY +co +bY +co +bY +bR +da +di +ai +dw +dJ +dJ +dw +dJ +dJ +ei +ai +ev +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(74,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aE +aW +aC +aC +bt +bI +bS +bY +co +bY +cA +bY +co +bY +bS +db +dj +ai +dw +dK +dw +dw +dw +dK +dw +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(75,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aF +aX +aC +aC +bt +bJ +ai +ai +ai +ai +ai +ai +ai +ai +ai +dc +dk +ai +ai +ai +ai +ai +ai +ai +ai +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(76,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aG +aX +aC +aC +bt +bK +ai +cb +cp +cv +cB +cI +cd +cN +bR +cT +cT +ai +dy +dL +dQ +dB +ea +dL +ej +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(77,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aH +aY +aC +aC +bw +bL +ai +cc +ch +ch +ch +ch +ch +ch +cR +cT +cT +ai +dz +dB +dC +dB +dC +dB +ek +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(78,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aI +aZ +bf +bm +bx +bM +ai +cd +ch +cq +cq +ch +ch +ch +bS +cT +cT +ai +dA +dB +dR +dB +eb +dB +el +ai +ew +ez +eC +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(79,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ai +ai +ai +ai +ai +ai +ai +ce +cq +cd +cd +cq +ch +cO +ai +cU +cT +dq +dB +dB +dS +dB +dB +dB +em +er +ex +ex +eD +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(80,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aJ +ba +bg +bn +by +bN +ai +cf +cq +cw +cd +cq +ch +ch +ai +cT +cT +ai +dC +dB +dU +dB +dC +dB +en +ai +ey +ey +eE +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(81,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aK +ba +ba +ba +ba +bO +ai +cg +ch +cq +cq +ch +ch +ch +cS +cT +cT +ai +dD +dB +dV +dB +ec +dB +eo +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(82,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aL +ba +ba +ba +ba +ba +bU +ch +ch +ch +cC +ch +cL +cL +ai +cT +cT +ai +dE +dM +dW +dB +ed +dM +ep +ai +es +es +eF +ey +ey +ey +ey +ey +ey +ey +ey +ey +ey +ev +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 +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(83,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(84,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(85,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(86,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(87,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(88,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(89,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(90,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(91,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(92,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(93,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(94,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(95,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(96,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(97,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(98,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(99,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(100,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +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 +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 +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(101,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +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 +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 +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(102,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +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 +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 +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 +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(103,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +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 +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 +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(104,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +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 +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 +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(105,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(106,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(107,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(108,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(109,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(110,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(111,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(112,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(113,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +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 +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(114,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +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 +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(115,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +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 +ad +ad +ae +ae +ae +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 +ad +ad +ae +ae +af +ae +ae +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(116,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +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 +ad +ae +ae +ae +ae +ae +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 +ad +ae +ae +ae +ae +ae +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(117,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +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 +ad +ad +ae +ae +af +ae +ae +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 +ad +ad +ae +ae +ae +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(118,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +ae +ae +ae +ae +ae +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(119,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +ae +ae +ae +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 +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 +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(120,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(121,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(122,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(123,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(124,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(125,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(126,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(127,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(128,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(129,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(130,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(131,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(132,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +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 +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 +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 +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 +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(133,1,1) = {" +aa +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +ab +ab +aa +"} +(134,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(135,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(136,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(137,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(138,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(139,1,1) = {" +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 +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(140,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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/gateway/zoo.dm b/maps/tether/submaps/gateway/zoo.dm new file mode 100644 index 0000000000..8dfc885783 --- /dev/null +++ b/maps/tether/submaps/gateway/zoo.dm @@ -0,0 +1,44 @@ +// -- Areas -- // + +/area/awaymission/zoo + icon_state = "green" + requires_power = 0 + dynamic_lighting = 0 + ambience = list('sound/ambience/ambispace.ogg','sound/music/title2.ogg','sound/music/space.ogg','sound/music/main.ogg','sound/music/traitor.ogg') + +/area/awaymission/zoo/solars + icon_state = "yellow" + +/area/awaymission/zoo/tradeship + icon_state = "purple" + +/area/awaymission/zoo/syndieship + icon_state = "red" + +/area/awaymission/zoo/pirateship + icon_state = "bluenew" + +/obj/item/weapon/paper/zoo + name = "\improper Quarterly Report" + info = {"There's nothing but spreadsheets and budget reports on this document, apparently regarding a zoo owned by NanoTrasen."} + +/obj/item/weapon/paper/zoo/pirate + name = "odd note" + +/obj/item/weapon/paper/zoo/pirate/volk + info = {"Lady Nebula,

We can't keep these animals here permanently. We're running out of food and they're getting hungry. + Ma'isi went missing last night when we sent her to clean up the petting zoo. This morning, we found Tajaran hair in the + horse shit. I can't speak for everyone, but I'm out. If these animals break loose, we're all fucking dead. Please get + some extra rations of meat before the carnivores realize the electrified grilles don't work right now.

-Volk"} + +/obj/item/weapon/paper/zoo/pirate/nebula + info = {"Volk,

Throw some prisoners into the cages, then. The client took too long to pay up anyway.

-Lady Nebula"} + +/obj/item/weapon/paper/zoo/pirate/haveyouseen + info = {"Has anyone seen Za'med? I sent him to get something out of the tool shed and he hasn't come back.

-Meesei"} + +/obj/item/weapon/paper/zoo/pirate/warning + info = {"Attention crew,

Since apparently you fucking idiots didn't notice, that bulltaur who delivered the bears was + Jarome Rognvaldr. I'm sorry, maybe you scabs forgot? Does the name Jarome the Bottomless ring any fucking bells? If he's + seen again without a laser bolt hole through his fucking skull, I'm shoving anyone on guard duty up Zed's arse. Are we + clear?

-Lady Nebula"} \ No newline at end of file diff --git a/maps/tether/submaps/gateway/zoo.dmm b/maps/tether/submaps/gateway/zoo.dmm new file mode 100644 index 0000000000..33ce2d311b --- /dev/null +++ b/maps/tether/submaps/gateway/zoo.dmm @@ -0,0 +1,69572 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/obj/effect/blocker, +/turf/space{ + density = 1; + desc = "You can't go there!"; + name = "The 4th Wall" + }, +/area/space) +"ac" = ( +/obj/effect/blocker, +/turf/space, +/area/space) +"ad" = ( +/turf/simulated/shuttle/wall, +/area/awaymission/zoo/pirateship) +"ae" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"af" = ( +/obj/machinery/porta_turret{ + dir = 8; + emagged = 1; + installation = /obj/item/weapon/gun/energy/lasercannon + }, +/turf/simulated/floor/reinforced, +/area/awaymission/zoo/pirateship) +"ag" = ( +/turf/simulated/floor/reinforced, +/area/awaymission/zoo/pirateship) +"ah" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ai" = ( +/obj/structure/table/marble, +/obj/structure/safe/floor, +/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, +/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, +/obj/item/weapon/card/emag, +/obj/item/weapon/beartrap, +/obj/item/weapon/grenade/spawnergrenade/spesscarp, +/obj/item/weapon/grenade/spawnergrenade/spesscarp, +/obj/item/weapon/grenade/spawnergrenade/spesscarp, +/obj/item/clothing/glasses/thermal/plain/monocle, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/melee/energy/sword/pirate, +/turf/space, +/area/awaymission/zoo) +"aj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ak" = ( +/obj/machinery/door/unpowered/shuttle, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"al" = ( +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"am" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"an" = ( +/obj/machinery/light/small, +/turf/simulated/floor/reinforced, +/area/awaymission/zoo/pirateship) +"ao" = ( +/obj/machinery/door/airlock/silver{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ap" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aq" = ( +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ar" = ( +/obj/item/weapon/surgical/scalpel, +/obj/structure/closet/crate, +/obj/item/weapon/tank/anesthetic, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"as" = ( +/obj/item/bodybag, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"at" = ( +/obj/item/weapon/storage/box/syringes, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"au" = ( +/obj/machinery/optable, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"av" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aw" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 9 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ax" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ay" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"az" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/packageWrap, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aA" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aD" = ( +/obj/item/weapon/storage/box, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aE" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aF" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aG" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aH" = ( +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aI" = ( +/obj/structure/largecrate, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/spacecash/c500, +/obj/item/weapon/spacecash/c100, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/wood, +/area/awaymission/zoo/pirateship) +"aK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/yellow, +/turf/simulated/floor/wood, +/area/awaymission/zoo/pirateship) +"aL" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aN" = ( +/obj/structure/sign/vacuum, +/turf/simulated/shuttle/wall, +/area/awaymission/zoo/pirateship) +"aO" = ( +/obj/item/clothing/glasses/regular/hipster, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aP" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aQ" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aR" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aS" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/landmark/loot_spawn{ + live_cargo = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aU" = ( +/turf/simulated/floor/wood, +/area/awaymission/zoo/pirateship) +"aV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo/pirateship) +"aW" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aX" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aY" = ( +/obj/machinery/gateway, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aZ" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ba" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bb" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bd" = ( +/obj/structure/symbol/pr, +/turf/simulated/shuttle/wall, +/area/awaymission/zoo/pirateship) +"be" = ( +/obj/machinery/button/remote/airlock{ + id = "packerMed"; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bf" = ( +/obj/machinery/sleeper, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bg" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bh" = ( +/obj/machinery/door/airlock/silver{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo/pirateship) +"bi" = ( +/obj/machinery/door/blast/shutters{ + id = "packerMed" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/landmark/loot_spawn{ + live_cargo = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bk" = ( +/obj/structure/kitchenspike, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bl" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/landmark/loot_spawn{ + live_cargo = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bm" = ( +/obj/machinery/button/remote/airlock{ + id = "packerCargo"; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bn" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/awaymission/zoo/tradeship) +"bo" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"bp" = ( +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"bq" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/paper{ + info = "The next person who takes one of my screwdrivers gets stabbed with one. They are MINE. - Love, Madsen"; + name = "scribbled note" + }, +/obj/item/weapon/tool/screwdriver, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"br" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bs" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bt" = ( +/obj/structure/sink{ + dir = 2 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bu" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bv" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bw" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bx" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"by" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bz" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bB" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bC" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/material/knife, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bD" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bE" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bF" = ( +/obj/machinery/door/blast/shutters{ + id = "packerCargo" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bG" = ( +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"bH" = ( +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"bI" = ( +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"bJ" = ( +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"bK" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"bL" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 4 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/tradeship) +"bM" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r"; + dir = 4 + }, +/turf/space, +/area/awaymission/zoo/tradeship) +"bN" = ( +/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bO" = ( +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bP" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bQ" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bR" = ( +/obj/item/weapon/stool, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bS" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"bT" = ( +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"bU" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bV" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bX" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bY" = ( +/obj/machinery/button/remote/airlock{ + id = "packerCargo"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bZ" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ca" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/rd, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cb" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cc" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"ce" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cg" = ( +/obj/machinery/sleep_console{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ch" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ci" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/space, +/area/awaymission/zoo/tradeship) +"cj" = ( +/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"ck" = ( +/obj/machinery/door/unpowered/shuttle, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cl" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"cm" = ( +/obj/machinery/door/window{ + dir = 2 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"cn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"co" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"cq" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + opened = 1 + }, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"cr" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"cs" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"ct" = ( +/obj/item/weapon/tool/crowbar, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"cu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"cx" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cy" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cz" = ( +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cA" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cC" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cD" = ( +/obj/machinery/suit_cycler/syndicate, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cE" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cF" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cG" = ( +/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{ + pixel_x = 0; + pixel_y = 0 + }, +/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/awaymission/zoo/tradeship) +"cH" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cI" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper/zoo/pirate/volk, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"cJ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"cK" = ( +/mob/living/simple_mob/humanoid/pirate, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"cL" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cM" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cN" = ( +/obj/machinery/seed_extractor, +/obj/item/seeds/angelmycelium, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cO" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cP" = ( +/obj/item/weapon/reagent_containers/food/snacks/meat, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"cQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cR" = ( +/obj/item/device/multitool, +/turf/simulated/floor/reinforced, +/area/awaymission/zoo/pirateship) +"cS" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/pirateship) +"cT" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 4 + }, +/turf/space, +/area/awaymission/zoo/pirateship) +"cU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"cV" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cW" = ( +/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/awaymission/zoo/tradeship) +"cX" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/glasses/square, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"da" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 32 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"db" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dc" = ( +/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/awaymission/zoo/tradeship) +"dd" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"de" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Medical Bay"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/awaymission/zoo/tradeship) +"df" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dg" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l"; + dir = 4 + }, +/turf/space, +/area/awaymission/zoo/tradeship) +"dh" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"di" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"dj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dl" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/zoo/pirateship) +"dm" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"dn" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"do" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dq" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ds" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"dt" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"du" = ( +/obj/machinery/vending/medical{ + pixel_y = -32; + req_access = null + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dv" = ( +/obj/structure/grille, +/obj/structure/shuttle/window, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dw" = ( +/obj/machinery/computer, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"dx" = ( +/obj/machinery/door/airlock/silver{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dy" = ( +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dz" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "meatConvey1" + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"dA" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "meatConvey1" + }, +/obj/structure/plasticflaps, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"dB" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"dC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/awaymission/zoo/pirateship) +"dD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dI" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/lights, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dJ" = ( +/mob/living/simple_mob/humanoid/pirate, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dK" = ( +/obj/machinery/power/fractal_reactor/fluff/converter{ + mapped_in = 1; + power_generation_rate = 10000 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dL" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dM" = ( +/turf/space, +/area/awaymission/zoo/tradeship) +"dN" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dO" = ( +/obj/structure/window/reinforced, +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dP" = ( +/obj/machinery/door/window/southleft, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dQ" = ( +/obj/machinery/door/window/southright, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dR" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"dS" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile, +/obj/item/clothing/mask/surgical, +/obj/item/weapon/surgical/retractor{ + pixel_x = 0; + 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/awaymission/zoo/tradeship) +"dT" = ( +/obj/machinery/iv_drip, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dU" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"dV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"dW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ea" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eb" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "meatConvey1" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"ec" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"ed" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"ee" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"ef" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eh" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/utility/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"ei" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"ej" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"ek" = ( +/obj/machinery/vending/coffee, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"el" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"em" = ( +/obj/structure/closet/crate/secure/weapon, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"en" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ep" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eq" = ( +/obj/structure/table/rack, +/obj/item/weapon/cell/high, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"er" = ( +/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/awaymission/zoo/tradeship) +"es" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"et" = ( +/obj/structure/toilet, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eu" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light/small, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ev" = ( +/obj/structure/mirror{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ew" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ex" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ey" = ( +/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 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ez" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/mob/living/simple_mob/humanoid/pirate, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eB" = ( +/mob/living/simple_mob/animal/space/alien{ + faction = "pirate" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eC" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right" + }, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eE" = ( +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eF" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"eH" = ( +/obj/machinery/computer, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eI" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eJ" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eK" = ( +/obj/machinery/door/airlock/silver{ + name = "Restroom" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eL" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/awaymission/zoo/tradeship) +"eM" = ( +/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/awaymission/zoo/tradeship) +"eN" = ( +/obj/machinery/door/window/westright{ + name = "Storefront"; + req_access = list(160) + }, +/obj/structure/table/marble, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eP" = ( +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eR" = ( +/obj/structure/mopbucket, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/material/knife, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eT" = ( +/obj/item/weapon/cell/high, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"eV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eW" = ( +/obj/machinery/door/airlock/command, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eX" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eZ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fb" = ( +/obj/machinery/door/window/westleft{ + name = "Storefront"; + req_access = list(160) + }, +/obj/structure/window/reinforced, +/obj/structure/table/marble, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "meatConvey2" + }, +/obj/item/weapon/material/knife, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"fd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "meatConvey2" + }, +/obj/structure/plasticflaps, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"fe" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "meatConvey2" + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"ff" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"fh" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"fi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"fj" = ( +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fk" = ( +/obj/machinery/computer/arcade/battle, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fl" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/flora/pottedplant{ + icon_state = "plant-09"; + name = "Esteban"; + pixel_y = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fm" = ( +/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/awaymission/zoo/tradeship) +"fn" = ( +/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/awaymission/zoo/tradeship) +"fo" = ( +/obj/machinery/vending/sovietsoda, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fp" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/item/weapon/towel{ + color = "#0000FF" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fq" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fr" = ( +/obj/machinery/door/window/westright, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fs" = ( +/obj/machinery/button/remote/blast_door{ + id = "trade"; + name = "Shop Shutters"; + pixel_x = 0; + pixel_y = -26 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ft" = ( +/obj/item/weapon/material/knife, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fu" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "meatConvey2" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fv" = ( +/obj/item/weapon/mop, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"fw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fx" = ( +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/awaymission/zoo/tradeship) +"fy" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fz" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"fA" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"fB" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"fC" = ( +/obj/structure/reagent_dispensers, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"fD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fE" = ( +/obj/machinery/door/window/northleft, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fF" = ( +/obj/machinery/door/window/northright, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fG" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 2; + start_pressure = 740.5 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fH" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fI" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Unlocked Autolathe" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fJ" = ( +/obj/structure/frame{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"fK" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fL" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fM" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor, +/area/awaymission/zoo/pirateship) +"fN" = ( +/obj/structure/largecrate/animal/cat, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fO" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/awaymission/zoo/tradeship) +"fP" = ( +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"fQ" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"fR" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper{ + info = "DEAR DAIRY: So we was doing our typpical route when the captain says we've been picking up weird signals on some backwatter planet. Madsen wanted to stay on course but he ain't the captain, so we went out of the way to check it out. There was lots of rocks on the way, but we got to the planet fine. Found a big fancy camp with nobody around and this big metal donut thing with NT stamps all over it right in the middle. Case of beer too. Captain reckons we can pass it off to some buyer in the Syndicate. Ingram says it's bad luck and that someone is going to come look for it but it sounds like better money than selling bad meat to jerky companies."; + name = "Old Diary" + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"fS" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/pen/red, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"fT" = ( +/obj/structure/closet, +/obj/item/clothing/under/overalls, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"fU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"fV" = ( +/obj/structure/closet/wardrobe/captain, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bookcase, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fX" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fY" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"fZ" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"ga" = ( +/obj/structure/closet/crate/solar, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gb" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/zoo/pirateship) +"gc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gd" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ge" = ( +/obj/item/stack/cable_coil/random{ + amount = 5 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gf" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"gh" = ( +/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/awaymission/zoo/tradeship) +"gi" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"gj" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"gk" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"gl" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"gm" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"gn" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"go" = ( +/obj/structure/bed, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gp" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/item/weapon/storage/wallet/random, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gq" = ( +/obj/structure/closet, +/obj/item/clothing/under/lawyer/bluesuit, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gr" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/awaymission/zoo/syndieship) +"gs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"gt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"gu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"gv" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/captain, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gw" = ( +/obj/structure/table/glass, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -35 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gx" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gy" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"gz" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"gA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"gB" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gC" = ( +/obj/machinery/vending/engivend, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gD" = ( +/obj/machinery/vending/tool, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gF" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gG" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gH" = ( +/obj/machinery/computer, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gI" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gJ" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gK" = ( +/obj/machinery/door/unpowered/shuttle, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gL" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gM" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gN" = ( +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gP" = ( +/turf/simulated/wall, +/area/awaymission/zoo) +"gQ" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"gR" = ( +/obj/item/weapon/caution, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gS" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gT" = ( +/obj/structure/closet/crate, +/obj/item/weapon/spacecash/c10, +/obj/item/weapon/spacecash/c200, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gU" = ( +/obj/structure/closet/crate, +/obj/item/weapon/spacecash/c10, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gV" = ( +/obj/structure/closet/crate, +/obj/item/weapon/spacecash/c1000, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gW" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gX" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"gY" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ha" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hb" = ( +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hc" = ( +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hd" = ( +/obj/machinery/door/airlock/silver{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor, +/area/awaymission/zoo/pirateship) +"he" = ( +/obj/structure/table/standard, +/obj/item/stack/material/glass{ + amount = 15 + }, +/obj/item/weapon/cell{ + charge = 100; + maxcharge = 15000 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hf" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hg" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hh" = ( +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hi" = ( +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hj" = ( +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hk" = ( +/obj/item/weapon/storage/box/matches, +/obj/item/weapon/storage/fancy/cigarettes/dromedaryco, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"hl" = ( +/obj/item/weapon/contraband/poster, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"hm" = ( +/obj/machinery/door/window/northright, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hn" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ho" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-24" + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hp" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hq" = ( +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hr" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"hs" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"ht" = ( +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = -32; + pixel_y = 0; + req_access = list(150) + }, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hw" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hx" = ( +/obj/structure/table/rack, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-xmas" + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hB" = ( +/obj/structure/symbol/em{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hC" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hF" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -25 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hH" = ( +/obj/structure/closet, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hI" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hJ" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hK" = ( +/obj/structure/closet, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hL" = ( +/obj/structure/closet, +/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/tastybread, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hM" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hN" = ( +/obj/machinery/flasher{ + id = "syndieflash"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hO" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 0; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hP" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hR" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"hT" = ( +/obj/machinery/door/window/southleft, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hU" = ( +/obj/machinery/door/window/southright, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hV" = ( +/obj/machinery/door/window/northleft, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hW" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hX" = ( +/obj/machinery/vending/assist{ + contraband = null; + name = "AntagCorpVend"; + 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) + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"hZ" = ( +/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/darkred, +/area/awaymission/zoo/syndieship) +"ia" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/button/flasher{ + id = "syndieflash"; + name = "Flasher"; + pixel_x = 27; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ib" = ( +/mob/living/simple_mob/animal/passive/cat/kitten{ + name = "Enola" + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ic" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"id" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife{ + pixel_x = -6 + }, +/obj/item/weapon/reagent_containers/syringe/drugs{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/weapon/reagent_containers/syringe/drugs{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/syringe/drugs{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ie" = ( +/obj/machinery/door/window/eastleft, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"if" = ( +/obj/machinery/door/window/westright, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ig" = ( +/obj/structure/closet/syndicate/suit{ + name = "suit closet" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ih" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"ii" = ( +/obj/structure/closet{ + name = "custodial" + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ij" = ( +/obj/machinery/door/window/eastright, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ik" = ( +/mob/living/simple_mob/humanoid/merc/ranged{ + desc = "He doesn't seem like he's looking for a fight."; + faction = "neutral"; + friendly = "hugs"; + name = "Mercenary" + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"il" = ( +/obj/machinery/door/window/westleft, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"im" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"in" = ( +/obj/machinery/sleep_console, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"io" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ip" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iq" = ( +/obj/structure/table/standard, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_y = 32; + req_access = list(150) + }, +/obj/item/bodybag, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/syringe, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ir" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"is" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/yellow, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"it" = ( +/obj/structure/table/standard, +/obj/item/borg/sight/thermal, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters_infirmary"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "syndieshutters_workshop"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"ix" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters_infirmary"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iy" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iz" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iA" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "syndieshutters_workshop"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iC" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters_infirmary"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iD" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "syndieshutters_workshop"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iF" = ( +/obj/structure/table/rack, +/obj/item/device/multitool, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/surgical/surgicaldrill, +/obj/item/weapon/surgical/cautery, +/obj/item/weapon/surgical/retractor, +/obj/item/stack/nanopaste, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw, +/obj/item/weapon/surgical/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/weapon/surgical/hemostat, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iI" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iJ" = ( +/obj/structure/table/standard, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iK" = ( +/obj/item/weapon/weldingtool, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iL" = ( +/obj/structure/sign/securearea{ + name = "CAUTION"; + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/mopbucket, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iM" = ( +/obj/machinery/telecomms/allinone{ + intercept = 1 + }, +/obj/machinery/door/window/northright{ + name = "Telecoms Mainframe"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iN" = ( +/obj/machinery/door/blast/regular{ + id = "syndieshutters_telebay"; + name = "Outer Airlock" + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iO" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iP" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = 32; + pixel_y = 0; + req_access = list(150) + }, +/obj/item/weapon/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/gloves/sterile, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iQ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iR" = ( +/obj/item/weapon/tool/crowbar, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iS" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iT" = ( +/obj/machinery/iv_drip, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iU" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iV" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iW" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/syndieship) +"iX" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l" + }, +/turf/space, +/area/awaymission/zoo/syndieship) +"iY" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/awaymission/zoo/syndieship) +"iZ" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r" + }, +/turf/space, +/area/awaymission/zoo/syndieship) +"ja" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jb" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jc" = ( +/obj/structure/symbol/es{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jd" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"je" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jf" = ( +/obj/structure/symbol/sa{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jg" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jh" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ji" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jj" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jk" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jl" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jo" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jp" = ( +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"jq" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"jr" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"js" = ( +/obj/machinery/door/window/northleft, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"jt" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"ju" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jx" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jy" = ( +/obj/machinery/door/airlock/silver{ + name = "Men's Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"jz" = ( +/obj/machinery/door/airlock/silver{ + name = "Women's Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"jA" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jC" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jD" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 10 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jG" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jI" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"jJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jK" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jM" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"jN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jO" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"jP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 10 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jT" = ( +/mob/living/simple_mob/animal/passive/chicken{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"jU" = ( +/mob/living/simple_mob/animal/passive/chick, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"jV" = ( +/mob/living/simple_mob/animal/passive/dog/corgi/puppy{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"jW" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jX" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"ka" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"kb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"kc" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"kd" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"ke" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"kf" = ( +/obj/structure/sink/kitchen{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kg" = ( +/obj/structure/table/marble, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kh" = ( +/obj/machinery/vending/food, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"ki" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"kj" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"kk" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/hooded/ian_costume, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kl" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/hooded/carp_costume, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"km" = ( +/obj/structure/table/rack, +/obj/effect/landmark/costume, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kn" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/chickensuit, +/obj/item/clothing/head/chicken, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"ko" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/sombrero, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kq" = ( +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"kr" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"ks" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/monkeysuit, +/obj/item/clothing/mask/gas/monkeymask, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kt" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/bio_suit/plaguedoctorsuit, +/obj/item/clothing/head/plaguedoctorhat, +/obj/item/clothing/mask/gas/plaguedoctor, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"ku" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/gas/owl_mask, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kv" = ( +/obj/structure/table/rack, +/obj/item/toy/waterflower, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kw" = ( +/obj/structure/table/rack, +/obj/item/toy/sword, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"ky" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"kz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"kA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"kB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"kC" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"kD" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kE" = ( +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kF" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kG" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kH" = ( +/obj/structure/flora/ausbushes/ywflowers, +/mob/living/simple_mob/animal/passive/bird/parrot/kea{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kI" = ( +/obj/structure/flora/ausbushes/pointybush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kJ" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kK" = ( +/obj/structure/flora/ausbushes/pointybush, +/mob/living/simple_mob/animal/passive/bird/parrot/pink_cockatoo{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kL" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kM" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kN" = ( +/obj/structure/urinal{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kO" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kP" = ( +/obj/item/frame/mirror, +/turf/simulated/wall, +/area/awaymission/zoo) +"kQ" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kR" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kS" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kT" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"kU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"kV" = ( +/mob/living/simple_mob/animal/passive/cat{ + faction = "zoo" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"kW" = ( +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kX" = ( +/obj/structure/table/marble, +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"kY" = ( +/obj/structure/table/marble, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"kZ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"la" = ( +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/item/weapon/coin/gold, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lc" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"ld" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"le" = ( +/mob/living/simple_mob/animal/passive/bird/parrot/white_cockatoo{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lf" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lg" = ( +/obj/structure/flora/ausbushes/fullgrass, +/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/grey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lh" = ( +/obj/structure/flora/ausbushes, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"li" = ( +/obj/structure/flora/ausbushes/brflowers, +/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/yellowish{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lj" = ( +/obj/structure/flora/ausbushes/ppflowers, +/mob/living/simple_mob/animal/passive/bird/parrot/budgerigar/bluegreen{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "applebush" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"ll" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_closed"; + locked = 0; + name = "Exhibit Airlock" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"lm" = ( +/mob/living/simple_mob/vore/horse{ + faction = "zoo" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"ln" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"lo" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_closed"; + locked = 0; + name = "Exhibit Airlock" + }, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lp" = ( +/obj/structure/table/rack, +/obj/random/action_figure, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lq" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/fancy/crayons, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lr" = ( +/obj/structure/table/rack, +/obj/random/plushie, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"ls" = ( +/obj/structure/table/marble, +/obj/item/toy/nanotrasenballoon, +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"lt" = ( +/obj/structure/table/marble, +/obj/machinery/cash_register{ + icon_state = "register_idle"; + dir = 1 + }, +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"lu" = ( +/obj/structure/table/rack, +/obj/item/device/camera_film, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lv" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/photo_album, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lw" = ( +/obj/structure/table/rack, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lx" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"ly" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain_full"; + dir = 1 + }, +/obj/structure/showcase{ + name = "Statue"; + desc = "It looks almost lifelike."; + icon = 'icons/obj/statue.dmi'; + icon_state = "monkey" + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"lz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lA" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_closed"; + locked = 0; + name = "Exhibit Airlock" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"lB" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/landmark/away, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"lC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-16" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"lD" = ( +/obj/structure/table/marble, +/obj/machinery/cash_register{ + icon_state = "register_idle"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"lE" = ( +/mob/living/simple_mob/animal/passive/chick, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"lF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 10 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lG" = ( +/obj/item/weapon/coin/silver, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lI" = ( +/mob/living/simple_mob/animal/passive/bird/parrot/budgerigar{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lJ" = ( +/obj/structure/flora/ausbushes/sunnybush, +/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lK" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lL" = ( +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"lM" = ( +/mob/living/simple_mob/animal/passive/cow{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"lN" = ( +/obj/structure/table/rack, +/obj/item/toy/nanotrasenballoon, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lO" = ( +/obj/structure/table/rack, +/obj/item/toy/cultsword, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lP" = ( +/obj/structure/table/rack, +/obj/item/toy/crossbow, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lQ" = ( +/obj/structure/table/rack, +/obj/item/toy/bosunwhistle, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lR" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/wallet/poly, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lS" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lT" = ( +/obj/structure/table/rack, +/obj/item/weapon/beach_ball, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lU" = ( +/obj/structure/table/rack, +/obj/item/weapon/soap/deluxe, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lV" = ( +/obj/structure/table/rack, +/obj/item/device/binoculars, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lW" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/backpack/clown, +/obj/item/clothing/shoes/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/under/seromi/undercoat/standard/rainbow, +/obj/item/clothing/gloves/rainbow, +/obj/item/clothing/head/soft/rainbow, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"lY" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"lZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 2 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"ma" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"mb" = ( +/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/yellowish{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"mc" = ( +/mob/living/simple_mob/animal/passive/bird/parrot/white_caique{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"md" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"me" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"mf" = ( +/obj/structure/closet/crate/bin, +/obj/item/trash/candy, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"mg" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"mh" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"mi" = ( +/obj/machinery/newscaster, +/turf/simulated/wall, +/area/awaymission/zoo) +"mj" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"mk" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"ml" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"mm" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_closed"; + locked = 0; + name = "Exhibit Airlock" + }, +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"mn" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"mo" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"mp" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"mq" = ( +/obj/machinery/door/window/southleft, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"mr" = ( +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ms" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Not to be confused with the common Earth bat, the Space Bat is a mammalian-like creature that is capable of surviving in the vacuum of space! These creatures live and fly in groups, and are most commonly found in caves, such as those on asteroids, or small planetary bodies with light gravity and no atmosphere. These creatures survive by sucking the blood of wayward space travelers, and are considered to be a pest by the Free Trade Union for their habit of infesting space ships sitting at dock. Their origin is currently unknown."; + name = "Space Bat Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "This giant snake is a rare beast native to Paraiso, in the Carnelia system. Though normally only found deep in the jungles, these ravenous monsters have been known to slither out onto the planet's many beach resorts to swallow up unwary sunbathers. Otherwise, the creature's diet consists mainly of monkeys that were accidentally introduced to the planet by pet owners. The presence of the invasive monkey species had caused giant snake populations to swell in the 2530's, but today, due to excessive hunting, the giant snake's numbers have dwindled to the point of being an endangered species."; + name = "Giant Snake Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Catgirls (not to be confused with Nekos, an interspecies hybrid born of a union between Human and Tajaran parents) were created artificially with the intention of producing a Human-feline hybrid that could serve aboard a space-faring vessel, control pests aboard such ships, and even alleviate stress among male crew members. Their eyes are between 20% and 50% larger than the average Human, which gives them their famously 'Kawaii' appearance. The large eyes trigger a subconscious psychological 'cute' response among Humans, causing them to usually become relaxed in their presence. Some catgirls have learned to abuse this trait, and have evolved to prey upon Humans who linger too close for too long."; + name = "Catgirl Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Ir'ash'uint (translating roughly from Skrellian to 'Giant Frog' in Galactic Common), this amphibian lives on the Skrell homeworld Qerrbalak, in the Qerr�valis System. The Giant Frog shares a common, albeit distant ancestry with the Skrell, but unlike the Skrell, its diet is exclusively carnivorous. Its diet includes large insects, fish, and indeed, even Skrell."; + name = "Giant Frog Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"my" = ( +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mz" = ( +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mA" = ( +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mD" = ( +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"mE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mG" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"mH" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"mI" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"mJ" = ( +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"mK" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"mL" = ( +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mM" = ( +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mN" = ( +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mQ" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"mR" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"mS" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"mT" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"mU" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"mV" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"mW" = ( +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mX" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_locked"; + locked = 1; + name = "Exhibit Airlock" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mY" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"mZ" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"na" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"nb" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nc" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"nd" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"ne" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"nf" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"ng" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"nh" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"ni" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"nj" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"nk" = ( +/obj/structure/symbol/da, +/turf/simulated/wall, +/area/awaymission/zoo) +"nl" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"nm" = ( +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"nn" = ( +/obj/structure/flora/ausbushes, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"no" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"np" = ( +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"nq" = ( +/obj/structure/bed/chair, +/obj/structure/showcase{ + name = "Statue"; + desc = "It looks almost lifelike."; + icon = 'icons/obj/statue.dmi'; + icon_state = "Human_male" + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"nr" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/awaymission/zoo) +"ns" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"nt" = ( +/mob/living/simple_mob/animal/passive/tindalos{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"nu" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"nv" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nw" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nx" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass4" + }, +/area/awaymission/zoo) +"ny" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"nz" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nA" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"nB" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"nC" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"nD" = ( +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/turf/flooring/misc_vr.dmi'; + icon_state = "hive"; + name = "giant honeycomb" + }, +/area/awaymission/zoo) +"nE" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"nF" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"nG" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beachcorner"; + dir = 1 + }, +/area/awaymission/zoo) +"nH" = ( +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"nI" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"nJ" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"nK" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beachcorner"; + dir = 2 + }, +/area/awaymission/zoo) +"nL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"nM" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/pen/blue, +/obj/item/weapon/pen/red{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"nN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder{ + pixel_x = -4 + }, +/obj/item/weapon/folder/red{ + pixel_y = 3 + }, +/obj/item/weapon/folder/blue{ + pixel_x = 5 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/stamp/internalaffairs, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"nO" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"nP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Not to be confused with the common Earth bat, the Space Bat is a mammalian-like creature that is capable of surviving in the vacuum of space! These creatures live and fly in groups, and are most commonly found in caves, such as those on asteroids, or small planetary bodies with light gravity and no atmosphere. These creatures survive by sucking the blood of wayward space travelers, and are considered to be a pest by the Free Trade Union for their habit of infesting space ships sitting at dock. Their origin is currently unknown."; + name = "Space Bat Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"nQ" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"nR" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"nS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "This giant snake is a rare beast native to Paraiso, in the Carnelia system. Though normally only found deep in the jungles, these ravenous monsters have been known to slither out onto the planet's many beach resorts to swallow up unwary sunbathers. Otherwise, the creature's diet consists mainly of monkeys that were accidentally introduced to the planet by pet owners. The presence of the invasive monkey species had caused giant snake populations to swell in the 2530's, but today, due to excessive hunting, the giant snake's numbers have dwindled to the point of being an endangered species."; + name = "Giant Snake Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"nT" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"nU" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nV" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"nW" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"nX" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nY" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nZ" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"oa" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"ob" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"oc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Catgirls (not to be confused with Nekos, an interspecies hybrid born of a union between Human and Tajaran parents) were created artificially with the intention of producing a Human-feline hybrid that could serve aboard a space-faring vessel, control pests aboard such ships, and even alleviate stress among male crew members. Their eyes are between 20% and 50% larger than the average Human, which gives them their famously 'Kawaii' appearance. The large eyes trigger a subconscious psychological 'cute' response among Humans, causing them to usually become relaxed in their presence. Some catgirls have learned to abuse this trait, and have evolved to prey upon Humans who linger too close for too long."; + name = "Catgirl Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"od" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Ir'ash'uint (translating roughly from Skrellian to 'Giant Frog' in Galactic Common), this amphibian lives on the Skrell homeworld Qerrbalak, in the Qerr�valis System. The Giant Frog shares a common, albeit distant ancestry with the Skrell, but unlike the Skrell, its diet is exclusively carnivorous. Its diet includes large insects, fish, and indeed, even Skrell."; + name = "Giant Frog Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"oe" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"of" = ( +/mob/living/simple_mob/vore/aggressive/frog{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"og" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 10 + }, +/area/awaymission/zoo) +"oh" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 6 + }, +/area/awaymission/zoo) +"oi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"oj" = ( +/mob/living/simple_mob/animal/passive/tindalos{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"ok" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"ol" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"om" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"on" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"oo" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"op" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"oq" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"or" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"os" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"ot" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/awaymission/zoo) +"ou" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 2 + }, +/area/awaymission/zoo) +"ov" = ( +/mob/living/simple_mob/animal/passive/dog/corgi{ + faction = "zoo" + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"ow" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"ox" = ( +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"oy" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"oz" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"oA" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/mob/living/simple_mob/animal/passive/cat{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"oB" = ( +/mob/living/simple_mob/vore/bee{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/turf/flooring/misc_vr.dmi'; + icon_state = "hive"; + name = "giant honeycomb" + }, +/area/awaymission/zoo) +"oC" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"oD" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"oE" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"oF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/zoo) +"oG" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"oH" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"oI" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"oJ" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"oK" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"oL" = ( +/mob/living/simple_mob/vore/aggressive/giant_snake{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"oM" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"oN" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"oO" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"oP" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"oQ" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"oR" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"oS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Corgi (Welsh for 'dwarf dog') is a small type of herding dog that originated in Wales, on the planet Earth (Sol system). Two separate breeds are recognized: the Pembroke Welsh Corgi (as seen here) and the Cardigan Welsh Corgi. Historically, the Pembroke has been attributed to the influx of dogs alongside Flemish weavers from around the 10th century, while the Cardigan is attributed to the dogs brought with Norse settlers, in particular a common ancestor of the Swedish Vallhund. A certain degree of inbreeding between the two types has been suggested to explain the similarities between the two. Here it is seen in a replica of its natural habitat, the common office building, where it participates in a symbiotic relationship with the Humans who also reside here. In exchange for treats and bellyrubs, the Corgi provides the Humans with emotional support in the otherwise soul-crushing environment of the corporate workplace."; + name = "Corgi Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"oT" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"oU" = ( +/mob/living/simple_mob/animal/space/bats{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"oV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Tindalos is a large insect creature native to the Tubau plains of Zzarlaanis, in the Tiphonia system. The Human settlers who live on the planet have compared them to wingless grasshoppers. At high population densities and under certain environmental conditions, the Tindalos have been known to change behavior and form swarms. Tindalos are plant-eaters, sometimes becoming serious pests of cereals, vegetables and pasture, especially when they swarm in their millions and destroy crops over wide areas."; + name = "Tindalos Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"oW" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"oX" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"oY" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"oZ" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"pa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Cats were once common features on many trading, exploration, and naval ships in the early days of Human sailing. Cats were attracted by an abundance of mice and rats, which can cause damage to ropes, woodwork, and eventually as technology progressed, electrical wiring. Rodents also presented a threat to the stores the ship carried, both as cargo and as food for sailors. Furthermore, rats and mice were also sources of disease, which was dangerous for ships at sea for long periods of time. As Humanity thrust its self into the age of slipspace, the Cat has again made the common spaceship its hunting ground for exactly the same reasons it had in times of old. Skrell scientists have noted how the common Cat has been able to tame and even control Humans. It is believed that had the cat ever achieved sentience, Humanity its self would fall to its knees before their feline overlords. Fortunately for Humans across the galaxy, there is negligible evolutionary benefit for the cat to evolve further."; + name = "Cat Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"pb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pc" = ( +/mob/living/simple_mob/vore/catgirl{ + faction = "zoo" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"pd" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 10 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pe" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Space Bumble Bee is a large, usually docile stinging insect native to Virgo-Prime in the Virgo Erigone system. It normally lives in small oases around what few bodies of water exist on the arid landscape, but ever since Humans have come to colonize the world, they have been discovered in city parks even in the capital city of Anur. Despite their gentle demeanor however, they can and will attack when provoked, and are capable of opening their mandibles wide enough to swallow a Human sized victim whole. Deep in their abdomen, they process their victims along with harvested nectar into rich honey."; + name = "Space Bumble Bee Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"pf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Sobaka, also known as the Dog Shark, is an amphibious, cold-blooded animal that lives in the tropical waters of Qerrbalak, in the Qerr�valis System. The Sobaka hunts fish and small animals while on land, but would prefer to scavenge than to hunt. Its nose is far more powerful than any canine species, and are able to smell both on land, and in the sea. The Sobaka are commonly employed as drug-sniffing and bomb-sniffing animals by Skrellian security forces. The Sobaka is a close relative of the sentient species called Akula."; + name = "Sobaka Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"pg" = ( +/mob/living/carbon/human/sharkm{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/awaymission/zoo) +"ph" = ( +/mob/living/simple_mob/animal/passive/tindalos{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"pi" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"pj" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"pk" = ( +/mob/living/simple_mob/vore/aggressive/giant_snake{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"pl" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"pm" = ( +/mob/living/simple_mob/animal/passive/cat{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"pn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"po" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pp" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"pq" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"pr" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"ps" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"pt" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"pu" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"pv" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"pw" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"px" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"py" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pz" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"pA" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"pB" = ( +/mob/living/simple_mob/animal/passive/tindalos{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"pC" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"pD" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"pE" = ( +/mob/living/simple_mob/animal/passive/cat{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"pF" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pH" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pI" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pJ" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"pK" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"pL" = ( +/obj/structure/flora/ausbushes/fernybush, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pN" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pO" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pP" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pQ" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pR" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"pS" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"pT" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"pU" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pV" = ( +/obj/structure/closet/lawcloset, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pW" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pX" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pY" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pZ" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"qa" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"qb" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"qc" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"qd" = ( +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"qe" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 9 + }, +/area/awaymission/zoo) +"qf" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 1 + }, +/area/awaymission/zoo) +"qg" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 5 + }, +/area/awaymission/zoo) +"qh" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"qi" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"qj" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"qk" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"ql" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"qm" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"qn" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beachcorner"; + dir = 4 + }, +/area/awaymission/zoo) +"qo" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beachcorner"; + dir = 8 + }, +/area/awaymission/zoo) +"qp" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"qq" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"qr" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"qs" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"qt" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass4" + }, +/area/awaymission/zoo) +"qu" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass4" + }, +/area/awaymission/zoo) +"qv" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass4" + }, +/area/awaymission/zoo) +"qw" = ( +/obj/structure/flora/ausbushes/fernybush, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"qx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qy" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"qz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "A mouse (plural: mice), native to Earth in the Sol system, is a small rodent characteristically having a pointed snout, small rounded ears, a body-length scaly tail and a high breeding rate. The best known mouse species is the common house mouse (Mus musculus). It is also a popular pet. In some places, certain kinds of field mice are locally common. They are known to invade homes and space ships for food and shelter. Cats, wild dogs, foxes, birds of prey, snakes and even certain kinds of arthropods have been known to prey heavily upon mice. Nevertheless, because of its remarkable adaptability to almost any environment, the mouse is one of the most successful mammalian genera living in the galaxy today."; + name = "Mouse Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Sparra are a bird-like race from the planets Eltus and Tal in the Vilous system. These creatures have compared intelligence comparable to avians of the Corvus genus, from Earth. The Sparra are believed to share a common ancestry with one of the sentient races on Tal, called Nevreas. The Sparra have exhibited behavior including complex use of primitive tools, and even modification of tools, a trait which has not even been witnessed in primates besides Humans."; + name = "Sparra Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Diyaab is a predatory creature whose various geneses dwell at the upper latitudes of both hemispheres of most continents on Meralar, in the Rarkajar system. They resemble wolverines in appearance, but are slightly larger, and with longer legs. They also have long ears and leonine tails tipped with a contrasting color, the specifics of which vary based on species. They live in packs of up to seven individuals. They are omnivores, consuming Chur'eech nuts and Thaa'dra, as well as fish, eggs, Arnab, and Dubaab. However, they are most notable for being able to take down larger creatures, including Tajara, by using group tactics. They communicate through body language involving the ears and tail. If forcibly separated from their packs with no means of returning, a Diyaab will lay down and die. It has been theorized that they are related to the Farwa."; + name = "Diyaab Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Neaera can be essentially described as an odd mix of Salamander, Frog and Monkey, and often travel about the swamps of Qerrbalak via the trees. They hunt the larger insects of the swamps, as well as eat the plant life in the areas. They are most often neutral to both Skrell and Human presence, but they will defend themselves if provoked."; + name = "Neaera Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qH" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qI" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qJ" = ( +/mob/living/carbon/human/sparram{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"qK" = ( +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"qL" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qM" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qN" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qO" = ( +/obj/item/trash/syndi_cakes, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qP" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qQ" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qR" = ( +/mob/living/simple_mob/animal/passive/mouse{ + faction = "zoo" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qT" = ( +/obj/item/trash/chips, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qU" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qV" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/device/flashlight, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qW" = ( +/obj/machinery/floodlight, +/turf/simulated/floor, +/area/awaymission/zoo) +"qX" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"qY" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"qZ" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"ra" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rb" = ( +/mob/living/carbon/human/neaera{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"rc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"rd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"re" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/awaymission/zoo) +"rf" = ( +/mob/living/simple_mob/animal/sif/diyaab{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 10 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"rh" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"ri" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"rj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"rk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rl" = ( +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/awaymission/zoo) +"rm" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor, +/area/awaymission/zoo) +"rn" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor, +/area/awaymission/zoo) +"ro" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor, +/area/awaymission/zoo) +"rp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor, +/area/awaymission/zoo) +"rq" = ( +/turf/simulated/floor, +/area/awaymission/zoo) +"rr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 2 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"rs" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Xenomorph XX121, better known just as Xenomorph, are an extraterrestrial, endoparasitoid species with multiple life cycles, possibly originating from the planet Proteus (also known as Xenomorph Prime), which orbits the star A6 454. One of the deadliest of all known alien species, these creatures need a host organism in order to reproduce. The appearance of the Xenomorph varies depending on its host. The Human phenotype is generally around 7�8 feet, and roughly 136.0 to 181.4 kilograms in weight, with a long, muscular tail and large, curved, oblong head. The Queen of this species is generally twice as large (they can grow even larger, some even up to 100 feet tall, and stronger if given time) and possesses superior speed, strength and intelligence. The term Xenomorph is derived from the Greek words xeno ('stranger', 'alien', and 'foreigner') and morphe ('form', 'shape'). There are no solid facts as to the origins of the Xenomorph species; instead, there are many assumptions which cannot be confirmed. Based on the limited information we have, the most commonly accepted hypothesis is that they are an artificially created species, although another hypothesis says that they evolved naturally on a planet much different than our own. The Xenomorph lives in a hive together with its queen. Amazingly, the blood and other bodily fluids of the Xenomorph are highly acidic. It is not yet understood how a creature of such biology can exist. The planet Proteus is also home to rare, red-hued Xenomorphs, who frequently fight their black-colored rivals. Some Xenomorphs are alleged to be able to cloak themselves to be invisible to the human eye, but this has not been confirmed by independent study."; + name = "Xenomorph Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ru" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Space spider is a broad classification is used to indicate a subspecies of arachnids discovered in the Tau sector. Extremely dangerous and voracious, this family of arachnids managed to evolve and adapt to grow and thrive in a variety of atmospheric conditions, even the complete lack of an atmosphere altogether. The females, bigger than the males, tend to lay their eggs in the bodies of animals killed during hunts. From there, the young specimens (spiderlings) will feed on the corpse for the first few hours of life until the body is picked clean, after which they will leave the nest to begin hunting for small parasites and anaerobic or aerobic creatures. Once they reach adulthood, their societal structure seems to change, pushing them to hunt in small packs, mostly favoring their numbers and aggressive nature, and inoculating a deadly toxin in their victims before sucking the nutrients dry."; + name = "Space Spider Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Samak are the apex predator in the various plains regions of the northern hemisphere of Meralar. Unlike many creatures of Meralar, it does not have any fur to speak of. Instead, it is completely covered in thick armored plates which act as a barrier between the Samak's internal warmth and the cold environment. However, this is still not that efficient, so the Samak feed often to keep themselves warm. The Samak have six thick legs tipped with broad claws, and roughly aerodynamic bodies. They burrow underground, detecting prey through incredibly keen thermal detection. They pop up suddenly, grab their next meal, and return underground just as quickly. They prefer larger prey, such as the Baqara, Elu'a Eli, and Tajaran. Due to their voracious appetites and tendency to ruin mine shafts and infrastructure, they have been hunted almost to extinction, mainly by the Slavemasters. For the Tajaran, being able to kill a Samak singlehandedly (and without 'cheating', such as saturation bombing and the like) is an incredible feat, and any individual who pulls it off is lauded greatly."; + name = "Samak Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Space bears are the result of reckless experimentation in the early days of interplanetary travel and colonization. Rogue scientists in the beginnings of what is now known as Space Russia got very drunk one night, more than usual, and decided to 'improve' on the terran bear. The result is faster, stronger, and smarter than the original species, but most importantly they are able to survive in the airless void of space without any special equipment. It is unknown if they were originally meant to be living weapons or simply made 'because we can', but the scientists responsible were never heard from again. Now, thanks to faster than light travel and lackluster effort in making sure nothing's riding along, Space Bears can be found living on asteroids and moons across the galaxy, wherever Humanity and friends may roam."; + name = "Space Bear Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rx" = ( +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"ry" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rz" = ( +/turf/simulated/floor/holofloor/reinforced{ + icon = 'icons/turf/floors.dmi'; + icon_state = "lava"; + name = "hololava" + }, +/area/awaymission/zoo) +"rA" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rB" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rC" = ( +/turf/simulated/floor/holofloor/space, +/area/awaymission/zoo) +"rD" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rE" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rF" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rG" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rH" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rI" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rJ" = ( +/obj/structure/flora/bush, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rK" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rL" = ( +/mob/living/simple_mob/animal/space/alien{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rM" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rN" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rO" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"rP" = ( +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"rQ" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Xenomorph XX121, better known just as Xenomorph, are an extraterrestrial, endoparasitoid species with multiple life cycles, possibly originating from the planet Proteus (also known as Xenomorph Prime), which orbits the star A6 454. One of the deadliest of all known alien species, these creatures need a host organism in order to reproduce. The appearance of the Xenomorph varies depending on its host. The Human phenotype is generally around 7�8 feet, and roughly 136.0 to 181.4 kilograms in weight, with a long, muscular tail and large, curved, oblong head. The Queen of this species is generally twice as large (they can grow even larger, some even up to 100 feet tall, and stronger if given time) and possesses superior speed, strength and intelligence. The term Xenomorph is derived from the Greek words xeno ('stranger', 'alien', and 'foreigner') and morphe ('form', 'shape'). There are no solid facts as to the origins of the Xenomorph species; instead, there are many assumptions which cannot be confirmed. Based on the limited information we have, the most commonly accepted hypothesis is that they are an artificially created species, although another hypothesis says that they evolved naturally on a planet much different than our own. The Xenomorph lives in a hive together with its queen. Amazingly, the blood and other bodily fluids of the Xenomorph are highly acidic. It is not yet understood how a creature of such biology can exist. The planet Proteus is also home to rare, red-hued Xenomorphs, who frequently fight their black-colored rivals. Some Xenomorphs are alleged to be able to cloak themselves to be invisible to the human eye, but this has not been confirmed by independent study."; + name = "Xenomorph Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rS" = ( +/mob/living/simple_mob/animal/space/alien/drone{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Space spider is a broad classification is used to indicate a subspecies of arachnids discovered in the Tau sector. Extremely dangerous and voracious, this family of arachnids managed to evolve and adapt to grow and thrive in a variety of atmospheric conditions, even the complete lack of an atmosphere altogether. The females, bigger than the males, tend to lay their eggs in the bodies of animals killed during hunts. From there, the young specimens (spiderlings) will feed on the corpse for the first few hours of life until the body is picked clean, after which they will leave the nest to begin hunting for small parasites and anaerobic or aerobic creatures. Once they reach adulthood, their societal structure seems to change, pushing them to hunt in small packs, mostly favoring their numbers and aggressive nature, and inoculating a deadly toxin in their victims before sucking the nutrients dry."; + name = "Space Spider Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rU" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"rV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Samak are the apex predator in the various plains regions of the northern hemisphere of Meralar. Unlike many creatures of Meralar, it does not have any fur to speak of. Instead, it is completely covered in thick armored plates which act as a barrier between the Samak's internal warmth and the cold environment. However, this is still not that efficient, so the Samak feed often to keep themselves warm. The Samak have six thick legs tipped with broad claws, and roughly aerodynamic bodies. They burrow underground, detecting prey through incredibly keen thermal detection. They pop up suddenly, grab their next meal, and return underground just as quickly. They prefer larger prey, such as the Baqara, Elu'a Eli, and Tajaran. Due to their voracious appetites and tendency to ruin mine shafts and infrastructure, they have been hunted almost to extinction, mainly by the Slavemasters. For the Tajaran, being able to kill a Samak singlehandedly (and without 'cheating', such as saturation bombing and the like) is an incredible feat, and any individual who pulls it off is lauded greatly."; + name = "Samak Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rW" = ( +/mob/living/simple_mob/animal/passive/penguin{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Space bears are the result of reckless experimentation in the early days of interplanetary travel and colonization. Rogue scientists in the beginnings of what is now known as Space Russia got very drunk one night, more than usual, and decided to 'improve' on the terran bear. The result is faster, stronger, and smarter than the original species, but most importantly they are able to survive in the airless void of space without any special equipment. It is unknown if they were originally meant to be living weapons or simply made 'because we can', but the scientists responsible were never heard from again. Now, thanks to faster than light travel and lackluster effort in making sure nothing's riding along, Space Bears can be found living on asteroids and moons across the galaxy, wherever Humanity and friends may roam."; + name = "Space Bear Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rY" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"rZ" = ( +/mob/living/simple_mob/animal/passive/snake{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"sa" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/mob/living/simple_mob/animal/space/alien/drone{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sb" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/mob/living/simple_mob/vore/aggressive/mimic{ + faction = "zoo" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"sd" = ( +/obj/structure/flora/ausbushes/fullgrass, +/mob/living/simple_mob/animal/passive/penguin{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"se" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/simple_mob/animal/space/bear{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sf" = ( +/obj/structure/flora/grass/both, +/mob/living/simple_mob/animal/passive/penguin{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"sg" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"sh" = ( +/mob/living/simple_mob/hostile/samak{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"si" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sj" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sl" = ( +/mob/living/simple_mob/animal/space/carp{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/space, +/area/awaymission/zoo) +"sm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The common Green Snake is an invasive species that makes its home on tropical worlds across the galaxy. Its ancestors were once kept as pets by Humans, but these snakes had escaped into the ventilation of ships over many centuries to feed on the abundance of mice usually infesting the maintinence passages. It is believed that they are descended from the Ball Python, native to Earth, in the Sol system."; + name = "Green Snake Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"sn" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"so" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/mob/living/simple_mob/animal/space/alien/drone{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Don't be fooled, this isn't a storage room, but in fact the hunting ground of a deadly ambush predator known as the Mimic. The origin of this species is largely unknown, but they are theorized to be a cousin of the even more elusive changeling species. However, unlike the changeling, the mimic is known for disguising its self as inanimate objects, rather than other animals. When a suitable prey disturbs the mimic, it attacks, and if possible, swallows its victim whole. Scientists do not know how the creature reproduces, as all efforts to study the organism, dead or alive, have revealed that specimens examined do not have reproductive organs at all! It is hypothesized that the mimic grows and uses reproductive organs during a later life cycle, not yet recorded by any known sentient species."; + name = "Mimic Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"sq" = ( +/obj/effect/spider/stickyweb, +/mob/living/simple_mob/animal/giant_spider/hunter{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sr" = ( +/obj/effect/spider/cocoon{ + icon_state = "cocoon_large2" + }, +/mob/living/simple_mob/animal/giant_spider/hunter{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"ss" = ( +/obj/effect/spider/stickyweb, +/mob/living/simple_mob/animal/giant_spider{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"st" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Originating from the jungles of Earth, Parrots are a highly intelligent avian that have become an expensive commodity in space, prized for their colorful plumage, and their famous ability to mimic speech. Ship captains traditionally keep them as exotic pets, to demonstrate wealth, and to have someone to talk with. Some researchers believe some parrot species to be capable of intelligence up to that of a 5 year old Human in some aspects. Purebreds of exceptionally varied color pallets are especially prized among traders and space pirates."; + name = "Parrot Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"su" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Penguins are a group of aquatic, flightless birds living almost exclusively in the Southern Hemisphere of Earth, in the Sol system, especially in the continent of Antarctica. Highly adapted for life in the water, penguins have countershaded dark and white plumage, and their wings have evolved into flippers. Most penguins feed on krill, fish, squid and other forms of sealife caught while swimming underwater. They spend about half of their lives on land and half in the oceans. Due to the effects of global warming, penguins have been sent off-world to wildlife sanctuaries across the galaxy. Today, many such reserves harbor the last of this species, while penguins are now extinct on Earth."; + name = "Space Penguin Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"sv" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sw" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Space carp are a breed of space fish that come from the phoron giant Erebus. Scientists aren't quite sure how, but the Carp are imbued with the Phoron in their DNA, allowing for them to travel unaided through the vast void of Space, without gravity, air, or anything. They are very dangerous to space travelers, as they are highly aggressive and carnivorous. They often break windows and the like on space stations hoping to get in to eat the crew."; + name = "Space Carp Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"sy" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sz" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/mob/living/simple_mob/animal/space/alien{ + faction = "zoo"; + name = "invisible alien hunter" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sA" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" + }, +/obj/effect/spider/cocoon{ + icon_state = "cocoon3" + }, +/mob/living/simple_mob/animal/giant_spider/hunter{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sB" = ( +/obj/effect/spider/stickyweb{ + icon_state = "cobweb1" + }, +/mob/living/simple_mob/animal/giant_spider/hunter{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sC" = ( +/obj/effect/spider/cocoon{ + icon_state = "cocoon2" + }, +/mob/living/simple_mob/animal/giant_spider/nurse{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sD" = ( +/obj/effect/spider/stickyweb{ + icon_state = "cobweb2" + }, +/mob/living/simple_mob/animal/giant_spider{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sE" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" + }, +/obj/effect/spider/cocoon{ + icon_state = "cocoon_large1" + }, +/mob/living/simple_mob/animal/giant_spider{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sF" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/mob/living/simple_mob/animal/space/alien/queen{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sG" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"sH" = ( +/obj/effect/spider/cocoon{ + icon_state = "cocoon_large3" + }, +/mob/living/simple_mob/animal/giant_spider/hunter{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sI" = ( +/mob/living/simple_mob/animal/giant_spider{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sJ" = ( +/mob/living/simple_mob/animal/passive/bird/parrot/poly{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"sK" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sL" = ( +/mob/living/simple_mob/animal/space/bear{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sM" = ( +/mob/living/simple_mob/animal/space/alien{ + faction = "zoo"; + name = "invisible alien hunter" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sN" = ( +/obj/effect/decal/remains, +/obj/effect/gibspawner/generic, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"sO" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sP" = ( +/mob/living/simple_mob/animal/passive/snake{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"sQ" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sR" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sS" = ( +/obj/effect/spider/stickyweb{ + icon_state = "cobweb2" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sT" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sU" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sW" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sX" = ( +/obj/effect/spider/stickyweb{ + icon_state = "cobweb1" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sY" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"sZ" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"ta" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/simple_mob/animal/space/alien{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"tb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Stoks are a small species of reptile native to Moghes, ranging from two, to three feet tall with colorful scales, and feathers adorning their head, they stand on two legs and have short arms, the legs being digitigrade. They keep to oasises due to their colors which provide camouflage and distance from predators such as duneworms. Keeping in packs so that when they are threatened, they will swarm an attacker and take it down by sheer flanking and numbers. They're an omnivorous species, keeping themselves fed on either predators, or oasis fruits. Despite being the evolutionary equivalent of how monkeys are to humans, Stok are often domesticated and kept as pets by Unathi on Moghes, serving to aid in hunting efforts when trained. Their role in Unathi society is more like that of dogs to humans."; + name = "Stok Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "During the latest part of a Diona's life cycle, the Diona casts its self into orbit around a star, so it may soak up solar radiation and grow to immense proportions, even as large as a space station. The yithian, exhibited here, can only be found within these great Diona, where it has a symbiotic relationship with its host. It consumes fungus and parasites that would normally compromise the Diona's health."; + name = "Yithian Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"td" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "A relative of the Tajaran, the Farwa is an intelligent pack animal widespread on Meralar, in the Rarkajar system. Usually with tan, orange and brown pelts, this animals is capable of using primitive tools. Its diet is primarly made up of vegetable matter and carrion, although they also hunt opportunistically. The species itself is very diverse, with Farwa in different biomes possessing minute variations in behaviour and genetic make-up."; + name = "Farwa Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"te" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "This Redspace creature was generously donated by a NanoTrasen science team headed by Dr. Kisuke Gema of the Virgo Orbital Research Establishment. Other than that, we honestly don't know anything about this monstrosity, other than the fact that it hungers for Human flesh."; + name = "Redspace Abomination Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tf" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tg" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"th" = ( +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"ti" = ( +/mob/living/simple_mob/animal/passive/yithian{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tj" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil/invisible, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tk" = ( +/turf/simulated/floor/cult, +/area/awaymission/zoo) +"tl" = ( +/obj/structure/cult/pylon, +/turf/simulated/floor/cult, +/area/awaymission/zoo) +"tm" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tn" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/carbon/human/stok{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"to" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tp" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tq" = ( +/mob/living/carbon/human/farwa{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"tr" = ( +/obj/effect/gateway, +/turf/simulated/floor/cult, +/area/awaymission/zoo) +"ts" = ( +/mob/living/carbon/human/stok{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tt" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tu" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tv" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tw" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tx" = ( +/obj/structure/flora/ausbushes/sunnybush, +/mob/living/simple_mob/animal/passive/yithian{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"ty" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"tz" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_3" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"tA" = ( +/mob/living/simple_mob/creature{ + faction = "zoo"; + name = "redspace abomination" + }, +/turf/simulated/floor/cult, +/area/awaymission/zoo) +"tB" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tC" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tD" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/cult, +/area/awaymission/zoo) +"tE" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tF" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Decades ago, a group of rogue Skrellian scientists began illegal experimentation on Unathi colonists participating in a nuclear meltdown cleanup effort. In an attempt to create genetically engineered super soldiers, the Deathclaw was born with deadly sharp razor-like claws, incredible agility, robust durability, and high intelligence. When the Skrellian scientists were arrested by the authorities, the Deathclaw was to be destroyed, but some managed to escape captivity into the nuclear wasteland. Normally solitary creatures, they have been known to hunt in packs, and seem to have a preference for Human and Unathi meat."; + name = "Deathclaw Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Space Goose (pural: geese) is an aquatic fowl originating from the planet Earth. This breed of Geese however was bred to the clime of space ships and stations as guard animals. They are extremely loud, highly aggressive, and territorial, while their talons and beaks are much longer and sharper than Earth geese. Their aggressive nature makes them difficult to train, but are highly effective when deployed."; + name = "Space Goose Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Grey Wolf, Scientific name Canis Lupus, is a species native to the Sol system and specifically the planet Earth. It is the largest extant member of its family, with males averaging 43�45 kg (95�99 lb), and females 36�38.5 kg (79�85 lb). Like the red wolf, it is distinguished from other Canis species by its larger size and less pointed features, particularly on the ears and muzzle. Its winter fur is long and bushy, and predominantly a mottled gray in color, although nearly pure white, red, or brown to black also occur. It is also know by the name Timber Wolf. The gray wolf is the second most specialised member of the genus Canis, as demonstrated by its morphological adaptations to hunting large prey, its more gregarious nature, and its highly advanced expressive behavior. It is nonetheless closely related enough to smaller Canis species, such as the Sol Coyote or Golden Jackal to produce fertile hybrids. It is the only species of Canis to have a range encompassing both the Old and New planets, due to being popular as a traveling companion, an easier to tame circus attraction compared to tigers, and its valuable use in ridding polar worlds of large predators. It was also spread through some worlds to deal with Cloud Fox infestations. While normally indifferent to foxes aside from hunting territories, the Grey Wolf has shown great hostility to a special strain of Fox mutation found on the planet Andorss called the Cloud Fox. Bafflingly, these creatures share nothing in common that should lead them to be enemies, as the Grey Wolf is a predator and lives in snowy areas, whereas the Cloud Fox is an herbivore, largely found in Corn rich areas. Scientists have yet to explain this, although several other animals have also been shown to show hostility towards Cloud Foxes, namely the Macromeleon and Carousel Panther, both of whom get along well with Grey Wolves."; + name = "Gray Wolf Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "While all the species of these large predators are commonly known as Dragons (Draconius Regalis), this is mainly an umbrella term for a number of varieties of these large, reptilian creatures. There are numerous varieties of dragons found throughout the galaxy, and recounts of these creatures can be traced back to Skrell civilization's first interplanetary travels speaking of a large, unknown creature attacking and devouring the closeby cargo ships. Mainly solitary creatures, the Dragons roam large areas of space, capable of adapting to a large variety of atmospheres thanks to each sub-species natural affinity to various elements. While in today's population there are a numerous subspecies, all of these can be traced back to what archaeologists claimed to be a 'phoron' Dragon, by the biological analysis of the fossils found on asteroids in the Virgo-Erigone system. The creatures displayed here were reconstituted from such fossils, generously donated by the Virgo Orbital Research Establishment."; + name = "Phoron Dragon Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tK" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tL" = ( +/obj/effect/floor_decal/asteroid, +/obj/effect/decal/cleanable/greenglow, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tM" = ( +/obj/effect/gibspawner/human, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"tN" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"tO" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/simple_mob/vore/aggressive/dino{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tP" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Decades ago, a group of rogue Skrellian scientists began illegal experimentation on Unathi colonists participating in a nuclear meltdown cleanup effort. In an attempt to create genetically engineered super soldiers, the Deathclaw was born with deadly sharp razor-like claws, incredible agility, robust durability, and high intelligence. When the Skrellian scientists were arrested by the authorities, the Deathclaw was to be destroyed, but some managed to escape captivity into the nuclear wasteland. Normally solitary creatures, they have been known to hunt in packs, and seem to have a preference for Human and Unathi meat."; + name = "Deathclaw Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Space Goose (pural: geese) is an aquatic fowl originating from the planet Earth. This breed of Geese however was bred to the clime of space ships and stations as guard animals. They are extremely loud, highly aggressive, and territorial, while their talons and beaks are much longer and sharper than Earth geese. Their aggressive nature makes them difficult to train, but are highly effective when deployed."; + name = "Space Goose Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Grey Wolf, Scientific name Canis Lupus, is a species native to the Sol system and specifically the planet Earth. It is the largest extant member of its family, with males averaging 43�45 kg (95�99 lb), and females 36�38.5 kg (79�85 lb). Like the red wolf, it is distinguished from other Canis species by its larger size and less pointed features, particularly on the ears and muzzle. Its winter fur is long and bushy, and predominantly a mottled gray in color, although nearly pure white, red, or brown to black also occur. It is also know by the name Timber Wolf. The gray wolf is the second most specialised member of the genus Canis, as demonstrated by its morphological adaptations to hunting large prey, its more gregarious nature, and its highly advanced expressive behavior. It is nonetheless closely related enough to smaller Canis species, such as the Sol Coyote or Golden Jackal to produce fertile hybrids. It is the only species of Canis to have a range encompassing both the Old and New planets, due to being popular as a traveling companion, an easier to tame circus attraction compared to tigers, and its valuable use in ridding polar worlds of large predators. It was also spread through some worlds to deal with Cloud Fox infestations. While normally indifferent to foxes aside from hunting territories, the Grey Wolf has shown great hostility to a special strain of Fox mutation found on the planet Andorss called the Cloud Fox. Bafflingly, these creatures share nothing in common that should lead them to be enemies, as the Grey Wolf is a predator and lives in snowy areas, whereas the Cloud Fox is an herbivore, largely found in Corn rich areas. Scientists have yet to explain this, although several other animals have also been shown to show hostility towards Cloud Foxes, namely the Macromeleon and Carousel Panther, both of whom get along well with Grey Wolves."; + name = "Gray Wolf Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "While all the species of these large predators are commonly known as Dragons (Draconius Regalis), this is mainly an umbrella term for a number of varieties of these large, reptilian creatures. There are numerous varieties of dragons found throughout the galaxy, and recounts of these creatures can be traced back to Skrell civilization's first interplanetary travels speaking of a large, unknown creature attacking and devouring the closeby cargo ships. Mainly solitary creatures, the Dragons roam large areas of space, capable of adapting to a large variety of atmospheres thanks to each sub-species natural affinity to various elements. While in today's population there are a numerous subspecies, all of these can be traced back to what archaeologists claimed to be a 'phoron' Dragon, by the biological analysis of the fossils found on asteroids in the Virgo-Erigone system. The creatures displayed here were reconstituted from such fossils, generously donated by the Virgo Orbital Research Establishment."; + name = "Phoron Dragon Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tU" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"tV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"tW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tX" = ( +/mob/living/simple_mob/vore/aggressive/dragon{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"tY" = ( +/mob/living/simple_mob/animal/passive/lizard{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tZ" = ( +/mob/living/simple_mob/tomato{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"ua" = ( +/mob/living/simple_mob/fox{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"ub" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Voracious Lizard is a relatively new species, muted from the common space lizard by exposure to Phoron. These creatures are found commonly in and around facilities where phoron is mined, refined, or stored. They have been known to attack other creatures in groups, and are able to unhinge their jaws to swallow Human-sized prey whole. The species was first discovered in the Virgo-Erigone system, and have since become a dangerous pest."; + name = "Voracious Lizard Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uc" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/simple_mob/vore/aggressive/deathclaw{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"ud" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Common Space Lizard (Pordacis Stellae Vulgaris) is a common critter amongst space stations. Their origin traces back to genetically modified wall lizards to survive the hazardous conditions of space, this hardy animal is surprisingly tough and able to rapidly regenerate dead cells from radiation exposure and is virtually immune against cancerous growths. Its diet is varied, as it eats what it gets, from discarded junk food to mice and small spiders."; + name = "Lizard Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ue" = ( +/mob/living/simple_mob/animal/space/goose{ + faction = "zoo" + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"uf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Originally a cult movie monster, a team of geneticists eventually turned the Animate Tomato from fiction to reality. While not harmful in any way, some people consider its grin to be disturbing. It reproduces in the same manner as plants, coming off of the vine when harvested or when it gets ripe enough, afterwards wandering about on its own."; + name = "Animate Tomato Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ug" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Foxes are small-to-medium-sized, omnivorous mammals belonging to several genera of the family Canidae. Foxes are slightly smaller than a medium-size domestic dog, with a flattened skull, upright triangular ears, a pointed, slightly upturned snout, and a long bushy tail (or brush). These foxes are Red Foxes, largest of the true foxes, has the greatest geographic range of all members of the Carnivora family, originally spanning across the entire Northern Hemisphere of Earth from the Arctic Circle to North Africa, North America and Eurasia, and has grown to be found on many forest and garden planets across the galaxy."; + name = "Fox Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "A mouse (plural: mice), native to Earth in the Sol system, is a small rodent characteristically having a pointed snout, small rounded ears, a body-length scaly tail and a high breeding rate. The best known mouse species is the common house mouse (Mus musculus). It is also a popular pet. In some places, certain kinds of field mice are locally common. They are known to invade homes and space ships for food and shelter. Cats, wild dogs, foxes, birds of prey, snakes and even certain kinds of arthropods have been known to prey heavily upon mice. Nevertheless, because of its remarkable adaptability to almost any environment, the mouse is one of the most successful mammalian genera living in the galaxy today."; + name = "Slime Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ui" = ( +/mob/living/simple_mob/vore/aggressive/deathclaw{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"uj" = ( +/mob/living/simple_mob/slime/feral/dark_blue{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"uk" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/mob/living/simple_mob/vore/aggressive/dino{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"ul" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/simple_mob/animal/passive/lizard{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"um" = ( +/obj/effect/landmark/away, +/mob/living/simple_mob/animal/space/goose{ + faction = "zoo" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"un" = ( +/mob/living/simple_mob/animal/wolf{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"uo" = ( +/mob/living/simple_mob/animal/space/goose{ + faction = "zoo" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"up" = ( +/obj/structure/symbol/sa, +/turf/simulated/wall, +/area/awaymission/zoo) +"uq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Saru (also incorrectly known as Sergalings) are the smaller, unevolved, far more docile cousins of the Sergals, and are usually thought of as either pests, food, or pets. They are a commodity that the Sergal use in their trades with other species due to their cute appearance and quick breeding. Contrary to popular belief, they are not sergal pups, despite their similar appearance. Note the distinctly stubbier noses, compared to true sergal pups. Unfortunately, the mistake has been made more than once, even by other sergals, wherein actual young sergals have been mistakenly sold to traders with tragic consequences... for the traders. The Saru are, like the Sergals, native to the planet Eltus, in the Vilous system. However, they are also found on the planet Tal in the same system."; + name = "Saru Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ur" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The brown bear (Ursus arctos) is a large bear with the widest distribution of any living ursid. The species is distributed across much of northern Eurasia and North America, on planet Earth. It is one of the two largest terrestrial carnivorans alive today, rivaled in body size only by its close cousin, the polar bear (Ursus maritimus), which is much less variable in size and averages larger due to this. There are several recognized subspecies, many of which are quite well-known within their native ranges, found in the brown bear species."; + name = "Brown Bear Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"us" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Tamaskan dogs are a crossbreed, specifically designed by dog fanciers on Earth, to morphologically resemble a wolfdog. It is a cross of several standardized breeds of the sled dog type, and its bloodlines may sometimes include a small amount of wolfdog stock. It is a highly versatile dog that can excel in agility, obedience and working trials. These traits have made the Tamaskan a popular animal among Human colonists on icy worlds."; + name = "Tamaskan Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ut" = ( +/obj/structure/largecrate/animal/cow, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"uu" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"uv" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"uw" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"ux" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"uy" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"uz" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/carbon/human/sergallingm{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"uA" = ( +/mob/living/simple_mob/animal/space/bear/brown{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"uB" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"uC" = ( +/mob/living/carbon/human/sergallingm{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"uD" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"uE" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"uF" = ( +/mob/living/simple_mob/animal/passive/dog/tamaskan{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"uG" = ( +/obj/item/stack/tile/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uH" = ( +/obj/item/stack/tile/grass, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"uI" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"uJ" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_locked"; + locked = 1; + name = "Exhibit Airlock" + }, +/obj/item/tape/engineering{ + icon_state = "engineering_door_0" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uK" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"uL" = ( +/mob/living/carbon/human/sergallingm{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"uM" = ( +/mob/living/carbon/human/sergallingm{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"uN" = ( +/obj/structure/flora/ausbushes/genericbush, +/mob/living/simple_mob/animal/space/bear/brown{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"uO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Sol-system native Panther, found primarily on the Sol-system planet Earth, is a large mammal belonging to the Felidae family. Found in a variety of environment, like most big cats the Panther inhabits a large number of habitats and is a carnivorous, nocturnal predator. Of particular note are the various patterns of their fur - the most known one, especially thanks to Sol popular culture (books, sequential art and movies) is the black panther, a species that displays a fur pattern completely black at a first glance, but other species can display a much wider variety of patterns, another one of the most common being a beige color with large, black spots. These patterns were mainly evolved as a mean to conceal itself in the surrounding environment, to ambush an unsuspecting prey."; + name = "Panther Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Shantak are a pack-hunting carnivore native to Meralar. Using loud barks and growls, similar to that of wolves, the shantak is able to communicate verbally with its hunting partners in order to coordinate attacks. The largest female of the group is usually in charge, and is considered to be the alpha of the pack."; + name = "Shantak Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Space Pike are a larger, more territorial cousin of the famous Space Carp whose origins can also be traced to the Erebus system. Like the Space Carp, their DNA is infused with Phoron. However, the Space Pike were hunted nearly to extinction for their vibrant purple scales. They were declared a critically endangered species in 2556, but that status has been lifted recently due to a substantial bounce back in numbers. They are now only considered a vulnerable species. Space Pike feed on space slugs, space worms, sometimes space carp, and the occasional space man. The space bear is considered its mortal enemy."; + name = "Space Pike Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uR" = ( +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uS" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"uT" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"uU" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"uV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Sol-system native Panther, found primarily on the Sol-system planet Earth, is a large mammal belonging to the Felidae family. Found in a variety of environment, like most big cats the Panther inhabits a large number of habitats and is a carnivorous, nocturnal predator. Of particular note are the various patterns of their fur - the most known one, especially thanks to Sol popular culture (books, sequential art and movies) is the black panther, a species that displays a fur pattern completely black at a first glance, but other species can display a much wider variety of patterns, another one of the most common being a beige color with large, black spots. These patterns were mainly evolved as a mean to conceal itself in the surrounding environment, to ambush an unsuspecting prey."; + name = "Panther Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uW" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 8 + }, +/area/awaymission/zoo) +"uX" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"uY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Shantak are a pack-hunting carnivore native to Meralar. Using loud barks and growls, similar to that of wolves, the shantak is able to communicate verbally with its hunting partners in order to coordinate attacks. The largest female of the group is usually in charge, and is considered to be the alpha of the pack."; + name = "Shantak Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uZ" = ( +/mob/living/simple_mob/animal/space/carp/large{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"va" = ( +/obj/structure/flora/ausbushes/fernybush, +/mob/living/carbon/human/monkey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"vb" = ( +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"vc" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"vd" = ( +/mob/living/simple_mob/animal/passive/crab{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"ve" = ( +/mob/living/carbon/human/monkey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"vf" = ( +/mob/living/simple_mob/vore/aggressive/panther{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"vg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "A species incredibly similar to Humans. The monkey is a resident of Earth, the home planet of Humanity, and shares many traits with Humans, such as opposable thumbs, and a love of flinging fecal matter at each other. Monkeys are valued for their dancing ability, and thanks to the recent boom of monkey dance classes, the dancing monkey industry is growing. Monkeys are also commonly used in scientific research that requires testing on products meant to be used by Humans. In fact, some of the first creatures to leave Earth's atmosphere in the infancy of Humanity's space age were dogs and monkeys!"; + name = "Monkey Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Crabs are decapod crustaceans of the infraorder Brachyura, which live in all the oceans on the planet Earth, in some fresh water, and even a few species which thrive on land. They are generally covered with a thick exoskeleton and have a single pair of claws. They are often kept as pets or eaten for food by Humans. Many other animals with similar names, such as king crabs, hermit crabs, porcelain crabs, horseshoe crabs, and crab lice, are not true crabs."; + name = "Crab Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vi" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"vj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "This is not an empty exhibit. Note the pine tree in the center of the pen. This is the infamous Killer Pine Tree. Thought to be a relative of the mimic, the Killer Tree is, much like its cousins, an ambush predator. However, like the mimic, it is not known where this species is from, how it reproduces, or how it has found its way across the galaxy into new biomes."; + name = "Killer Tree Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Space Pike are a larger, more territorial cousin of the famous Space Carp whose origins can also be traced to the Erebus system. Like the Space Carp, their DNA is infused with Phoron. However, the Space Pike were hunted nearly to extinction for their vibrant purple scales. They were declared a critically endangered species in 2556, but that status has been lifted recently due to a substantial bounce back in numbers. They are now only considered a vulnerable species. Space Pike feed on space slugs, space worms, sometimes space carp, and the occasional space man. The space bear is considered its mortal enemy."; + name = "Space Pike Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vl" = ( +/mob/living/simple_mob/animal/passive/crab{ + faction = "zoo"; + icon_dead = "evilcrab_dead"; + icon_living = "evilcrab"; + icon_state = "evilcrab" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/awaymission/zoo) +"vm" = ( +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vn" = ( +/mob/living/simple_mob/hostile/shantak{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"vo" = ( +/mob/living/carbon/human/monkey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"vp" = ( +/mob/living/simple_mob/hostile/shantak{ + color = ""; + faction = "zoo"; + health = 100; + maxHealth = 100; + name = "alpha shantak" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"vq" = ( +/mob/living/simple_mob/animal/space/tree{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"vr" = ( +/obj/structure/flora/bush, +/mob/living/simple_mob/hostile/shantak{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"vs" = ( +/mob/living/carbon/human/monkey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"vt" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/mob/living/carbon/human/monkey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"vu" = ( +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vv" = ( +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vw" = ( +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vx" = ( +/obj/fiftyspawner/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The polar bear (Ursus maritimus) is a carnivorous bear whose native range once lay largely within the Arctic Circle on Earth, encompassing the Arctic Ocean, its surrounding seas, and surrounding land masses. Although it is the sister species of the brown bear, it has evolved to occupy a narrower ecological niche, with many body characteristics adapted for cold temperatures, for moving across snow, ice, and open water, and for hunting seals, which made up most of its original diet. Although most polar bears are born on land, they spent most of their time on the sea ice. Their scientific name means 'maritime bear', and derives from this fact. Polar bears hunted their preferred food of seals from the edge of sea ice, often living off fat reserves when no sea ice is present. Because of their dependence on the sea ice, polar bears are classified as marine mammals. However, because of habitat loss caused by climate change, the polar bear had gone completely extinct on Earth. The return of the polar bear is thanks to the preservation of genetic records written in the 21st century, which were later used by Space Russians to create a wildlife reserve on the planet Europa in 2492. This has generally been regarded as a poor decision."; + name = "Polar Bear Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vz" = ( +/mob/living/simple_mob/animal/space/bear/polar{ + faction = "zoo" + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"vA" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"vB" = ( +/obj/effect/blocker, +/turf/simulated/wall/r_wall, +/area/awaymission/zoo) +"vC" = ( +/obj/effect/blocker, +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/awaymission/zoo) +"vD" = ( +/obj/structure/grille{ + name = "mass ventilation" + }, +/obj/effect/blocker, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vE" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/zoo) +"vF" = ( +/obj/structure/grille{ + name = "mass ventilation" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vG" = ( +/turf/simulated/wall/durasteel, +/area/awaymission/zoo) +"vH" = ( +/obj/structure/sign/redcross, +/turf/simulated/wall/durasteel, +/area/awaymission/zoo) +"vI" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vJ" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vK" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vL" = ( +/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{ + pixel_x = 0; + pixel_y = 0 + }, +/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 + }, +/obj/item/weapon/storage/firstaid/combat, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vM" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vN" = ( +/obj/machinery/sleep_console{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vO" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vP" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vQ" = ( +/obj/structure/curtain/open/privacy, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vR" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vS" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile, +/obj/item/clothing/mask/surgical, +/obj/item/weapon/surgical/retractor{ + pixel_x = 0; + 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/floor/tiled/white, +/area/awaymission/zoo) +"vT" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vU" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vV" = ( +/obj/machinery/computer, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vW" = ( +/obj/structure/closet, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vX" = ( +/obj/structure/closet, +/obj/item/clothing/under/captain_fly, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vY" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper/zoo/pirate/haveyouseen, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vZ" = ( +/obj/machinery/shield_gen/external, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wa" = ( +/obj/machinery/shield_gen/external, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wb" = ( +/obj/machinery/shield_gen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wc" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wd" = ( +/obj/machinery/shieldgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"we" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wf" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wh" = ( +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wi" = ( +/obj/structure/symbol/lo{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wj" = ( +/obj/machinery/door/window/brigdoor/southleft, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/machinery/door/window/brigdoor/southright, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wl" = ( +/obj/structure/closet/secure_closet/security, +/obj/random/handgun, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wm" = ( +/obj/machinery/door/window/brigdoor/southright, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wn" = ( +/obj/structure/table/rack, +/obj/random/action_figure, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wo" = ( +/obj/structure/table/rack, +/obj/random/plushie, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wp" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wq" = ( +/obj/machinery/door/airlock/glass_medical, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"wr" = ( +/turf/simulated/floor/tiled/red, +/area/awaymission/zoo) +"ws" = ( +/obj/machinery/door/airlock/medical, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"wt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EMPLOYEES ONLY'."; + name = "EMPLOYEES ONLY"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wu" = ( +/obj/structure/symbol/gu{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"ww" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper/zoo/pirate/warning, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wx" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/durasteel, +/area/awaymission/zoo) +"wy" = ( +/obj/machinery/shield_capacitor, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wz" = ( +/obj/machinery/shield_capacitor, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wA" = ( +/obj/structure/symbol/pr{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wB" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/brigdoor/northleft{ + name = "lost and found" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wC" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/tiled/red, +/area/awaymission/zoo) +"wD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"wE" = ( +/obj/machinery/door/airlock/command, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wF" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wG" = ( +/obj/structure/grille{ + name = "mass ventilation" + }, +/turf/unsimulated/wall/planetary/normal, +/area/awaymission/zoo) +"wH" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wI" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wJ" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wK" = ( +/obj/machinery/door/airlock/security{ + icon_state = "door_locked"; + locked = 1; + name = "Security"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wL" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EMPLOYEES ONLY'."; + name = "EMPLOYEES ONLY"; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wM" = ( +/obj/structure/symbol/gu{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/emitter, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wP" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wQ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/under/rank/engineer/skirt, +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wR" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark/loot_spawn, +/obj/structure/symbol/da{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"wV" = ( +/obj/structure/coatrack, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wW" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/weapon/paper/zoo, +/obj/item/weapon/paper/zoo, +/obj/item/weapon/paper/zoo, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wX" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/weapon/paper/zoo, +/obj/item/weapon/paper/zoo, +/obj/item/weapon/paper/zoo, +/obj/item/weapon/paper/zoo/pirate/nebula, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wY" = ( +/obj/structure/symbol/da{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wZ" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"xa" = ( +/obj/machinery/power/emitter, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"xb" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"xc" = ( +/obj/structure/closet/crate/solar, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/cell/crap, +/obj/item/weapon/cell/crap, +/obj/item/weapon/cell/crap, +/turf/simulated/floor, +/area/awaymission/zoo) +"xd" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xe" = ( +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xf" = ( +/obj/machinery/door/window/brigdoor/northleft, +/obj/structure/window/reinforced{ + dir = 2; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/ammo_all, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xg" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 2; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/ammo_all, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xh" = ( +/obj/machinery/door/window/brigdoor/northleft, +/obj/structure/window/reinforced{ + dir = 2; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xi" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 2; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xj" = ( +/obj/effect/landmark/loot_spawn{ + live_cargo = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xl" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/machinery/power/solar/fake, +/turf/simulated/floor/airless{ + icon_state = "solarpanel" + }, +/area/awaymission/zoo/solars) +"xm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xt" = ( +/obj/structure/cable, +/obj/machinery/power/solar/fake, +/turf/simulated/floor/airless{ + icon_state = "solarpanel" + }, +/area/awaymission/zoo/solars) +"xu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) + +(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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,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 +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,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 +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,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 +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,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 +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ad +dv +dv +dv +dv +ad +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +ab +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +bp +dw +dU +dU +dw +bp +ad +ad +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 +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +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 +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +bp +bp +bp +dV +dV +bp +bp +ad +ad +ad +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 +ja +ji +jk +jl +jA +hq +hq +hq +hq +hq +hq +hq +jk +jl +jA +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mr +mz +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 +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +bp +bp +bp +bp +bp +bp +bp +bp +ad +al +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +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 +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +ad +ae +aj +am +ad +ad +bp +bp +cI +dh +dw +bp +bp +bp +bp +ao +al +al +ad +ad +ae +aj +am +ad +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +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 +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +ad +aJ +aU +aU +ad +bp +bp +bp +cJ +di +bp +bp +bp +bp +bp +ao +al +al +fJ +ad +af +ag +af +ad +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +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 +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 +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 +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hh +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 +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(14,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +ad +aK +aV +aU +bh +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +ad +al +fz +fJ +ad +gb +ag +ag +ad +aa +aa +hh +ho +hD +hD +hq +hq +hq +hq +hD +hD +ho +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jm +ka +jP +jp +jm +ka +jP +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hi +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 +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +bp +bp +bp +cK +bp +bp +bp +bp +bp +bp +ad +al +al +al +ad +ad +ak +ad +ad +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +jB +jC +kb +jE +jp +jH +kb +mg +jF +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hj +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aw +aC +al +ao +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +ad +al +al +al +ao +al +aC +gE +ad +aa +aa +hj +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jm +jC +jN +kc +jp +jp +jp +kc +jo +mg +jP +hq +hq +hq +hq +gP +no +nL +oi +gP +no +oS +oi +gP +no +oS +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sm +oi +gP +no +sm +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ub +oi +gP +no +ub +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vg +oi +gP +no +vg +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aL +al +ba +ad +ad +ad +ad +ad +ad +dx +ad +ad +dx +ad +ad +ad +ad +ad +ad +aB +al +gF +ad +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +jc +hq +hq +hq +jn +jD +jO +kd +kT +jp +jO +kd +kT +jn +jD +hq +hq +hq +hq +gP +np +nM +np +np +np +oT +np +np +np +oT +np +np +pV +pV +qp +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +nT +mG +mI +oH +mG +nC +pq +ol +pC +ok +mI +mZ +ny +mG +ow +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +rY +tO +rY +tm +rY +mD +mD +rY +rY +uk +rY +rY +rY +rY +rY +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +jI +jI +na +mI +jI +mR +mI +na +mI +nX +jI +jI +nd +qa +ne +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aB +al +ba +ad +bq +br +br +br +dj +br +br +br +br +dj +br +br +br +br +ad +aB +al +al +aW +gQ +hc +gQ +hq +hq +hq +hE +hE +hE +hE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jo +jE +jp +ke +jp +jp +jp +ke +jp +jH +jN +hq +hq +hq +hq +kU +nq +nN +np +ov +oE +oT +np +np +oE +oT +np +pO +pW +qh +np +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +na +na +rZ +mI +mG +pi +mG +mS +ol +mI +oH +ol +ol +ob +mI +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +rY +tK +mD +mD +rY +rY +rY +uk +rY +mD +rY +tm +rY +tL +tK +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +ns +ns +oy +va +oZ +mH +mI +na +oW +nz +jI +jI +nd +ns +nZ +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +hh +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aL +al +bb +ad +br +bN +br +br +br +br +br +br +ez +br +br +br +br +fK +ad +gc +al +gF +aN +gP +hb +gP +hq +hq +hq +hn +hC +hC +hI +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jp +jp +jp +jp +jp +lk +jp +jp +jp +jp +jp +hq +hq +hq +hq +mX +np +nO +np +np +np +oT +np +np +np +oT +np +pP +pX +qi +np +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +jI +nb +nT +ns +ns +ns +pr +mI +ol +ol +pS +ns +pD +nd +mI +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +mD +rY +rY +tO +rY +mD +rY +rY +mD +rY +mD +mD +mD +rY +mD +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +mH +op +na +ok +ol +oG +mI +vo +mG +vs +jI +nb +pR +nf +ne +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +hi +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aB +al +ba +ad +bs +bs +bs +cL +br +dl +dl +dl +dl +dl +dl +dl +br +br +ad +aB +al +al +aW +gQ +hc +gQ +hq +hq +hq +hD +hD +hD +hD +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jm +jF +jp +kc +jp +jp +jp +kc +jp +jB +jP +hq +hq +hq +hq +kU +np +np +np +np +np +np +np +np +np +np +np +pQ +pY +qj +np +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +jI +jI +na +na +oW +mI +ps +mG +om +sP +ns +oW +ol +oG +nx +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +rY +rY +tK +rY +rY +mD +mD +mD +tt +rY +rY +rY +tK +rY +rY +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +nd +nd +nQ +ol +ve +mI +mS +na +nz +jI +jI +mI +vt +qb +ne +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +hj +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aL +al +ba +ad +bt +bO +bO +cM +br +dl +dW +dW +eA +dW +al +dl +br +br +ad +aB +al +gF +bd +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jn +jD +jO +kd +kT +jp +jO +kd +kT +jn +jD +hq +hq +hq +hq +gP +np +np +np +np +np +np +np +np +np +np +np +np +pZ +pZ +pZ +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +nU +jI +mI +oI +na +nB +ns +ns +ns +ns +ns +ns +ql +pw +nR +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +rY +tP +rY +mD +mD +rY +tK +rY +rY +mD +tE +rY +rY +rY +rY +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +mG +mH +mG +mG +ny +pl +nB +nd +nc +ng +pT +ny +nR +qq +mG +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aM +al +bc +ad +bu +bO +cj +cM +br +dl +dX +dW +dW +al +eE +dl +br +br +ad +aM +gn +bc +ad +aa +aa +hh +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jo +jG +jP +ke +jp +jp +jp +ke +jm +mh +jN +hq +hq +hq +hq +gP +no +nL +oi +gP +oF +oS +oi +gP +no +oS +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sm +oi +gP +no +sm +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ub +oi +gP +no +ub +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vg +oi +gP +no +vg +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aN +aW +bd +ad +bv +bO +bO +cN +br +dl +dY +al +eB +eg +al +dl +br +br +ad +ad +ad +ad +ad +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +jH +jG +ka +jF +jp +jB +ka +mh +jE +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hh +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +bt +bP +bO +cM +br +dl +dZ +dZ +eC +dZ +dZ +dl +br +br +ad +aa +aa +aa +aa +aa +aa +hj +ho +hE +hE +hq +hq +hq +hq +hE +hE +ho +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jo +kb +jN +jp +jo +kb +jN +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hi +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +bw +bw +bw +cO +br +dy +al +al +al +eP +al +dy +br +br +ad +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +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 +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 +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 +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hj +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +br +br +br +br +br +br +br +br +br +br +br +ft +br +br +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nP +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nP +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +rR +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rR +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +tQ +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tQ +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +uV +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +uV +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +br +br +br +br +br +br +ea +br +br +br +br +br +br +fL +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +rx +rx +rx +rx +rx +rx +rD +rx +rx +rx +rx +rx +rD +rx +rx +rx +rx +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +nm +nm +nm +nm +oe +nm +nm +nm +nm +nm +nm +nm +nm +nm +oC +nm +oq +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +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 +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +ck +ad +ad +br +br +br +br +ad +ad +ck +ad +ad +ad +ad +ad +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 +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +rx +rx +ry +rN +ry +ry +ry +ry +rx +ry +ry +rx +rx +rx +rx +rD +rx +rx +rx +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +mD +mD +mD +mD +tE +mD +tm +mD +mD +mD +mD +mD +mD +tm +mD +mD +mD +mD +mD +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +nm +os +nE +nm +nm +nm +oq +nm +nm +nm +nm +nm +pp +nm +nm +nm +nm +nm +nm +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +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 +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +al +ad +bx +bQ +cl +br +br +br +br +br +br +br +br +br +br +br +ad +al +ad +ad +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 +gP +hq +hq +hq +gP +gP +kU +ll +kU +gP +mi +hq +hq +hq +gP +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rx +rD +rB +rz +rz +rz +rz +rz +rz +sy +rz +rz +rM +ry +ry +ry +rS +rx +ry +ry +ry +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +rY +tK +mD +mD +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +nm +nm +nm +nm +oq +nm +nm +oq +nm +nF +oC +nm +uT +pp +nm +uS +nm +nm +oe +nm +nm +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +wq +vH +wq +vG +vG +hq +hq +hq +gP +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +al +al +ad +by +bQ +cl +br +br +br +br +br +br +br +br +br +br +fK +ad +al +al +ad +ad +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 +hh +hq +hq +hq +jQ +jM +jM +jM +jM +jM +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +mD +nr +nr +mD +mD +mD +mD +mD +mD +nr +nr +nr +nr +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +qH +hc +re +hc +rs +jQ +hq +hq +hq +jQ +ry +rB +rz +rz +rF +rA +rA +rE +rz +rz +rz +rz +rz +rz +rz +rz +rM +rB +rz +rz +rz +jQ +hq +hq +hq +jQ +mD +mD +rY +mD +mD +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +mD +rY +mD +mD +tt +rY +rY +rY +rY +rY +rY +rY +rY +rY +mD +mD +mD +jQ +hq +hq +hq +jQ +ns +ns +ns +pR +jI +jQ +hq +hq +hq +jQ +nm +nm +nm +nm +nm +nm +nm +nm +nm +uS +nm +oq +nm +nm +oq +nm +nm +nF +nm +nm +nm +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +vJ +jM +jM +jM +wU +jQ +hq +hq +hq +hh +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ad +ad +al +al +al +ad +bz +bQ +cm +br +br +br +br +br +br +br +br +br +br +br +ad +al +al +al +ad +ad +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 +hi +hq +hq +hq +jR +jM +jM +jM +jM +jM +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +nr +nr +nr +mD +mD +mD +mD +mD +nr +nr +nr +nr +mD +mD +mD +mD +jR +hq +hq +hq +jR +qH +hc +re +hc +rs +jR +hq +hq +hq +jR +rz +rz +rz +rK +ry +ry +rD +rx +rA +sz +rA +sn +sQ +rz +rz +rz +rz +rz +rz +rF +rA +jR +hq +hq +hq +jR +rY +mD +rY +rY +rY +jR +hq +hq +hq +jR +mD +mD +mD +rY +mD +rY +rY +rY +rY +rY +rY +mD +rY +tm +rY +rY +tK +rY +rY +mD +mD +jR +hq +hq +hq +jR +om +ol +ns +jI +jI +jR +hq +hq +hq +jR +nm +oD +uS +oe +nm +uT +oq +nm +nm +nm +uS +nm +nm +nm +os +nm +vc +nm +nm +nm +nm +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +vJ +jM +jM +jM +wU +jR +hq +hq +hq +hi +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +ad +al +al +al +al +ad +bA +bA +cn +br +dk +dz +eb +br +br +dk +fc +fu +br +br +ad +al +al +al +al +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +jM +jM +jM +kg +kg +jS +hq +hq +hq +jS +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +qH +qO +re +rk +rs +jS +hq +hq +hq +jS +rz +rz +rz +rz +rz +rz +rM +rx +rD +rx +sb +rz +rz +rz +rF +rA +rA +rA +rA +rx +rx +jS +hq +hq +hq +jS +rY +mD +mD +mD +mD +jS +hq +hq +hq +jS +mD +mD +mD +tL +mD +mD +mD +mD +mD +rY +mD +mD +mD +mD +mD +rY +rY +rY +mD +mD +mD +jS +hq +hq +hq +jS +uu +uB +uw +uw +uw +jS +hq +hq +hq +jS +nm +nm +nm +uU +nm +nm +nm +nm +uU +nm +os +nm +oC +nm +nm +uU +nm +nF +nm +pp +nm +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +vJ +jM +jM +jM +wU +jS +hq +hq +hq +hj +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +ap +al +al +al +be +ad +br +br +br +br +dl +dA +dl +br +br +dl +fd +dl +br +br +ad +al +al +al +al +al +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kf +jM +jM +kg +jM +jM +hq +hq +hq +gP +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +qH +hc +re +qQ +rs +gP +hq +hq +hq +gP +rA +rA +rI +rA +rE +rz +rz +rG +rx +ry +rB +rz +rF +rA +rx +rx +rx +rD +rx +rx +rx +gP +hq +hq +hq +gP +rY +mD +mD +mD +mD +gP +hq +hq +hq +gP +mD +tK +mD +rY +mD +mD +mD +mD +rY +rY +rY +rY +rY +rY +mD +rY +tL +rY +mD +mD +mD +gP +hq +hq +hq +gP +ns +uu +pR +uw +uB +gP +hq +hq +hq +gP +nm +nm +nm +nm +pp +nm +nm +os +nm +oD +nm +nm +nm +nm +nm +nm +oD +os +uS +oC +nm +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vH +vJ +jM +jM +jM +wU +vH +hq +hq +hq +gP +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +al +al +al +al +al +bi +br +br +br +br +dl +dz +dl +br +br +dl +fe +dl +br +fK +ad +al +al +al +al +al +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kg +jM +jM +lD +jM +mj +hq +hq +hq +jQ +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +jQ +hq +hq +hq +jQ +qH +qP +re +hc +rs +jQ +hq +hq +hq +jQ +rx +rx +rx +rx +rx +sa +rz +rM +rB +rz +rz +rz +rG +rx +sM +rx +rx +rx +rx +ry +ry +jQ +hq +hq +hq +jQ +mD +tm +mD +tn +rY +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +tm +mD +rY +rY +rY +mD +mD +rY +tE +rY +rY +rY +rY +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +ns +ns +ol +jI +uw +jQ +hq +hq +hq +jQ +nm +nm +uT +nm +nm +nF +nm +uS +nm +uS +oe +uU +pp +nm +nm +nF +nm +vc +nm +uU +nm +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +jM +jM +wr +jM +jM +jQ +hq +hq +hq +hh +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +aq +al +al +al +al +bi +br +br +br +br +dl +dz +dl +br +br +dl +fe +dl +br +br +ad +al +al +al +al +al +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kg +jM +jM +kg +jM +mj +hq +hq +hq +mt +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mt +hq +hq +hq +qA +qH +qQ +re +qR +rs +qA +hq +hq +hq +rt +rx +rx +rx +rL +rx +sb +rz +rz +rz +rz +rF +rA +rx +rx +rx +rx +rx +rx +rB +rz +rz +rt +hq +hq +hq +tb +mD +rY +rY +rY +rY +tb +hq +hq +hq +tG +mD +mD +mD +mD +rY +rY +rY +rY +uc +rY +rY +rY +mD +mD +rY +rY +rY +rY +mD +mD +mD +tG +hq +hq +hq +uq +uv +uu +uu +pq +uw +uq +hq +hq +hq +uO +nm +nm +oq +nm +uU +oC +nm +nm +nm +nm +nm +vf +oq +vc +nm +os +nE +nm +nm +uU +nm +uO +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +jM +wr +wC +wr +jM +jR +hq +hq +hq +hi +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(36,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +ar +al +al +al +al +bi +br +br +br +br +dl +dz +dl +en +br +dl +fe +dl +br +br +ad +al +al +al +al +al +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kg +jM +jM +lD +jM +mj +hq +hq +hq +jS +mD +mD +mD +nr +nr +nr +nr +nr +nr +oU +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +qH +hc +re +qR +rs +jS +hq +hq +hq +jS +rx +rx +rD +rx +rx +rx +rA +rA +rA +rA +rx +rx +rD +rx +rS +rx +rx +rB +rz +rz +rF +jS +hq +hq +hq +jS +mD +tn +rY +mD +mD +jS +hq +hq +hq +jS +mD +mD +mD +mD +rY +rY +mD +mD +mD +rY +rY +rY +rY +rY +rY +rY +mD +mD +tm +mD +mD +jS +hq +hq +hq +jS +ns +uC +uE +uB +ol +jS +hq +hq +hq +jS +nm +nm +nm +nm +oq +nm +uT +uU +nm +uT +oD +nm +nm +nm +nm +nm +nm +uS +nm +nm +nm +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +jM +jM +wr +jM +jM +jS +hq +hq +hq +hj +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +as +al +ap +al +bf +ad +bB +bR +br +br +dl +dz +dl +br +br +dl +fe +dl +br +br +ad +al +al +al +al +al +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kg +jM +jM +kg +jM +mj +hq +hq +hq +gP +mD +mD +mD +nr +nr +nr +nr +nr +oU +oU +oU +nr +nr +nr +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +qH +qR +re +rl +rs +gP +hq +hq +hq +gP +ry +ry +ry +rx +rx +rx +rx +rx +ry +ry +sF +ry +ry +ry +rx +rx +rB +rz +rz +rF +rx +gP +hq +hq +hq +gP +mD +rY +rY +rY +rY +gP +hq +hq +hq +gP +mD +mD +tK +mD +rY +rY +rY +rY +rY +rY +mD +rY +mD +rY +rY +mD +rY +mD +mD +mD +mD +gP +hq +hq +hq +gP +uu +ns +uu +uK +uB +gP +hq +hq +hq +gP +nm +nm +uS +nm +nF +nm +vb +nm +nm +nm +nm +uU +uT +nm +nm +vb +os +nm +nm +uT +nm +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vK +vK +vK +vK +jM +vG +hq +hq +hq +gP +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +at +al +al +al +bg +ad +bC +bR +br +br +dl +dB +dl +br +br +dl +dB +dl +br +br +ad +al +al +al +al +gR +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kg +jM +jM +kg +jM +mj +hq +hq +hq +jQ +mD +mD +mD +nr +nr +nr +nr +nr +oU +oU +oU +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +kU +hq +hq +hq +jQ +qH +qS +re +rm +rs +jQ +hq +hq +hq +jQ +rz +rz +rz +rM +ry +ry +rN +rB +rz +rz +rz +rz +rz +rz +rM +rB +rz +rz +rF +rx +rx +kU +hq +hq +hq +jQ +rY +rY +ts +mD +rY +jQ +hq +hq +hq +jQ +mD +mD +mD +rY +rY +mD +mD +rY +rY +mD +mD +rY +mD +mD +mD +mD +rY +rY +tE +mD +mD +kU +hq +hq +hq +jQ +uw +uB +uD +uw +jI +jQ +hq +hq +hq +jQ +nm +nm +nm +nm +nm +nE +uU +vc +nm +nm +nm +nm +nm +uS +os +uT +nm +nm +uU +uS +nm +kU +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +vL +jM +wD +vK +jM +vG +hq +hq +hq +hh +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +al +al +aO +al +al +ad +bD +br +co +br +dl +dC +dl +br +br +dl +dC +dl +br +fK +ad +gd +al +al +al +gR +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kh +jM +jM +kg +jM +mj +hq +hq +hq +jR +mD +mD +mD +nr +nr +nr +nr +nr +oU +oU +oU +nr +nr +mD +mD +mD +mD +mD +mD +mD +mD +mX +hq +hq +hq +jR +qI +qR +re +rn +rs +jR +hq +hq +hq +jR +rA +rE +rz +rz +rz +rz +rz +rz +rz +rF +rI +rA +rE +rz +rz +rz +rz +rF +rx +rx +rx +mX +hq +hq +hq +jR +mD +mD +mD +mD +mD +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +rY +rY +rY +rY +rY +mD +rY +rY +mD +mD +mX +hq +hq +hq +jR +ux +uD +uI +uE +uB +jR +hq +hq +hq +jR +nm +oq +uU +nm +os +nm +nm +nm +pp +nm +vf +nm +nm +nm +uT +nm +nF +nm +nm +nm +nm +mX +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +vG +vG +ws +vG +vG +ws +vG +hq +hq +hq +hi +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +au +al +al +al +bf +ad +bB +bR +br +br +br +dD +br +br +br +br +dD +br +br +br +ad +ge +al +al +al +gR +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kg +jM +jM +kg +jM +mj +hq +hq +hq +jS +mD +mD +mD +mD +nr +nr +nr +nr +nr +oU +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +mD +kU +hq +hq +hq +jS +qH +qT +re +qR +rs +jS +hq +hq +hq +jS +rx +rD +rA +rA +rA +rI +rA +rA +sn +ry +ry +ry +rx +rA +rA +rA +rA +rx +rx +rD +rx +kU +hq +hq +hq +jS +rY +rY +tm +rY +rY +jS +hq +hq +hq +jS +mD +mD +rY +rY +rY +tm +rY +rY +rY +ui +rY +rY +rY +rY +rY +mD +rY +rY +rY +mD +mD +kU +hq +hq +hq +jS +uu +om +uu +uL +uB +jS +hq +hq +hq +jS +nm +nm +nm +nm +nF +nm +nm +nF +nm +nm +uT +oC +nm +uU +nm +nm +vc +nm +nm +nm +nm +kU +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +vM +jM +vM +jM +jM +vG +hq +hq +hq +hj +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +av +al +al +al +bg +ad +bE +br +br +br +br +dE +ec +br +br +eQ +ff +br +br +br +ad +gd +al +al +al +gS +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kg +jM +jM +kg +jM +mj +hq +hq +hq +gP +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +gP +hq +hq +hq +gP +qH +hc +re +qR +rs +gP +hq +hq +hq +gP +rx +ry +ry +rx +rD +rx +rx +sb +rz +rz +rz +rz +rM +rD +rx +rx +rS +rx +rx +rx +rD +nk +hq +hq +hq +gP +mD +mD +rY +rY +mD +gP +hq +hq +hq +gP +mD +mD +mD +mD +mD +rY +rY +mD +mD +rY +rY +mD +rY +mD +mD +mD +rY +rY +mD +mD +mD +gP +hq +hq +hq +gP +mI +uE +mG +mG +ns +gP +hq +hq +hq +gP +nm +nm +oq +nm +pp +nm +uT +nm +os +oq +oq +nm +oq +nm +nm +oq +nm +uT +oq +nm +nm +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vN +jM +vN +jM +jM +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(42,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ed +br +br +dD +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kg +jM +jM +kg +jM +mj +hq +hq +hq +jQ +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +qH +hc +re +qQ +rs +jQ +hq +hq +hq +jQ +rB +rz +rz +rM +rS +rx +rN +rB +rz +rF +rE +rz +rz +rM +ry +rx +rx +rx +rx +rx +rx +jQ +hq +hq +hq +jQ +mD +mD +tn +tB +mD +jQ +hq +hq +hq +jQ +mD +mD +tm +mD +mD +rY +tB +tP +rY +rY +rY +ui +tK +rY +rY +rY +rY +tt +mD +mD +mD +jQ +hq +hq +hq +jQ +uy +uE +om +uu +uu +jQ +hq +hq +hq +jQ +nm +nm +nm +uS +nm +oe +nm +vf +uU +nm +nm +nm +vc +nm +nm +oq +uT +nm +nm +nm +nm +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vO +jM +vO +jM +jM +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(43,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ae +aj +am +ad +aw +aC +aC +aC +aC +bj +ad +bS +cp +bT +bT +bT +ee +bT +bT +ee +bT +cp +fA +ad +fP +gf +fQ +fP +fP +gT +ad +ae +aj +am +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kg +jM +jM +kg +jM +mj +hq +hq +hq +mt +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mt +hq +hq +hq +qA +qH +qU +re +hc +rs +qA +hq +hq +hq +rt +rz +rz +rz +rz +rM +rB +rz +rz +rz +rG +rx +rE +rz +rz +rz +rM +rx +rD +rx +ta +rx +rt +hq +hq +hq +tb +mD +rY +rY +mD +mD +tb +hq +hq +hq +tG +mD +mD +mD +mD +rY +rY +mD +mD +rY +rY +mD +rY +rY +tL +rY +rY +rY +rY +mD +mD +mD +tG +hq +hq +hq +uq +uz +nd +mI +uw +nU +uq +hq +hq +hq +uO +nm +oq +nm +nm +nm +nm +uT +nm +nm +nm +os +os +nm +nm +uU +uS +nm +oe +nm +nm +oq +uO +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vP +jM +vP +jM +jM +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(44,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +af +ag +af +ad +ax +al +al +al +al +ba +ad +bS +bT +cP +bT +bT +ee +bT +bT +ee +bT +bT +bT +ad +fP +fP +fP +fP +fP +gU +ad +af +ag +af +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kg +jM +jM +kg +jM +mj +hq +hq +hq +jS +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +jS +hq +hq +hq +jS +qH +qV +re +hc +rs +jS +hq +hq +hq +jS +rz +rF +rE +rz +rz +rz +rz +rF +rA +rx +rx +sM +rA +rE +rz +rz +rM +ry +rx +rx +rx +jS +hq +hq +hq +jS +mD +mD +tt +mD +mD +jS +hq +hq +hq +jS +mD +mD +mD +mD +mD +tt +mD +mD +rY +mD +mD +rY +rY +mD +rY +mD +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +mI +ol +uy +mI +mI +jS +hq +hq +hq +jS +nm +nF +nm +nm +nm +nm +nm +nm +nm +oq +nm +nm +nm +os +nm +nm +nm +vc +uS +uU +nm +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +jM +jM +jM +jM +jM +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(45,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ag +ag +an +ad +ay +al +al +al +aH +bb +ad +bT +bT +bT +bT +dF +ef +eo +eD +ef +fg +bT +bT +fM +fP +fP +fP +fP +fP +gV +ad +gb +ag +ag +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kf +jM +jM +kg +jM +jM +hq +hq +hq +gP +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +gP +hq +hq +hq +gP +qH +hc +re +hc +rs +gP +hq +hq +hq +gP +rz +rG +rx +rE +rz +rz +rz +rM +so +ry +rx +rx +rD +rx +rE +rz +rz +rz +rM +rx +rx +gP +hq +hq +hq +gP +mD +rY +rY +rY +rY +gP +hq +hq +hq +gP +mD +mD +mD +mD +rY +rY +rY +rY +mD +mD +rY +mD +mD +mD +rY +mD +mD +mD +rY +rY +mD +gP +hq +hq +hq +gP +uu +ns +uw +pA +uu +gP +hq +hq +hq +gP +nm +nm +oC +nF +nm +nm +uU +uS +uT +nm +nm +nm +uU +uS +nm +nm +nm +nm +pp +nm +nm +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vQ +vQ +vQ +vQ +vQ +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(46,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ad +ak +ad +ad +az +aD +aP +al +al +bk +ad +bU +ad +ad +bT +dG +al +al +eg +eR +fh +bT +bT +ad +fP +fP +go +fP +gJ +fP +ad +ad +ak +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +jM +jM +jM +kg +lL +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +qH +hc +re +ro +rs +jQ +hq +hq +hq +jQ +rA +rx +rD +rx +rA +rE +rz +rz +rz +rz +rM +ry +rx +ry +ry +sQ +rz +rz +rz +rM +rx +jQ +hq +hq +hq +jQ +mD +rY +rY +mD +tE +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +rY +rY +mD +tE +rY +rY +rY +mD +mD +mD +rY +rY +tK +rY +rY +mD +mD +jQ +hq +hq +hq +jQ +mI +jI +jI +uM +na +jQ +hq +hq +hq +jQ +nm +nm +uT +nm +nm +uT +nm +pp +nm +nF +nm +nm +nm +nm +nm +uT +oD +uU +uS +nm +oD +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vR +jM +jM +jM +vR +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(47,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ah +al +al +ad +aA +al +al +al +al +ba +ad +bV +cq +ad +bT +dG +eg +al +eE +al +fh +bT +bT +ad +fP +fP +fP +fP +fP +fP +ad +hk +al +ah +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +jM +jM +jM +jM +jM +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +mD +mD +nr +nr +mD +nr +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +jR +hq +hq +hq +jR +qH +qQ +re +rp +rs +jR +hq +hq +hq +jR +rx +rD +rx +rN +ry +rB +rz +rz +rz +rz +rz +rz +sy +rz +rz +rz +rz +rz +rz +rz +rM +jR +hq +hq +hq +jR +mD +mD +rY +rY +mD +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +rY +rY +mD +mD +rY +mD +mD +rY +rY +rY +mD +mD +mD +mD +mD +mD +jR +hq +hq +hq +jR +uu +jI +jI +mI +na +jR +hq +hq +hq +jR +nm +nm +uS +uT +nm +nm +vc +nm +nm +nm +oq +nm +uS +nm +nm +nm +nF +nE +uS +nm +nm +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vS +jM +jM +jM +vS +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(48,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ad +al +al +ao +aB +al +al +al +al +ba +ad +bW +cr +ad +bT +dH +dZ +ep +ep +eS +fi +bT +bT +fM +fP +fP +gp +fP +go +fP +hd +al +hr +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +jM +jM +jM +jM +jM +jS +hq +hq +hq +jS +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +qH +qW +re +rq +rs +jS +hq +hq +hq +jS +ry +ry +rB +rz +rz +rz +rz +rF +rA +rA +rE +rz +rz +rz +sW +rz +rz +rz +sW +rz +rz +jS +hq +hq +hq +jS +mD +rY +mD +mD +mD +jS +hq +hq +hq +jS +mD +mD +mD +rY +mD +rY +mD +mD +mD +mD +rY +rY +mD +mD +mD +tm +mD +rY +rY +mD +mD +jS +hq +hq +hq +jS +ny +pR +jI +uE +uK +jS +hq +hq +hq +jS +nm +nm +nm +nm +nm +nm +uS +uS +nm +nm +uU +nm +nm +nm +uT +nF +nF +nm +nm +nm +nm +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +vT +jM +jM +jM +vT +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(49,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ad +ad +al +ad +aB +aE +aQ +aX +al +bl +ad +bV +cs +ad +bT +bT +bT +bT +bT +bT +bT +bT +fB +ad +fQ +fP +fP +fP +fP +fP +ad +hl +ad +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +gP +kU +ll +kU +gP +mi +hq +hq +hq +gP +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rz +rz +rz +rz +rF +rA +rA +rx +rx +rD +rx +rA +rA +rI +rx +rA +rA +rA +rx +rA +rA +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +mD +mD +mD +mD +rY +mD +mD +mD +mD +mD +mD +rY +tK +mD +rY +rY +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +nm +nm +nm +nm +uT +nm +nm +nm +nm +nE +oD +nm +oq +oC +vc +nm +uS +oq +nm +nm +nm +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +ws +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(50,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ad +ad +ad +ad +aB +aF +aR +aY +al +bl +ad +bX +ct +ad +dm +bT +bT +bT +bT +dm +bT +fv +fC +ad +fR +fP +go +fP +go +fP +ad +ad +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +rA +rA +rA +rD +rx +rx +rD +rx +rx +rx +rx +rx +rx +rx +rx +rD +rx +rx +rx +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +rY +mD +mD +mD +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +qx +qz +hq +hq +hq +hq +hq +wt +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(51,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +ad +ad +ad +aB +aG +aS +aZ +al +bl +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +fS +fP +fP +fP +fP +fP +ad +ad +ad +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +rD +rx +rx +rx +rx +rx +rx +rD +rx +rx +rD +rx +rx +rx +rx +rx +rD +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +nm +nm +nm +nm +nm +uT +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ad +ad +aB +al +al +al +al +bm +ad +bY +cu +cu +dn +dI +eh +eq +eF +dn +cu +cu +cu +ad +fP +fP +fP +ad +gK +ad +ad +ad +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nP +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nP +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +rR +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rR +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +tQ +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tQ +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +uV +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +uV +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +aB +aH +al +al +al +ba +bF +bO +bO +bO +bO +dJ +bO +bO +bO +eT +bO +bO +bO +ck +fP +fP +fP +ad +gL +gW +ad +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +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 +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 +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 +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(54,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +ad +aI +aT +aT +aT +bc +ad +bO +bO +bO +al +al +al +al +al +al +bO +bO +bO +ad +fT +fP +gq +ad +gM +ad +ad +hh +hs +hD +hD +hq +hq +hq +hq +hD +hD +hs +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jq +ki +ki +ki +ki +ki +mk +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(55,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +ad +ad +ad +bO +bO +al +dK +al +al +dK +al +fj +bO +ad +ad +ad +ad +ad +ad +ad +ad +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +jq +jI +jI +jI +jI +jI +jI +jI +mk +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(56,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +bO +bO +al +dL +al +al +dL +al +bO +bO +ad +ad +aa +aa +aa +aa +aa +aa +aa +hj +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jq +jI +jT +jI +jU +jI +jI +lM +jI +jI +mk +hq +hq +hq +hq +gP +no +nL +oi +gP +no +oV +oi +gP +no +oV +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sp +oi +gP +no +sp +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ud +oi +gP +no +ud +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vh +oi +gP +no +vh +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(57,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +cv +cQ +cv +cv +cv +cv +cv +cv +cQ +fw +ad +aa +aa +aa +aa +aa +aa +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jr +jI +jI +jI +jI +jp +jI +jI +jI +jI +mp +hq +hq +hq +hq +gP +jI +na +oj +jI +mR +mI +na +mI +nX +jI +jI +nd +qa +ne +nd +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +rO +rP +sc +rP +rO +rP +rO +rP +rO +rP +rO +rP +rO +rP +rO +nk +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +rY +mD +rY +rY +rY +rY +mD +mD +rY +mD +mD +mD +rY +mD +mD +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +nG +uW +uW +og +ot +ot +ot +ot +ot +ot +ot +ot +ot +qe +qn +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(58,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ak +ad +ad +ad +ad +ak +ad +ad +ad +aa +aa +aa +aa +aa +aa +gX +hc +gX +hq +hq +hq +hE +hE +hE +hE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jr +jI +jU +jT +jp +lm +lE +jI +lM +jI +mp +hq +hq +hq +hq +kU +ns +nC +mZ +mT +mH +oj +na +mT +nz +pB +nY +nd +ns +nZ +nd +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +rO +rP +rO +rP +rO +rP +rO +rP +tV +rP +rO +rP +rO +rP +rO +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +rY +mD +rY +rY +mD +tE +rY +rY +rY +mD +mD +mD +rY +rY +tK +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +nI +uX +nI +nG +og +ot +vl +qe +uW +uW +og +ot +qe +qn +nI +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +hh +xk +xk +xk +xk +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xu +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(59,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +cR +ag +ag +ad +ad +ag +ag +ag +ad +ad +aa +aa +aa +aa +aa +aa +gP +hb +gP +hq +hq +hq +hn +hC +hC +hI +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +js +jp +jp +jp +jp +ln +jp +jp +jp +jp +mq +hq +hq +hq +hq +mX +ni +na +ok +ol +oG +mI +na +mG +jI +jI +jI +pR +nd +ne +nd +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +rP +rP +rP +rP +rP +rP +rP +sG +sN +rP +rP +rP +rP +rP +rP +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +mD +mD +mD +rY +rY +tY +tY +ul +tY +tY +rY +rY +rY +mD +mD +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +nI +nI +nI +vd +nG +uW +uW +qn +nI +nJ +nG +uW +qn +nH +nI +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +hi +xk +xk +xk +xk +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xv +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(60,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +cS +cS +cS +ad +ad +cS +cS +cS +ad +aa +aa +aa +aa +aa +aa +aa +gX +hc +gX +hq +hq +hq +hD +hD +hD +hD +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jr +jI +jI +jI +kV +jp +jp +jI +jI +jI +mp +hq +hq +hq +hq +kU +nd +nQ +ol +ny +mI +mS +ph +nz +jI +nY +mI +mT +qb +ne +nd +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +rO +rP +rO +rP +rO +rP +sc +rP +rO +rP +rO +rP +rO +rP +rO +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +mD +rY +mD +rY +tY +mD +mD +mD +rY +rY +mD +mD +mD +tm +mD +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +nI +nI +qr +nI +nJ +nI +nI +qr +nH +nI +vd +nI +nI +nJ +nI +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +hj +xk +xk +xk +xk +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xw +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(61,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +cT +cT +cT +ad +ad +cT +cT +cT +ad +aa +aa +aa +aa +aa +aa +aa +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jr +jI +jI +jI +jI +jp +jI +jI +jI +mo +mp +hq +hq +hq +hq +gP +nt +nR +nR +nd +nd +oM +ny +mI +nx +mI +mT +nC +ns +nx +ny +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +nk +rO +rP +rO +rP +rO +rP +rO +rP +rO +rP +rO +rP +rO +rP +sc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +rY +mD +rY +mD +mD +mD +mD +mD +mD +rY +tK +mD +rY +rY +mD +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +qr +nI +nI +nI +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(62,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hh +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jt +jI +jV +jI +jI +jI +jI +jI +jI +jI +ml +hq +hq +hq +hq +gP +no +nL +oi +gP +no +oV +oi +gP +no +oV +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sp +oi +gP +no +sp +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ud +oi +gP +no +ud +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vh +oi +gP +no +vh +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(63,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +jt +jI +jI +jI +jI +jI +jI +jI +ml +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(64,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hj +hs +hE +hE +hq +hq +hq +hq +hE +hE +hs +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jt +kj +kj +kj +kj +kj +ml +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +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 +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 +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 +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nS +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nS +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +rT +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rT +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +tR +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tR +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(67,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +mI +mG +mI +mI +ow +mG +mG +mG +mG +mG +ny +ny +ny +mG +qk +mG +oH +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +kE +kE +kE +kE +kF +kE +kE +kE +kE +kE +kE +kE +kE +kE +kL +kE +kD +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(68,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +jI +mY +nu +na +mI +mI +oH +mG +mG +mG +ny +mG +pJ +mG +mI +mG +mG +mG +mG +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +kE +lK +kG +kE +kE +kE +kD +kE +kE +kE +kE +kE +lf +kE +kE +kE +kE +kE +kE +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +kE +kE +kE +kE +kE +kE +hc +hc +hc +kE +kE +kE +kE +kE +kE +hc +hc +kE +kE +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +qz +hq +hq +hq +hq +hq +wu +hq +wL +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(69,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +gP +hq +hq +hq +gP +gP +kU +lo +kU +gP +gP +hq +hq +hq +gP +mG +mI +mI +mG +nT +mG +mI +oH +mG +nC +pq +ol +pC +ok +mI +mZ +ny +mG +ow +mG +mG +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +kE +kD +kE +kE +kD +kE +mV +kL +kE +kE +lf +kE +nj +kE +kE +kF +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +hc +hc +kE +kE +kE +kE +vm +uG +kE +kE +kE +kE +kE +kE +hc +vv +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wE +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hh +hq +hq +hq +jQ +kk +kW +kW +kW +lN +jQ +hq +hq +hq +jQ +mG +mG +mG +mI +na +na +mI +mI +mG +pi +mG +mS +ol +mI +oH +ol +ol +ob +mI +nx +mG +jQ +hq +hq +hq +jQ +kE +kD +kE +kE +mV +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +mD +nr +nr +mD +mD +mD +mD +mD +mD +nr +nr +nr +nr +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +tf +th +th +to +th +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kE +kE +kE +kE +nj +kE +kD +kE +kE +kD +kE +kE +mV +kE +kE +kE +jQ +hq +hq +hq +jQ +kG +kE +nj +kE +kE +jQ +hq +hq +hq +jQ +kE +kE +hc +uG +uG +nr +nr +kE +kE +kE +kE +kE +kE +nr +nr +nr +nr +kE +hc +kE +kE +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vU +vU +vI +vI +wV +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(71,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hi +hq +hq +hq +jR +kl +kW +kW +kW +lO +jR +hq +hq +hq +jR +mG +mQ +mZ +nv +jI +nb +nT +ns +ns +ns +pr +mI +ol +ol +pS +ns +pD +nd +mI +mG +mG +jR +hq +hq +hq +jR +qJ +lK +kE +ld +kE +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +nr +nr +nr +mD +mD +mD +mD +mD +nr +nr +nr +nr +mD +mD +mD +mD +jR +hq +hq +hq +jR +tg +th +tu +th +tf +jR +hq +hq +hq +jR +kE +mU +nj +kF +tM +kE +kD +kE +kE +kE +nj +kE +kE +kE +lK +kE +ld +kE +kE +kE +kE +jR +hq +hq +hq +jR +kE +kD +kE +kE +kG +jR +hq +hq +hq +jR +kE +kE +hc +uG +hc +nr +nr +nr +kE +kE +kE +kE +kE +nr +nr +nr +nr +kE +hc +hc +kE +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(72,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hj +hq +hq +hq +jS +km +kW +lp +kW +lP +jS +hq +hq +hq +jS +mG +mG +na +nw +jI +jI +na +na +oW +mI +ps +mG +om +ns +ns +oW +ol +oG +nx +qt +mG +jS +hq +hq +hq +jS +kE +kE +kE +kE +mV +jS +hq +hq +hq +jS +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +th +tj +th +to +th +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +lK +kE +kL +kE +kE +kE +kE +mV +kE +lf +kE +jS +hq +hq +hq +jS +kE +lK +kE +ld +kE +jS +hq +hq +hq +jS +kE +kE +uG +hc +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +kE +kE +kE +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +vU +vU +vI +vI +wW +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(73,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +gP +hq +hq +hq +gP +kn +kW +lq +kW +lQ +gP +hq +hq +hq +gP +mG +mH +na +jI +nU +jI +mI +oI +na +nB +ns +ns +ns +ns +ns +ns +ql +pw +nR +ng +mG +gP +hq +hq +hq +gP +kE +kE +kE +mU +lK +gP +hq +hq +hq +gP +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +ti +th +tv +tg +tp +gP +hq +hq +hq +gP +kE +kE +kE +kE +lf +kE +kE +lK +kE +mU +kE +kE +kE +kE +kE +kE +mU +lK +nj +kL +kE +gP +hq +hq +hq +gP +kE +kJ +lf +kE +mV +gP +hq +hq +hq +gP +kE +kE +hc +hc +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +kE +kE +kE +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(74,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hh +hq +hq +hq +jQ +ko +kW +lr +kW +lR +jQ +hq +hq +hq +jQ +mH +mI +nb +mI +jI +nY +mI +ne +na +ne +pt +nw +nU +pk +ol +qc +jI +oK +mG +oW +mI +jQ +hq +hq +hq +jQ +kE +kE +mV +kE +ld +jQ +hq +hq +hq +jQ +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +jQ +hq +hq +hq +jQ +th +to +th +tu +th +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +mV +kE +nj +kE +nj +kF +kE +lf +kE +kE +mV +kE +ld +kE +kE +kE +jQ +hq +hq +hq +jQ +kE +kE +kE +mU +lK +jQ +hq +hq +hq +jQ +kE +kE +hc +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +uG +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vU +vU +vI +vI +wW +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(75,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +gr +iv +ix +iC +gr +gr +gr +gr +gr +gr +aa +aa +hi +hq +hq +hq +jR +kp +kp +kp +kp +kp +jR +hq +hq +hq +mv +mH +mG +nc +ns +nV +om +nd +nd +na +na +mI +jI +oz +pK +ol +nX +on +jI +jI +qu +mI +mv +hq +hq +hq +qB +kE +nj +kE +kD +kE +qB +hq +hq +hq +ru +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +ru +hq +hq +hq +tc +th +tf +tw +ti +th +tc +hq +hq +hq +tH +kE +kE +kD +kE +kE +kL +kE +kE +kE +kE +kE +kE +kD +ld +kE +lK +kG +kE +kE +kE +kE +tH +hq +hq +hq +ur +uA +kG +mV +kE +ld +ur +hq +hq +hq +jR +kE +kE +hc +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +uG +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(76,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +gr +gr +hS +gr +gr +gr +gr +gr +im +gN +iy +gN +gN +iG +iO +iT +iW +iX +aa +aa +hj +hq +hq +hq +jS +kq +kq +kq +kq +kq +jS +hq +hq +hq +jS +mH +mH +nd +mI +nW +ny +nA +oJ +ns +pj +pu +jI +jI +nd +nd +jI +mG +mZ +ol +nx +mI +jS +hq +hq +hq +jS +kE +kE +nj +kE +kE +jS +hq +hq +hq +jS +mD +mD +mD +nr +nr +nr +nr +nr +nr +sA +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +th +th +to +tp +th +jS +hq +hq +hq +jS +kE +kE +kE +kE +kD +kE +kE +kE +oN +pn +py +pn +pF +kE +kE +kE +kE +nj +kE +kE +kE +jS +hq +hq +hq +jS +ld +kE +lK +kG +kE +jS +hq +hq +hq +jS +kE +kE +uG +nr +nr +nr +nr +nr +nr +vi +nr +nr +nr +nr +nr +nr +kE +kE +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +vU +ww +vI +vI +wW +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(77,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +gr +hM +gN +gr +hZ +id +ii +gr +in +gN +iz +gN +gN +hV +gN +iU +iW +iY +aa +aa +gP +hq +hq +hq +gP +kq +kX +ls +kq +kq +gP +hq +hq +hq +gP +mI +mI +ne +na +nC +nd +ox +ns +mI +na +na +nw +nb +jI +jI +qd +ps +mI +ol +qv +mI +gP +hq +hq +hq +gP +kE +kE +lK +kE +kL +gP +hq +hq +hq +gP +mD +mD +mD +nr +nr +nr +nr +nr +sq +sB +sH +nr +nr +nr +sX +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +th +to +tg +th +tj +gP +hq +hq +hq +gP +kE +kE +nj +kE +mV +kE +kE +oN +pb +ue +ue +ue +pG +pF +kE +kE +lK +kE +kE +kE +kE +gP +hq +hq +hq +gP +kE +kE +kE +kE +nj +gP +hq +hq +hq +gP +kE +hc +hc +nr +nr +nr +nr +nr +vi +vi +vi +nr +nr +nr +mD +mD +hc +hc +hc +hc +vw +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vV +wv +vI +vI +wX +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(78,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +gr +hN +gN +hS +gN +gN +gN +gr +io +gN +gN +gN +gN +iH +iP +iV +iW +iZ +aa +aa +hh +hq +hq +hq +jQ +kq +kq +lt +kq +kq +kU +hq +hq +hq +jQ +mI +mH +nd +jI +jI +on +nw +oK +jI +pk +ns +na +nd +ne +nX +nA +nd +ns +qs +nz +mG +kU +hq +hq +hq +jQ +qJ +mU +kE +qJ +kE +jQ +hq +hq +hq +jQ +mD +mD +mD +nr +nr +nr +nr +nr +sr +sC +sI +sO +sR +mD +mD +mD +mD +mD +mD +mD +mD +kU +hq +hq +hq +jQ +tg +th +th +th +th +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kG +kE +oO +ue +ue +ue +ue +ue +pL +pU +pn +pn +pn +pn +qw +pn +kU +hq +hq +hq +jQ +kE +kE +kE +uN +kE +jQ +hq +hq +hq +jQ +kE +uR +uG +nr +nr +nr +nr +nr +vi +vi +vi +mD +mD +mD +mD +hc +hc +hc +hc +hc +uG +kU +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +vW +vI +vI +vI +wW +vG +hq +hq +hq +hh +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(79,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gr +gr +gr +gr +gr +aa +aa +gr +gr +gN +gN +hV +gN +gN +gN +gr +ip +gN +gN +gN +gN +iI +gr +gr +gr +gr +aa +aa +hi +hq +hq +hq +jR +kq +kq +kX +kq +kq +mm +hq +hq +hq +jR +mG +mR +nf +nx +nX +nd +jI +jI +nU +jI +pv +na +ns +jI +nb +mG +ob +ns +jI +jI +mG +mX +hq +hq +hq +jR +kE +nj +kF +kE +lf +jR +hq +hq +hq +jR +mD +mD +mD +nr +nr +nr +nr +nr +ss +sD +sI +nr +nr +sS +mD +mD +mD +mD +mD +mD +mD +mX +hq +hq +hq +jR +th +th +to +tf +th +jR +hq +hq +hq +jR +kE +kD +kE +kE +lK +kE +kE +oP +ue +ue +ue +um +uo +jp +jp +jp +jp +jp +jp +jp +jp +mX +hq +hq +hq +jR +nj +lK +kG +kE +kE +jR +hq +hq +hq +jR +kE +hc +hc +nr +nr +nr +nr +nr +vi +vi +vi +nr +nr +mD +mD +mD +hc +uG +hc +hc +hc +uJ +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +vG +vX +vI +wF +vI +wW +vG +hq +hq +hq +hi +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(80,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gr +gr +gI +gY +he +gr +gr +gr +gr +gr +gr +gr +gr +ia +gN +gN +gr +iq +gN +gN +gN +ir +iJ +gr +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kq +kq +lt +kq +kq +kU +hq +hq +hq +jS +mG +mI +nd +ny +nY +nx +jI +nY +jI +jI +nb +pA +nd +px +ol +nd +nQ +mI +jI +mH +mG +kU +hq +hq +hq +jS +mU +kE +kE +kE +kE +jS +hq +hq +hq +jS +mD +mD +mD +mD +nr +nr +nr +nr +nr +sE +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +mD +kU +hq +hq +hq +jS +th +th +tx +th +th +jS +hq +hq +hq +jS +kE +kE +kE +kE +mV +kE +kE +oQ +ue +ue +ue +ue +ue +pM +po +po +qm +po +po +po +po +kU +hq +hq +hq +jS +kE +lf +kE +mV +kJ +jS +hq +hq +hq +jS +kE +hc +hc +kE +nr +nr +nr +nr +nr +vi +nr +nr +nr +nr +nr +mD +mD +hc +hc +hc +vx +kU +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +vW +vI +vI +vI +wW +vG +hq +hq +hq +hj +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gs +gG +gN +gN +gN +hm +ht +hF +hJ +gN +hO +gr +gr +gr +ie +ij +gr +gr +gr +ie +ij +gr +gr +gr +gr +gr +aa +aa +aa +gP +hq +hq +hq +gP +kq +kY +ls +kq +kq +gP +hq +hq +hq +gP +mG +mI +nc +jI +nZ +nx +nb +oL +oX +nc +oz +jI +oz +jI +ol +nc +nd +nA +oz +mH +mG +gP +hq +hq +hq +gP +mV +kE +kF +kE +kE +gP +hq +hq +hq +gP +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +gP +hq +hq +hq +gP +th +tf +th +th +tf +gP +hq +hq +hq +gP +kE +kE +kD +kE +lf +kE +kE +oR +pd +ue +ue +ue +pH +pN +kE +kD +kE +tM +kD +kE +kE +gP +hq +hq +hq +gP +lf +kE +kE +ld +kE +gP +hq +hq +hq +gP +kE +kE +hc +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +hc +hc +vw +nk +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gt +gH +gN +gN +gN +gr +hu +hG +hu +hu +gN +hT +hW +gN +gN +gN +gN +hW +gN +gN +gN +iE +iK +iQ +iW +iX +aa +aa +aa +hh +hq +hq +hq +jQ +kq +kq +kq +kq +kq +jQ +hq +hq +hq +jQ +mG +mI +mH +nz +jI +oo +jI +jI +oY +jI +jI +jI +pD +jI +jI +nc +nA +nd +nd +mH +mG +jQ +hq +hq +hq +jQ +mV +kE +ld +nj +kE +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +th +tf +th +tj +th +jQ +hq +hq +hq +jQ +kE +kE +kE +nj +kE +kF +kE +kE +oR +po +po +po +pI +kE +kE +kD +kE +kE +kE +kE +kE +jQ +hq +hq +hq +jQ +kE +kJ +kD +kE +lf +jQ +hq +hq +hq +jQ +kE +kE +hc +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +uG +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vY +vU +vI +vI +wW +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gt +gH +gO +gN +hf +gr +hv +gZ +gZ +gZ +gN +hU +gN +ib +gN +ik +gN +gN +gN +gN +gN +hV +gN +gN +iW +iY +aa +aa +aa +hi +hq +hq +hq +jR +kr +kr +kr +kr +kr +jR +hq +hq +hq +mv +mG +mS +mG +mG +jI +jI +nb +jI +jI +jI +pw +pw +ol +jI +nw +ne +nd +ow +nd +mH +mS +mv +hq +hq +hq +qB +nj +kE +kE +lf +kE +qB +hq +hq +hq +ru +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +ru +hq +hq +hq +tc +tj +tp +th +tC +th +tc +hq +hq +hq +tH +kE +kD +kE +kE +kE +kE +kE +kE +kE +kE +lK +lK +kE +kE +kE +nj +kE +kF +kE +kE +kD +tH +hq +hq +hq +ur +kE +kE +kD +lf +kE +ur +hq +hq +hq +jR +kE +kE +hc +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gt +gH +gN +gN +gN +gr +hw +gN +gN +gN +hP +gr +hX +gN +gN +gN +gN +ir +gN +gN +gN +iE +iL +iR +iW +iZ +aa +aa +aa +hj +hq +hq +hq +jS +ks +kW +lu +kW +lS +jS +hq +hq +hq +jS +mG +mT +mI +mI +jI +jI +na +mI +jI +mR +mI +na +mI +nX +jI +jI +nd +qa +ne +nf +mI +jS +hq +hq +hq +jS +kE +kE +kD +kE +kE +jS +hq +hq +hq +jS +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +jS +hq +hq +hq +jS +th +ti +th +tu +tp +jS +hq +hq +hq +jS +kE +mV +kE +kE +kE +kE +kE +kE +kE +kD +kE +kE +kE +lK +kE +kE +kE +ld +nj +kE +kE +jS +hq +hq +hq +jS +kE +lf +nj +uA +kG +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +kE +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +vU +vU +vI +vI +wW +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(85,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gu +gI +gN +gZ +gN +gr +hx +hH +hK +hL +gr +gr +gr +gr +if +il +gr +gr +gr +if +il +gr +gr +gr +gr +gr +aa +aa +aa +gP +hq +hq +hq +gP +kt +kW +lv +kW +lT +gP +hq +hq +hq +gP +mH +mG +ng +mT +ns +ns +oy +mZ +oZ +mH +mI +na +oW +nz +jI +jI +nd +ns +nZ +nd +mG +gP +hq +hq +hq +gP +kE +kE +kE +kD +qJ +gP +hq +hq +hq +gP +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +gP +hq +hq +hq +gP +th +th +ti +th +tF +gP +hq +hq +hq +gP +kE +kE +kL +mV +kE +kE +kE +nj +kE +kE +kE +kE +kE +nj +kE +kE +kE +kE +lf +kE +kE +gP +hq +hq +hq +gP +lK +kE +kE +kE +ld +gP +hq +hq +hq +gP +kE +kE +kE +kE +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +kE +kE +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(86,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gr +gr +gH +ha +hg +gr +gr +gr +gr +gr +gr +gr +gr +gN +gN +gN +gr +is +gN +gN +gN +iF +iM +gr +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +ku +kW +lw +kW +lU +jQ +hq +hq +hq +jQ +mH +mH +nh +mG +mH +op +na +ok +ol +oG +mI +na +mG +jI +jI +nb +pR +nf +ne +nd +qy +jQ +hq +hq +hq +jQ +kE +kD +kE +kE +kE +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +tf +th +tv +tj +tp +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kE +kE +lf +kE +mV +kE +kE +kE +kE +kE +kE +mU +kE +nj +kE +mU +jQ +hq +hq +hq +jQ +nj +kE +kE +ld +kJ +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +kE +kE +kE +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vU +vU +vI +vI +wW +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(87,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gr +gr +gr +gr +gr +aa +aa +gr +gr +gN +gN +hY +gN +gN +gN +gr +it +gN +gN +gN +hx +gr +gr +gr +gr +gr +aa +aa +hi +hq +hq +hq +jR +kv +kW +kW +kW +lV +jR +hq +hq +hq +jR +mG +mH +ni +nA +nd +nd +nQ +ol +ny +mI +mS +na +nz +jI +jI +mI +mT +qb +ne +nd +nd +jR +hq +hq +hq +jR +kE +kE +kE +kE +lK +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +mD +mD +nr +nr +mD +nr +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +jR +hq +hq +hq +jR +th +th +to +tw +tp +jR +hq +hq +hq +jR +kE +kE +nj +tM +kE +kE +ld +kE +kE +kE +kD +kE +nj +kE +kE +kE +mV +kG +nj +kE +kE +jR +hq +hq +hq +jR +lf +kG +kJ +kE +lf +jR +hq +hq +hq +jR +kE +kE +hc +kE +kE +kE +kE +nr +nr +kE +nr +kE +kE +kE +kE +kE +kE +kE +kE +uG +kE +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(88,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +gr +hQ +gN +hR +gN +gN +gN +gr +gI +gN +gN +gN +gN +gr +iO +gN +iW +iX +aa +aa +hj +hq +hq +hq +jS +kw +kW +kW +kW +lW +jS +hq +hq +hq +jS +mG +mH +mG +mG +mG +mG +nR +nR +nd +nd +px +ny +mI +nx +oZ +mT +nC +ns +nx +ny +nd +jS +hq +hq +hq +jS +kE +kE +lK +kE +nj +jS +hq +hq +hq +jS +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +th +to +to +th +th +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +kE +nj +nj +kE +kE +kE +kE +kE +kE +kE +mV +mV +kE +kE +kE +kE +jS +hq +hq +hq +jS +kE +mU +kD +lf +kE +jS +hq +hq +hq +jS +kE +kE +hc +hc +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +hc +uG +kE +kE +kE +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +vU +vU +vI +vI +wV +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(89,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +gr +gN +gN +hY +ic +ig +gI +gr +gI +gN +iA +gN +gN +iN +gN +gN +iW +iY +aa +aa +gP +hq +hq +hq +gP +gP +kU +lo +kU +gP +gP +hq +hq +hq +gP +mG +mH +mH +mH +oa +mH +mG +mG +ny +pl +nB +nd +nc +ng +pT +ny +nR +qq +mG +mG +nd +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +kE +kE +kE +kE +kE +kE +kG +mU +kE +kD +kL +ld +kE +nj +kD +kE +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +hc +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +hc +vu +kE +kE +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wE +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(90,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +gr +hR +hR +gr +gr +gr +gr +gr +iu +gI +gI +gI +gN +gr +iS +gN +iW +iZ +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +mG +mG +mG +mG +mG +mH +mH +mG +mG +ny +ny +mG +mG +mG +ny +ns +ns +mG +nd +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +kE +kE +kE +kE +kE +kE +kE +kE +hc +uG +kE +kE +kE +uG +hc +kE +kE +kE +kE +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +qx +qz +hq +hq +hq +hq +hq +wt +hq +wM +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(91,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +gP +gQ +gQ +gP +aa +aa +aa +gr +gr +iw +iB +iD +gr +gr +gr +gr +gr +gr +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +mG +mG +mG +mG +mG +nh +mG +mG +mG +ny +ny +ny +ny +ny +mG +mG +mG +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(92,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nS +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nS +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +rT +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rT +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +tR +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tR +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +gP +hn +hC +hI +gP +gQ +gQ +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +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 +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 +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 +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(94,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hh +hy +hD +hD +hq +hq +hq +hq +hD +hD +hy +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +vB +vC +vD +vD +vD +vC +vB +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +vB +vE +vE +vE +vF +vE +vE +vE +vB +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hj +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pa +oi +gP +no +pa +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +st +oi +gP +no +st +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +uf +oi +gP +no +uf +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +vB +vE +vE +vE +vF +vF +vF +vE +vE +vE +vB +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +jf +hq +hq +hq +jv +hq +hq +ky +kz +lx +lF +lY +hq +hq +jv +hq +hq +hq +hq +gP +nB +mI +jI +oz +na +mI +jI +mR +mI +na +mI +nX +jI +oz +nd +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +kD +kE +kE +kD +kE +mV +kL +kE +rU +lf +kE +nj +kE +kE +kF +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +tN +tN +tN +kE +tN +tN +tN +kE +tN +tN +tN +kE +tN +tN +tN +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +vC +vE +vE +vE +vF +vE +vF +vE +vE +vE +vC +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gX +hc +gX +hq +hq +hq +hE +hE +hE +hE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jX +kz +la +la +lG +lF +mn +hq +hq +hq +hq +hq +hq +kU +mS +mT +ns +ns +nC +mZ +mT +mH +mI +na +mT +nz +jI +jI +nd +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +kE +kE +kE +kE +kE +nj +kE +kD +kE +kE +kD +kE +kE +mV +kE +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +vD +vE +vF +vF +vF +vF +vF +vF +vF +vE +vD +hq +hq +hq +hq +hh +xk +xk +xk +xk +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xu +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gP +hb +gP +hq +hq +hq +hn +hC +hC +hI +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jX +kA +la +ly +la +lZ +mn +hq +hq +hq +hq +hq +hq +mX +nd +mG +mH +oA +oM +ok +ol +oG +mS +pE +mG +jI +jI +oz +nY +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +kE +rU +kD +kE +kE +kE +nj +sJ +kE +kE +lK +kE +ld +kE +kE +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +kE +kE +kE +kE +tZ +tZ +tZ +tZ +tZ +tZ +kE +kE +kE +kE +kE +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +vD +vF +vF +vE +vF +wG +vF +vE +vF +vF +vD +hq +hq +hq +hq +hi +xk +xk +xk +xk +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xv +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gX +hc +gX +hq +hq +hq +hD +hD +hD +hD +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jX +kB +la +la +la +lH +mn +hq +hq +hq +hq +hq +hq +kU +nd +ob +nd +nd +nQ +ol +pm +mI +mS +na +nz +jI +jI +mI +mT +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +kE +kE +kE +kE +sg +kE +lK +kE +kL +kE +kE +sg +kE +mV +kE +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +vD +vE +vF +vF +vF +vF +vF +vF +vF +vE +vD +hq +hq +hq +hq +hj +xk +xk +xk +xk +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xw +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jw +hq +hq +kC +lb +lz +lH +ma +hq +hq +jw +hq +hq +hq +hq +gP +nC +mG +mG +mG +nR +nR +nd +nd +oM +ny +mI +nx +mT +mT +nC +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +lf +kE +kE +lK +kE +mU +kE +kE +kE +kE +kE +kE +mU +lK +nj +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +tN +tN +tN +kE +tN +tN +tN +kE +tN +tN +tN +kE +tN +tN +tN +up +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +vC +vE +vE +vE +vF +vE +vF +vE +vE +vE +vC +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hh +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pa +oi +gP +no +pa +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +st +oi +gP +no +st +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +uf +oi +gP +no +uf +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +vB +vE +vE +vE +vF +vF +vF +vE +vE +vE +vB +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +vB +vE +vE +vE +vF +vE +vE +vE +vB +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hj +hy +hE +hE +hq +hq +hq +hq +hE +hE +hy +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +vB +vC +vD +vD +vD +vC +vB +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +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 +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 +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 +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +oc +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +oc +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +rV +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rV +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +tS +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tS +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +uY +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +uY +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +kE +kE +kE +kE +kF +kE +kE +kE +kE +kE +kE +kE +kE +kE +kL +kE +kD +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +kE +lK +kG +kE +kE +kE +kD +kE +kE +kE +kE +kE +lf +kE +kE +kE +kE +kE +kE +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +qK +qK +qK +qK +qK +qK +qK +qK +qY +qK +rJ +rJ +qK +qK +qK +qK +qK +qK +qK +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +qK +qK +qK +qK +qK +qK +qK +qK +qY +qK +rJ +rJ +qK +qK +qK +qK +qK +qK +qK +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +qK +qK +qK +qK +qK +qK +qK +qK +qY +qK +rJ +rJ +qK +qK +qK +qK +qK +qK +qK +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +qz +hq +hq +hq +hq +hq +hq +hq +wL +wY +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(109,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +gP +hq +hq +hq +gP +gP +kU +lA +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +kE +kD +kE +kE +kD +kE +mV +kL +kE +kE +lf +kE +nj +kE +kE +kF +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qX +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qX +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qX +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +wx +wH +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(110,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hh +hq +hq +hq +jQ +kD +kE +jp +kE +kJ +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kE +kE +kE +kE +nj +kE +kD +kE +kE +kD +kE +kE +mV +kE +kE +kE +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +ty +qK +qK +tz +qK +qZ +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +ty +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +sY +qK +qK +sZ +qK +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vZ +wy +vI +wN +wZ +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(111,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hi +hq +hq +hq +jR +kE +ld +jp +kM +kI +jR +hq +hq +hq +jR +kE +mU +nj +kF +kE +kE +kD +kE +kE +kE +nj +kE +kE +kE +lK +kE +ld +kE +kE +kE +kE +jR +hq +hq +hq +jR +qK +qX +qK +qK +qY +jR +hq +hq +hq +jR +qK +qX +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +jR +hq +hq +hq +jR +qK +qX +qK +ra +qK +jR +hq +hq +hq +jR +qK +qX +qK +ra +qK +qK +tz +qK +qK +qK +qK +qK +qK +qK +qK +qK +tz +qK +qK +qK +qK +jR +hq +hq +hq +jR +qK +ty +rJ +qK +qK +jR +hq +hq +hq +jR +qK +qX +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +tz +qK +qK +qK +qK +jR +hq +hq +hq +jR +qK +qK +qZ +qK +qY +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wa +wy +vI +wO +wO +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(112,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hj +hq +hq +hq +jS +kF +le +jp +kG +kE +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +lK +kE +kL +kE +kE +kE +kE +mV +kE +lf +kE +jS +hq +hq +hq +jS +qK +qY +qK +ra +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +rJ +qK +qK +qK +rJ +qK +qX +qK +qK +qK +qK +qK +qK +qK +rJ +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +rJ +qK +qK +qK +rJ +qK +qX +qK +qK +qK +qK +qK +qK +tz +rJ +qK +jS +hq +hq +hq +jS +qK +qK +qK +qX +qY +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +rJ +qK +qK +qK +rJ +qK +qX +qK +qK +qK +qK +qK +qK +qK +rJ +qK +jS +hq +hq +hq +jS +qK +sZ +qK +qK +qK +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wb +wz +vI +wO +xa +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(113,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +gP +hq +hq +hq +gP +kE +kJ +jp +kD +kG +gP +hq +hq +hq +gP +kE +kE +kE +kE +lf +kE +kE +lK +kE +mU +kE +kE +kE +kE +kE +kE +mU +lK +nj +kL +kE +gP +hq +hq +hq +gP +qK +qK +rf +qY +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qX +qY +qK +qK +qK +qK +qK +qK +qZ +qK +qK +rH +qK +qK +qK +gP +hq +hq +hq +gP +qK +rJ +tq +qK +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qX +qY +qK +qK +qK +qK +qK +qK +qZ +qK +qK +rH +qK +qK +qK +gP +hq +hq +hq +gP +qK +qK +rJ +qK +qX +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qX +qY +qK +qK +qK +qK +qK +qK +qZ +qK +qK +rH +qK +qK +qK +gP +hq +hq +hq +gP +sY +qK +qK +sY +qK +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +wc +wc +vI +wP +xb +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(114,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hh +hq +hq +hq +jQ +kE +lf +jp +kE +mb +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +mV +kE +nj +kE +nj +kF +kE +lf +kE +kE +mV +kE +ld +kE +kE +kE +jQ +hq +hq +hq +jQ +qK +qZ +qK +qK +qX +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +ty +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qY +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +rQ +qK +qK +qX +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wc +wc +wI +wQ +xc +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(115,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +eG +eU +bn +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 +aa +aa +hi +hq +hq +hq +jR +kG +lg +jp +kJ +kM +jR +hq +hq +hq +mw +kE +kE +kD +kE +kE +kL +kE +kE +kE +kE +kE +kE +kD +ld +kE +lK +kG +kE +kE +kE +kE +mw +hq +hq +hq +qC +qK +qK +qK +qK +qK +qC +hq +hq +hq +rv +qK +qK +ra +qX +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rv +hq +hq +hq +td +qK +qK +ra +qX +qK +td +hq +hq +hq +tI +qK +qK +ra +qX +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +ty +qK +qK +tI +hq +hq +hq +us +qK +qK +qK +qK +ra +us +hq +hq +hq +uP +qK +qK +ra +qX +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +uP +hq +hq +hq +vy +rJ +qK +qK +qY +qK +vy +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wd +wd +vI +wR +wR +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(116,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +eH +eH +bn +bn +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 +aa +hj +hq +hq +hq +jS +kE +kE +jp +kF +kG +jS +hq +hq +hq +jS +kE +kE +kE +kE +kD +kE +kE +kE +oN +pn +py +pn +pF +kE +kE +kE +kE +nj +kE +kE +kE +jS +hq +hq +hq +jS +qK +qX +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qY +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +un +un +un +qK +ra +qK +qY +qK +qK +qK +jS +hq +hq +hq +jS +qX +qK +qK +uF +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qY +qK +qK +qK +jS +hq +hq +hq +jS +qK +si +sv +sT +rH +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +we +wd +vI +wS +wS +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(117,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ei +er +bJ +eV +fk +ei +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 +aa +gP +hq +hq +hq +gP +kH +lh +jp +lI +kL +gP +hq +hq +hq +gP +kE +kE +nj +kE +mV +kE +kE +oN +pb +jp +pc +jp +pG +pF +kE +kE +lK +kE +kE +kE +kE +gP +hq +hq +hq +gP +qK +ra +rf +qK +qK +gP +hq +hq +hq +gP +qK +rH +qK +qK +qK +qY +qK +qK +qZ +qK +sh +rJ +qK +qK +qK +qK +qK +qK +qK +qK +ra +gP +hq +hq +hq +gP +qK +rH +qK +tq +qK +gP +hq +hq +hq +gP +qK +rH +qK +qK +qK +qY +qK +qK +qZ +qK +ty +un +un +un +qK +qK +qK +qK +qK +qK +ra +gP +hq +hq +hq +gP +qK +qK +ty +qK +qK +gP +hq +hq +hq +gP +qK +rH +qK +qK +qK +qY +qK +qK +qZ +vn +vn +vr +qK +qK +qK +qK +qK +qK +qK +qK +ra +gP +hq +hq +hq +gP +qK +sj +mJ +sU +qK +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vI +vI +vI +vI +vI +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(118,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ej +es +eI +bJ +fl +ej +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 +aa +hh +hq +hq +hq +jQ +kE +li +jp +kG +kJ +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kG +kE +oO +jp +pc +pc +pc +jp +pL +pU +pn +pn +pn +pn +qw +pn +kU +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +un +un +un +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jQ +qK +uF +qY +uF +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +qK +vn +vp +vn +qK +qK +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jQ +rJ +sj +mJ +sU +qK +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +wf +vI +vI +vI +xd +vG +hq +hq +hq +hh +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(119,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +eW +bn +bn +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 +aa +hi +hq +hq +hq +jR +kI +kE +jp +lf +kD +jR +hq +hq +hq +jR +kE +kD +kE +kE +lK +kE +kE +oP +pc +pc +pc +pc +jp +jp +jp +jp +jp +jp +jp +jp +jp +mX +hq +hq +hq +jR +qK +qK +qK +qK +qK +jR +hq +hq +hq +jR +qK +qK +rJ +qK +qZ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qX +qK +qK +qK +mX +hq +hq +hq +jR +qK +tq +rJ +qK +rH +jR +hq +hq +hq +jR +qK +qK +rJ +qK +qZ +qK +qK +qK +qK +qK +qK +un +un +un +qK +ra +qK +qX +tz +qK +qK +mX +hq +hq +hq +jR +qK +qK +uF +rJ +qK +jR +hq +hq +hq +jR +qK +qK +rJ +qK +qZ +qK +qK +qK +qK +vn +vn +vn +qK +qK +qK +ra +qK +qX +qK +qK +qK +mX +hq +hq +hq +jR +qK +sj +vz +sU +qY +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +vG +wf +vI +vI +vI +xe +vG +hq +hq +hq +hi +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(120,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +et +eJ +bJ +fm +bn +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 +aa +hj +hq +hq +hq +jS +kE +kG +jp +kE +kJ +jS +hq +hq +hq +jS +kE +kE +kE +kE +mV +kE +kE +oQ +jp +pc +pc +pc +jp +pM +po +po +qm +po +po +po +po +kU +hq +hq +hq +jS +qK +qK +rf +qZ +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rH +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jS +qK +qK +qK +ty +qK +jS +hq +hq +hq +jS +qK +qK +qK +ty +qK +qK +tz +qK +qK +qK +rH +tz +qK +qK +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jS +qK +qZ +qK +qK +rH +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rH +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jS +qK +sj +mJ +sU +qK +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +vI +vI +wF +vI +vI +vG +hq +hq +hq +hj +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(121,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +cw +cU +bn +aa +bn +bn +bn +bJ +fn +bn +aa +bn +fU +gg +bn +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 +gP +hq +hq +hq +gP +kD +lj +jp +lJ +kG +gP +hq +hq +hq +gP +kE +kE +kD +kE +lf +kE +kE +oR +pd +jp +pc +jp +pH +pN +kE +kD +kE +kE +kD +kE +kE +gP +hq +hq +hq +gP +qK +qK +qK +qK +qX +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qY +qK +rJ +qK +qK +qK +qK +qK +qK +qX +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qY +qK +rJ +qK +qK +qK +qK +qK +qK +qX +qK +gP +hq +hq +hq +gP +qK +qK +qK +qZ +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qY +qK +rJ +qK +qK +qK +qK +qK +qK +qX +qK +gP +hq +hq +hq +gP +qX +sj +mJ +sU +qK +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wJ +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(122,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +cx +cV +bn +aa +bn +eu +bn +bJ +fo +bn +aa +bn +fV +bJ +bn +bn +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 +hh +hq +hq +hq +jQ +kJ +kF +jp +kJ +mc +jQ +hq +hq +hq +jQ +kE +kE +kE +nj +kE +kF +kE +kE +oR +po +po +po +pI +kE +kE +kD +kE +kE +kE +kE +kE +jQ +hq +hq +hq +jQ +qK +qY +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +tz +qK +qK +qK +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +tz +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +tz +qK +qK +qK +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +sk +sw +sV +qX +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wg +wg +vI +wT +wg +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(123,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bZ +bJ +cW +bn +aa +bn +ev +eK +bJ +fp +bn +aa +bn +fW +bJ +gv +bn +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 +hi +hq +hq +hq +jR +kE +kG +jp +kG +lf +jR +hq +hq +hq +mw +kE +kD +kE +kE +kE +kE +kE +kE +kE +kE +lK +lK +kE +kE +kE +nj +kE +kF +kE +kE +kD +mw +hq +hq +hq +qC +qK +qK +qX +qK +ra +qC +hq +hq +hq +rv +qK +qK +qK +qK +qK +qK +qK +sh +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qZ +qK +qK +qK +rv +hq +hq +hq +td +qK +qK +ty +tq +qK +td +hq +hq +hq +tI +qK +qK +ty +qK +qK +qK +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qZ +qK +qK +qK +tI +hq +hq +hq +us +qK +qK +qK +ra +qK +us +hq +hq +hq +uP +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qZ +qK +qK +qK +uP +hq +hq +hq +vy +rQ +qK +qX +qK +qK +vy +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vI +vI +vI +vI +vI +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(124,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +ca +bJ +cX +bn +aa +bn +ew +bn +eX +bJ +bn +aa +bn +fX +bJ +gw +bn +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 +hj +hq +hq +hq +jS +kE +kD +jp +kE +kE +jS +hq +hq +hq +jS +kE +mV +kE +kE +kE +kE +kE +kE +kE +kD +kE +kE +kE +lK +kE +kE +kE +ld +nj +kE +kE +jS +hq +hq +hq +jS +qK +qZ +qK +rf +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +qK +qK +qK +rH +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +qK +qK +qK +ty +qK +qK +tz +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +ty +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +qK +qK +qK +rH +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wg +wg +vI +wg +wg +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(125,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +cy +bn +bn +dM +bn +bn +eL +bJ +bJ +bn +dM +bn +bn +eW +bn +bn +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 +gP +hq +hq +hq +gP +kK +kE +jp +kJ +lh +gP +hq +hq +hq +gP +kE +kE +kL +mV +kE +kE +kE +nj +kE +kE +kE +kE +kE +nj +kE +kE +kE +kE +lf +kE +kE +gP +hq +hq +hq +gP +qK +qK +qX +qK +qX +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +gP +hq +hq +hq +gP +rJ +qK +qK +rJ +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +gP +hq +hq +hq +gP +qK +qK +qK +qX +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +gP +hq +hq +hq +gP +rQ +qK +qX +qK +rH +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wH +wx +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(126,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +cb +bJ +bJ +bn +bn +bn +bn +bn +bJ +fq +bn +bn +bn +bJ +bJ +gx +bn +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 +hh +hq +hq +hq +jQ +kL +kM +jp +kE +kM +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kE +kE +lf +kE +mV +kE +kE +kE +kE +kE +kE +mU +kE +nj +kE +mU +jQ +hq +hq +hq +jQ +qK +ra +qY +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +ra +qK +qK +qK +qX +qK +qK +qK +ra +rJ +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +ra +qK +qK +qK +qX +qK +qK +qK +ra +rJ +qK +ty +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +rJ +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +ra +qK +qK +qK +qX +qK +qK +qK +ra +rJ +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qX +qK +qK +qY +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wh +vI +vI +vI +wh +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(127,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +cc +bJ +bJ +do +bn +ek +ex +eM +bJ +bJ +fx +bn +fH +bJ +bJ +bJ +bn +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 +hi +hq +hq +hq +jR +kE +kJ +jp +lK +kD +jR +hq +hq +hq +jR +kE +kE +nj +kE +kE +kE +ld +kE +kE +kE +kD +kE +nj +kE +kE +kE +mV +kG +nj +kE +kE +jR +hq +hq +hq +jR +qK +qX +qK +qK +qK +jR +hq +hq +hq +jR +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +rJ +rJ +qK +qK +qK +rH +qK +qK +qK +qX +qK +jR +hq +hq +hq +jR +qK +qK +tz +qK +qK +jR +hq +hq +hq +jR +qK +qK +tz +qK +qK +qK +qZ +qK +qK +qK +rJ +rJ +qK +qK +qK +rH +qK +qK +qK +qX +qK +jR +hq +hq +hq +jR +qK +qK +ra +qK +qK +jR +hq +hq +hq +jR +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +rJ +rJ +qK +qK +qK +rH +qK +qK +qK +qX +qK +jR +hq +hq +hq +jR +qK +qZ +qK +rQ +qK +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wh +vI +vI +vI +wh +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(128,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bG +cd +cz +cY +bJ +dN +bJ +bJ +bJ +bJ +bJ +bJ +dN +bJ +cz +gh +gy +gk +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 +hj +hq +hq +hq +jS +kM +kE +jp +kL +kE +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +kE +nj +nj +kE +kE +kE +kE +kE +kE +kE +mV +mV +kE +kE +kE +kE +jS +hq +hq +hq +jS +qK +qK +qK +qK +qY +jS +hq +hq +hq +jS +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qX +qK +qK +jS +hq +hq +hq +jS +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qX +qK +jS +hq +hq +hq +jS +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qX +qK +qK +qK +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wh +vI +vI +vI +wh +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(129,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bH +ce +cA +cZ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +fY +gi +gz +gl +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 +gP +hq +hq +hq +gP +gP +kU +lA +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +kE +kE +kE +kE +kE +kE +kG +mU +kE +kD +kL +ld +kE +nj +kD +kE +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +rH +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +qX +qK +qZ +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +rH +qK +tz +qK +qK +qZ +qK +ty +qK +qK +qK +qX +qK +qZ +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +rH +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +qX +qK +qZ +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wH +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(130,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bI +cf +cB +da +bJ +bn +bJ +bJ +dp +eY +bJ +bJ +bn +bJ +fZ +gj +gA +gm +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 +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +qx +qz +hq +hq +hq +hq +wi +wt +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(131,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +bn +bn +bn +bJ +bJ +dq +eZ +bJ +bJ +bn +bn +bn +bn +bn +bn +aa +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(132,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +db +db +dO +el +bJ +dq +eZ +bJ +dt +fD +db +db +bn +bn +aa +aa +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +oc +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +oc +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +rV +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rV +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +tS +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tS +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +uY +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +uY +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(133,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bG +db +dp +dP +bJ +bJ +dq +eZ +bJ +bJ +fE +eY +db +gk +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +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 +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 +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 +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(134,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bH +db +dq +dO +bJ +bJ +dq +eZ +bJ +bJ +fD +eZ +db +gl +aa +aa +aa +aa +aa +hh +hz +hD +hD +hq +hq +hq +hq +hD +hD +hz +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +gP +gP +gP +gP +gP +gP +gP +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(135,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bI +db +dr +dQ +bJ +bJ +dq +eZ +bJ +bJ +fF +fa +db +gm +aa +aa +aa +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +gP +gP +kN +kN +kN +gP +md +gP +gP +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(136,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +db +db +dO +bJ +bJ +dr +fa +bJ +bJ +fD +db +db +bn +bn +aa +aa +aa +aa +hj +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +gP +gP +gP +jM +jM +jM +gP +kR +gP +gP +gP +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pe +oi +gP +no +pe +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +su +oi +gP +no +su +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ug +oi +gP +no +ug +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vj +oi +gP +no +vj +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(137,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +dc +ds +dR +bn +bJ +bJ +bJ +bJ +bn +dc +ds +dR +bn +bn +bn +aa +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hB +hq +hq +hq +gP +jM +jM +jM +jM +jM +jM +jM +jM +jM +gP +hq +hq +hq +hq +gP +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nk +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +qK +rW +qK +qK +qK +qK +qK +qK +qK +qK +qK +sY +qK +qK +sZ +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +qK +qX +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qX +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +nk +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(138,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +cC +dd +bJ +bJ +bn +bJ +bJ +bJ +bJ +bn +fG +fN +ga +bJ +bn +bn +bn +gX +hc +gX +hq +hq +hq +hE +hE +hE +hE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jy +jM +gP +kO +kO +kO +kO +me +gP +jM +jy +hq +hq +hq +hq +kU +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +rQ +qK +sd +qK +si +sv +sv +sv +sv +sv +sT +qK +qK +qZ +qK +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +qK +qK +tz +qK +qK +ra +qK +qK +qX +qK +qZ +qK +qK +qK +qK +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +qK +qK +qZ +qK +qK +qZ +qK +qK +qK +qK +qZ +qK +qK +qZ +qK +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +hh +xk +xk +xk +xk +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xu +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(139,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bo +bJ +bo +bJ +bJ +bJ +bJ +dN +bJ +bJ +bJ +bJ +dN +bJ +bJ +bJ +bJ +gB +bJ +bo +gP +hb +gP +hq +hq +hq +hn +hC +hC +hI +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +gP +kP +kP +kP +kP +gP +gP +gP +gP +hq +hq +hq +hq +mX +nD +nD +nD +oB +nD +nD +nD +oB +nD +nD +nD +oB +nD +nD +nD +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +qK +qX +qK +rW +sj +mJ +mJ +sK +mJ +mJ +sU +qK +sZ +qK +qK +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +qK +qK +qK +qK +qK +qK +qY +ua +qK +qK +qK +qK +ra +qK +qK +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +qK +qK +qK +qK +qK +qK +qK +vq +qK +qK +qK +qK +qK +qK +qK +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +vA +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +hi +xk +xk +xk +xk +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xv +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(140,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bo +bK +bo +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +gB +bK +gB +gQ +hc +gQ +hq +hq +hq +hD +hD +hD +hD +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jz +jM +gP +kQ +kQ +kQ +kQ +mf +gP +jM +jz +hq +hq +hq +hq +kU +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +qK +qZ +qK +sf +sk +sw +sw +sw +sw +sw +sV +sY +qK +qK +sY +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +qK +qK +rJ +ra +ua +qK +rJ +qZ +qX +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +qK +qK +qZ +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qZ +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +hj +xk +xk +xk +xk +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xw +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(141,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +cD +bJ +bJ +do +bn +ey +eN +fb +fr +bn +fH +bJ +bJ +bJ +bn +bn +bn +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +gP +jM +jM +jM +jM +jM +jM +jM +jM +jM +gP +hq +hq +hq +hq +nk +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +qK +qX +rW +qK +qK +qK +qK +qK +qK +qK +qK +qK +rQ +qK +qK +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +qK +qX +qK +qX +qY +qK +qK +qK +qK +qK +qK +qY +qK +qK +rH +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +nk +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(142,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +de +de +bn +bn +dd +eO +bJ +bJ +bn +bn +fO +fO +bn +bn +bn +aa +aa +aa +hh +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +gP +gP +gP +kR +gP +kR +gP +kR +gP +gP +gP +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pe +oi +gP +no +pe +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +su +oi +gP +no +su +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ug +oi +gP +no +ug +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vj +oi +gP +no +vj +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(143,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bG +cE +bJ +bJ +bn +em +bJ +bJ +bJ +fs +cc +bn +bJ +bJ +cc +gk +aa +aa +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +gP +gP +kS +gP +lB +gP +kS +gP +gP +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(144,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bI +cF +bJ +dt +bn +em +bJ +bJ +bJ +bJ +fy +bn +el +bJ +cc +gm +aa +aa +aa +aa +hj +hz +hE +hE +hq +hq +hq +hq +hE +hE +hz +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +gP +gP +gP +gP +gP +gP +gP +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(145,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +cG +bJ +du +bn +bn +bJ +bJ +bJ +cH +bn +bn +bJ +bJ +cc +bn +bn +aa +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +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 +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 +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 +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(146,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +cg +bJ +bJ +bJ +dS +bn +bn +bn +bn +bn +bn +bJ +bJ +bJ +bJ +gC +bn +bn +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +od +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +od +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +rX +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rX +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +tT +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tT +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +vk +oi +gP +no +vk +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(147,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +ch +cH +df +bJ +dT +bn +bL +bL +bL +bL +bn +fI +bJ +bJ +cH +gD +bn +bn +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +rx +rx +rx +rx +rx +rx +rD +rx +rx +rx +rx +rx +rD +rx +rx +rx +rx +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(148,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +bn +bn +bn +bn +bn +bM +ci +ci +dg +bn +bn +bn +bn +bn +bn +bn +bn +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 +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +mJ +mJ +mJ +mJ +mJ +nm +nm +nl +mJ +mJ +mJ +nl +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +rY +mD +rC +rC +rC +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +rx +rx +ry +rN +ry +ry +ry +ry +rx +ry +ry +rx +rx +rx +rx +rD +rx +rx +rx +mF +qz +hq +hq +hq +ut +ut +ut +hq +hq +hq +hq +hq +hq +hq +ms +mC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +qz +hq +hq +hq +hq +hq +wA +hq +wL +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(149,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bL +bL +bL +bL +bn +bn +aa +aa +aa +aa +aa +aa +bn +bn +bL +bL +bL +bL +bn +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 +gP +hq +hq +hq +gP +gP +kU +ll +kU +gP +mi +hq +hq +hq +gP +mJ +mJ +mJ +mJ +nl +mK +nm +nn +nm +nm +mJ +mJ +mJ +mK +nl +mK +mK +mK +mJ +mJ +mJ +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +mD +rC +rC +rC +rC +rC +rC +mD +mD +mD +mD +mD +rC +rC +rC +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rx +rD +rB +rz +rz +rz +rz +rz +rz +sy +rz +rz +rM +ry +ry +ry +rx +rx +ry +ry +ry +gP +hq +hq +hq +gP +gP +kU +uJ +kU +gP +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wK +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(150,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bM +ci +ci +dg +bn +aa +aa +aa +aa +aa +aa +aa +aa +bn +bM +ci +ci +dg +bn +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 +hh +hq +hq +hq +jQ +jM +jM +jM +jM +jM +jQ +hq +hq +hq +jQ +mJ +mJ +nl +mK +nm +oe +nm +oq +oq +oD +pz +nm +of +nm +mJ +mJ +nm +mJ +mJ +nl +mJ +jQ +hq +hq +hq +jQ +nl +mK +nm +oe +nm +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rY +mD +mD +rC +rC +rC +rC +rC +rC +mD +mD +rY +mD +rC +rC +rC +jQ +hq +hq +hq +jQ +tk +tk +tk +tk +tk +jQ +hq +hq +hq +jQ +ry +rB +rz +rz +rF +rA +rA +rE +rz +rz +rz +rz +rz +rz +rz +rz +rM +rB +rz +rz +rz +jQ +hq +hq +hq +jQ +kE +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wj +vI +vI +vI +xf +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(151,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hi +hq +hq +hq +jR +jM +jM +jM +jM +jM +jR +hq +hq +hq +jR +mJ +mK +mK +nm +oe +nm +nm +oq +oC +nF +nm +oq +oC +nm +nm +oq +oq +nm +mJ +mK +mJ +jR +hq +hq +hq +jR +mK +nm +oe +nm +nm +jR +hq +hq +hq +jR +rC +rC +rC +mD +mD +mD +rY +mD +mD +rC +rC +rC +rC +mD +rY +mD +mD +mD +rC +rC +rC +jR +hq +hq +hq +jR +tk +tr +tk +tk +tk +jR +hq +hq +hq +jR +rz +rz +rz +rK +ry +ry +rD +rx +rA +rA +rA +sn +sQ +rz +rz +rz +rz +rz +rz +rF +rA +jR +hq +hq +hq +jR +kE +uG +hc +hc +hc +jR +hq +hq +hq +jR +rC +rC +rC +rC +mD +mD +mD +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wk +vI +vI +vI +xg +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(152,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hj +hq +hq +hq +jS +jM +jM +jM +kg +kg +jS +hq +hq +hq +jS +mJ +mJ +mJ +nm +nm +nm +os +of +oq +oe +nm +oq +pp +oC +nm +nm +nm +oe +nm +mJ +mJ +jS +hq +hq +hq +jS +mJ +nm +nm +rb +os +jS +hq +hq +hq +jS +rC +rC +rC +mD +rY +mD +mD +rY +mD +rC +rC +rC +rC +mD +sL +mD +mD +rC +rC +rC +rC +jS +hq +hq +hq +jS +tk +tk +tk +tl +tk +jS +hq +hq +hq +jS +rz +rz +rz +rz +rz +rz +rM +rx +rD +rx +sb +rz +rz +rz +rF +rA +rA +rA +rA +rx +rx +jS +hq +hq +hq +jS +kE +uG +uG +hc +hc +jS +hq +hq +hq +jS +rC +rC +rC +rC +mD +rY +mD +mD +rY +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wl +vI +vI +vI +wl +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(153,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +gP +hq +hq +hq +gP +kf +jM +jM +kg +jM +jM +hq +hq +hq +gP +mJ +mJ +mJ +mJ +mJ +oq +oq +oq +oC +nm +nn +nm +nm +oq +nm +oC +nm +mJ +mJ +mK +mJ +gP +hq +hq +hq +gP +mJ +mJ +mJ +oq +oq +gP +hq +hq +hq +gP +rC +rC +rC +rC +rY +se +mD +rC +rY +rC +rC +rC +rC +rC +mD +rY +mD +rC +rC +rC +rC +gP +hq +hq +hq +gP +tk +tk +tk +tk +tk +gP +hq +hq +hq +gP +rA +rA +rI +rA +rE +rz +rz +rG +rx +ry +rB +rz +rF +rA +rx +rx +tU +rD +rx +rx +rx +gP +hq +hq +hq +gP +kE +hc +uG +hc +hc +gP +hq +hq +hq +gP +rC +rC +rC +rC +mD +mD +mD +mD +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +wj +vI +vI +vI +xh +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(154,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hh +hq +hq +hq +jQ +kg +jM +jM +lD +jM +mj +hq +hq +hq +jQ +mJ +mJ +nm +nn +mJ +mJ +oC +oq +os +pp +nm +oq +nm +nm +oq +nm +mJ +mJ +mK +mJ +mJ +jQ +hq +hq +hq +jQ +nm +nn +mJ +mJ +oC +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +tk +tk +tr +tk +tk +jQ +hq +hq +hq +jQ +rx +rx +rx +rx +rx +rE +rz +rM +rB +rz +rz +rz +rG +rx +rx +rx +rx +rx +rx +ry +ry +jQ +hq +hq +hq +jQ +kE +uH +hc +hc +hc +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rY +mD +rY +mD +rY +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wm +vI +vI +vI +xi +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(155,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hi +hq +hq +hq +jR +kg +jM +jM +kg +jM +mj +hq +hq +hq +mx +mJ +mJ +nm +nm +mJ +mJ +nm +nE +oq +oq +oC +nm +oq +pp +oq +nm +nm +mJ +nl +mJ +mJ +mx +hq +hq +hq +qD +nm +rb +mJ +mJ +nm +qD +hq +hq +hq +rw +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +rw +hq +hq +hq +te +tk +tk +tk +tk +tk +te +hq +hq +hq +tJ +rx +rx +rx +rD +rx +sb +rz +rz +rz +rz +rF +rA +rx +rx +rx +rD +rx +rx +rB +rz +rz +tJ +hq +hq +hq +jR +kE +kE +uG +hc +hc +jR +hq +hq +hq +uQ +rC +rC +rC +rC +rC +mD +mD +mD +mD +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +uQ +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wl +vI +vI +vI +wl +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(156,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hj +hq +hq +hq +jS +kg +jM +jM +lD +jM +mj +hq +hq +hq +jS +mJ +mJ +nn +nE +mJ +mJ +nm +nm +oq +nm +nm +oD +oq +oq +nm +mJ +mJ +mJ +mJ +mJ +nm +jS +hq +hq +hq +jS +nn +nE +mJ +mJ +nm +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +tl +tk +tk +tk +tk +jS +hq +hq +hq +jS +rx +rx +rD +rx +tU +rx +rA +rA +rA +rA +rx +tX +rD +rx +rx +rx +rx +rB +rz +rz +rF +jS +hq +hq +hq +jS +kE +kE +hc +hc +hc +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +mD +mD +mD +uZ +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wj +vI +vI +vI +xh +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(157,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +gP +hq +hq +hq +gP +kh +jM +jM +kg +jM +mj +hq +hq +hq +gP +mJ +mJ +nm +nm +mJ +mJ +nn +nm +mJ +nm +nE +nm +os +oC +os +nE +mJ +mJ +mJ +nm +oe +gP +hq +hq +hq +gP +nm +nm +mJ +nm +nn +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +tk +tk +tk +tk +tk +gP +hq +hq +hq +gP +ry +ry +ry +rx +rx +rx +rx +rx +ry +ry +ry +ry +ry +ry +rx +rx +rB +rz +rz +rF +rx +gP +hq +hq +hq +gP +kE +kE +uH +uG +hc +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +wm +vI +vI +vI +xi +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(158,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hh +hq +hq +hq +jQ +kh +jM +jM +kg +jM +mj +hq +hq +hq +jQ +mJ +mJ +nm +nF +nm +nm +nE +mJ +mJ +nm +mJ +nm +nm +oq +oq +nm +nm +nn +nF +nm +nm +kU +hq +hq +hq +jQ +nm +nF +nm +nm +nE +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +kU +hq +hq +hq +jQ +tk +tk +tA +tk +tr +jQ +hq +hq +hq +jQ +rz +rz +rz +rM +ry +ry +rN +rB +rz +rz +rz +rz +rz +rz +rM +rB +rz +rz +rF +rx +rx +kU +hq +hq +hq +jQ +kE +kE +kE +hc +hc +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +kU +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +wl +vI +vI +vI +wl +vG +hq +hq +hq +hh +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(159,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hi +hq +hq +hq +jR +kh +jM +jM +kg +jM +mj +hq +hq +hq +jR +mJ +mJ +mJ +nm +of +nm +os +mJ +mJ +nm +mJ +mJ +or +nm +oC +os +nm +nm +nm +nm +nm +mX +hq +hq +hq +jR +nm +nm +rb +nm +os +jR +hq +hq +hq +jR +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mX +hq +hq +hq +jR +tk +tk +tk +tk +tk +jR +hq +hq +hq +jR +rA +rE +rz +rz +rz +rz +rz +rz +rz +rF +rI +rA +rE +rz +rz +rz +rz +rF +rx +rx +rx +mX +hq +hq +hq +jR +kE +kE +kE +hc +hc +jR +hq +hq +hq +jR +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mX +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +vG +vG +vG +wK +vG +vG +vG +hq +hq +hq +hi +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(160,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hj +hq +hq +hq +jS +kh +jM +jM +kg +jM +mj +hq +hq +hq +jS +mJ +mJ +mJ +nm +nF +nm +nm +mJ +mJ +nm +of +mJ +nm +oq +nm +nm +mJ +mK +nm +nm +nm +kU +hq +hq +hq +jS +mJ +nm +nF +nm +nm +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +mD +rY +mD +mD +rY +mD +rC +rC +rC +rC +rC +rC +rC +rC +kU +hq +hq +hq +jS +tk +tr +tk +tk +tk +jS +hq +hq +hq +jS +rx +rD +rA +rA +rA +rI +rA +rA +sn +ry +ry +ry +rx +rA +rA +rA +rA +rx +rx +rD +rx +kU +hq +hq +hq +jS +kE +kE +kE +uG +hc +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +kU +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vI +vI +vG +vI +wF +vI +vG +hq +hq +hq +hj +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(161,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +gP +hq +hq +hq +gP +kh +jM +jM +kg +jM +mj +hq +hq +hq +gP +mJ +mJ +mJ +mJ +mJ +nm +nF +os +mJ +nm +pz +mJ +nn +nE +nm +mJ +mJ +mK +nm +nm +nF +gP +hq +hq +hq +gP +mJ +mJ +mJ +nm +nF +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +mD +mD +rY +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +tk +tk +tk +tD +tk +gP +hq +hq +hq +gP +rx +ry +ry +rx +rD +rx +tX +sb +rz +rz +rz +rz +rM +rD +rx +rx +rx +rx +rx +rx +rD +nk +hq +hq +hq +gP +kE +kE +kE +hc +uG +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rY +mD +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +jQ +vI +kU +vI +vI +vI +vG +hq +hq +hq +gP +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(162,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hh +hq +hq +hq +jQ +kg +jM +jM +kg +jM +mj +hq +hq +hq +jQ +mJ +mJ +mJ +mJ +mJ +mJ +nm +nm +mJ +mJ +nm +mJ +nm +or +nF +mJ +mJ +nm +nm +mJ +nm +jQ +hq +hq +hq +jQ +mJ +mJ +mJ +mJ +nm +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +rC +mD +mD +rY +sL +rY +mD +rC +rC +rC +rC +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +tk +tk +tk +tk +tk +jQ +hq +hq +hq +jQ +rB +rz +rz +rM +rx +rx +rN +rB +rz +rF +rE +rz +rz +rM +ry +rx +rx +rx +tU +rx +rx +jQ +hq +hq +hq +jQ +kE +kE +kE +hc +uG +jQ +hq +hq +hq +jQ +rC +rC +rC +mD +mD +uZ +rC +rC +rC +rC +rC +uZ +mD +mD +mD +mD +mD +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jR +vI +wB +wv +vI +vI +vG +hq +hq +hq +hh +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(163,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hi +hq +hq +hq +jR +kg +jM +jM +kg +jM +mj +hq +hq +hq +mx +mJ +mJ +nm +nm +mJ +nm +oD +nm +mJ +mJ +nm +mJ +nm +nm +mJ +mJ +oe +nm +mJ +mJ +mJ +mx +hq +hq +hq +qD +nm +rb +mJ +nm +oD +qD +hq +hq +hq +rw +rC +rC +rC +rC +rC +rC +rC +mD +rY +mD +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rw +hq +hq +hq +te +tk +tk +tk +tk +tk +te +hq +hq +hq +tJ +rz +rz +rz +rz +rM +rB +rz +rz +rz +rG +rx +rE +rz +rz +rz +rM +rx +rD +rx +rD +rx +tJ +hq +hq +hq +jR +kE +kE +kE +hc +hc +jR +hq +hq +hq +uQ +rC +rC +rC +mD +rY +mD +rC +rC +rC +rC +rC +mD +rY +mD +mD +rY +mD +rC +rC +rC +rC +uQ +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +jS +vI +kU +vI +vI +vI +vG +hq +hq +hq +hi +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(164,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hj +hq +hq +hq +jS +kg +jM +jM +kg +jM +mj +hq +hq +hq +jS +mJ +mJ +nm +nm +nm +nm +nm +or +nm +mJ +mJ +mJ +mJ +of +nm +mJ +nm +mK +mJ +mJ +mJ +jS +hq +hq +hq +jS +nm +nm +nm +nm +nm +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +tk +tl +tk +tr +tk +jS +hq +hq +hq +jS +rz +rF +rE +rz +rz +rz +rz +rF +rA +rx +rx +rx +rA +rE +rz +rz +rM +ry +rx +rx +rx +jS +hq +hq +hq +jS +kE +kE +kE +kE +hc +jS +hq +hq +hq +jS +rC +rC +mD +mD +mD +rY +mD +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vI +vI +vG +vI +vI +vI +vG +hq +hq +hq +hj +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(165,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +gP +hq +hq +hq +gP +kf +jM +jM +kg +jM +jM +hq +hq +hq +gP +mJ +mJ +nm +mJ +nm +or +nn +nF +nm +nl +mJ +mJ +nl +nl +mJ +mJ +nm +mJ +nm +nm +mJ +gP +hq +hq +hq +gP +nm +mJ +nm +or +nn +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +tk +tk +tk +tk +tk +gP +hq +hq +hq +gP +rz +rG +rx +rE +rz +rz +rz +rM +ry +ry +tU +rx +rD +rx +rE +rz +rz +rz +rM +rx +rx +gP +hq +hq +hq +gP +kE +kE +kE +kE +uG +gP +hq +hq +hq +gP +rC +rC +mD +mD +rY +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +vI +vI +vI +vG +hq +hq +hq +gP +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(166,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hh +hq +hq +hq +jQ +jM +jM +jM +kg +lL +jQ +hq +hq +hq +jQ +mK +mK +mJ +mJ +nm +os +oD +os +nm +mJ +mJ +nl +mJ +mJ +mJ +nm +oe +nm +nm +nl +mJ +jQ +hq +hq +hq +jQ +mJ +mJ +nm +os +oD +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +tk +tk +tk +tk +tk +jQ +hq +hq +hq +jQ +rA +rx +rD +rx +rA +rE +rz +rz +rz +rz +rM +ry +rx +ry +ry +sQ +rz +rz +rz +rM +rx +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +jQ +hq +hq +hq +jQ +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wn +vI +vI +vI +xj +vG +hq +hq +hq +hh +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(167,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hi +hq +hq +hq +jR +jM +jM +jM +jM +jM +jR +hq +hq +hq +jR +mJ +mK +mJ +nm +nm +nm +nm +nm +nF +nm +mJ +mJ +mJ +mJ +nm +nm +nm +nn +mK +mJ +mJ +jR +hq +hq +hq +jR +mJ +nm +nm +nm +nm +jR +hq +hq +hq +jR +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jR +hq +hq +hq +jR +tk +tk +tk +tk +tk +jR +hq +hq +hq +jR +rx +rD +rx +rN +ry +rB +rz +rz +rz +rz +rz +rz +sy +rz +rz +rz +rz +rz +rz +rz +rM +jR +hq +hq +hq +jR +kE +kE +kE +kE +kE +jR +hq +hq +hq +jR +rC +rC +rC +rC +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wo +vI +vI +vI +xj +vG +hq +hq +hq +hi +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(168,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +hj +hq +hq +hq +jS +jM +jM +jM +jM +jM +jS +hq +hq +hq +jS +mJ +mJ +nl +nm +nm +os +nm +or +nm +nm +nm +mJ +nl +mJ +nm +nn +nm +nm +mJ +mJ +mJ +jS +hq +hq +hq +jS +mJ +nm +nm +nm +mJ +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +tk +tr +tk +tk +tk +jS +hq +hq +hq +jS +ry +ry +rB +rz +rz +rz +rz +rF +rA +rA +rE +rz +rz +rz +sW +rz +rz +rz +sW +rz +rz +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wp +vI +vI +vI +xj +vG +hq +hq +hq +hj +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(169,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +gP +hq +hq +hq +gP +gP +kU +ll +kU +gP +mi +hq +hq +hq +gP +mJ +mJ +nm +nm +mK +mK +nm +nm +nm +mJ +nl +mJ +mJ +mJ +oe +nm +nl +mK +mJ +mJ +mJ +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rz +rz +rz +rz +rF +rA +rA +rx +rx +rD +rx +rA +rA +rI +rx +rA +rA +rA +rx +rA +rA +gP +hq +hq +hq +gP +gP +kU +uJ +kU +gP +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wK +vG +vG +vG +hq +hq +hq +gP +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(170,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +mJ +mJ +mJ +mJ +nl +mJ +mJ +nm +mJ +mJ +mJ +mJ +nm +nm +nm +mJ +mJ +mJ +mJ +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +rA +rA +rA +rD +rx +rx +rD +rx +rx +rx +rx +rx +rx +rx +rx +rD +rx +rx +rx +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +qx +qz +hq +hq +hq +hq +hq +wt +hq +hq +hq +hq +hq +hq +hq +mr +mz +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 +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(171,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +rD +rx +rx +rx +rx +rx +rx +rD +rx +rx +rD +rx +rx +rx +rx +rx +rD +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +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 +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(172,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +od +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +od +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +rX +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rX +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +tT +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tT +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +vk +oi +gP +no +vk +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(173,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +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 +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 +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 +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hh +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(174,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hh +hA +hD +hD +hq +hq +hq +hq +hD +hD +hA +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jm +ka +jP +jp +jm +ka +jP +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +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 +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hi +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(175,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +jB +jC +kb +jE +jp +jH +kb +mg +jF +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +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 +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hj +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(176,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hj +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jm +jC +jN +kc +jp +jp +jp +kc +jo +mg +jP +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pf +oi +gP +no +pf +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sx +oi +gP +no +sx +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +uh +oi +gP +no +uh +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(177,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jn +jD +jO +kd +kT +jp +jO +kd +kT +jn +jD +hq +hq +hq +hq +gP +nG +og +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +qe +qn +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +mD +uj +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(178,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gX +hc +gX +hq +hq +hq +hE +hE +hE +hE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jo +jE +jp +ke +jp +jp +jp +ke +jp +jH +jN +hq +hq +hq +hq +kU +nH +nG +og +ot +ot +ot +ot +ot +ot +ot +ot +ot +qe +qn +qr +kU +hq +hq +hq +hq +hq +hq +jX +qE +qM +qM +qM +rg +mn +hq +hq +hq +hq +hq +hq +kU +rC +rC +rC +rC +rC +rC +sl +rC +rC +rC +rC +sl +rC +rC +rC +kU +hq +hq +hq +hq +hq +hq +jX +qE +qM +qM +qM +rg +mn +hq +hq +hq +hq +hq +hq +kU +mD +mD +mD +mD +rC +rC +mD +mD +mD +rC +rC +rC +uj +mD +mD +kU +hq +hq +hq +hq +hq +hq +jX +qE +qM +qM +qM +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qM +qM +qM +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qM +qM +qM +rg +mn +hq +hq +hq +hq +hq +hq +hh +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(179,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gP +hb +gP +hB +hq +hq +hn +hC +hC +hI +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jp +jp +jp +jp +jp +lC +jp +jp +jp +jp +jp +hq +hq +hq +hq +mX +nI +nI +ou +ot +ot +pg +pg +pg +pg +ot +ot +ot +qf +nI +nI +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +rC +rC +rC +rC +sl +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +mD +mD +mD +rC +rC +mD +uj +mD +uj +mD +rC +rC +mD +mD +mD +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +hi +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(180,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +gX +hc +gX +hq +hq +hq +hD +hD +hD +hD +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jm +jF +jp +kc +jp +jp +jp +kc +jp +jB +jP +hq +hq +hq +hq +kU +nJ +nK +oh +ot +ot +ot +ot +ot +ot +ot +ot +ot +qg +qo +nH +kU +hq +hq +hq +hq +hq +hq +jX +qG +qM +qM +qM +rj +mn +hq +hq +hq +hq +hq +hq +kU +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +sl +rC +rC +rC +kU +hq +hq +hq +hq +hq +hq +jX +qG +qM +qM +qM +rj +mn +hq +hq +hq +hq +hq +hq +kU +mD +mD +rC +rC +rC +rC +mD +mD +mD +rC +rC +uj +mD +mD +mD +kU +hq +hq +hq +hq +hq +hq +jX +qG +qM +qM +qM +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qM +qM +qM +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qM +qM +qM +rj +mn +hq +hq +hq +hq +hq +hq +hj +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(181,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ai +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 +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jn +jD +jO +kd +kT +jp +jO +kd +kT +jn +jD +hq +hq +hq +hq +gP +nK +oh +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +qg +qo +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(182,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hh +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jo +jG +jP +ke +jp +jp +jp +ke +jm +mh +jN +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pf +oi +gP +no +pf +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sx +oi +gP +no +sx +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +tW +oi +gP +no +uh +oi +gP +no +uh +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(183,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +jH +jG +ka +jF +jp +jB +ka +mh +jE +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +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 +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hh +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(184,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +hj +hA +hE +hE +hq +hq +hq +hq +hE +hE +hA +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jo +kb +jN +jp +jo +kb +jN +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +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 +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hi +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(185,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +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 +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 +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 +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hj +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(186,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +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 +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(187,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +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 +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(188,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +je +jj +jk +jl +jA +hq +hq +hq +hq +hq +hq +hq +jk +jl +jA +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +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 +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(189,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +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 +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 +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +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 +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(190,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +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 +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +"} +(191,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 +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(192,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 +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(193,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 +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(194,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 +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(195,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 +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(196,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 +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 +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(197,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 +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 +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 +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 +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 +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 +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 +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 +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 +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/tether/submaps/tether_misc.dmm b/maps/tether/submaps/tether_misc.dmm index d5fef965ee..9563a5d194 100644 --- a/maps/tether/submaps/tether_misc.dmm +++ b/maps/tether/submaps/tether_misc.dmm @@ -1,52 +1,8 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_l" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/supply/dock) -"ab" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/supply/dock) -"ac" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_r" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/supply/dock) -"ad" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_r"; - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/trade/centcom) -"ae" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/trade/centcom) -"af" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_l"; - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/trade/centcom) +/obj/machinery/vending/coffee, +/turf/unsimulated/beach/sand, +/area/beach) "ag" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -3536,6 +3492,13 @@ }, /turf/simulated/shuttle/plating/airless, /area/shuttle/trade/centcom) +"iO" = ( +/obj/fiftyspawner/rods, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) "iP" = ( /obj/machinery/light{ dir = 4 @@ -6801,6 +6764,18 @@ icon_state = "lino" }, /area/antag/antag_base) +"pF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) "pI" = ( /obj/machinery/door/airlock/vault{ name = "War Armory"; @@ -6926,12 +6901,12 @@ /obj/item/weapon/shield/energy, /obj/item/weapon/shield/energy, /obj/item/weapon/shield/energy, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword/red, +/obj/item/weapon/melee/energy/sword/red, +/obj/item/weapon/melee/energy/sword/red, +/obj/item/weapon/melee/energy/sword/red, +/obj/item/weapon/melee/energy/sword/red, +/obj/item/weapon/melee/energy/sword/red, /obj/machinery/recharger/wallcharger{ pixel_x = 5; pixel_y = 32 @@ -7481,6 +7456,15 @@ /area/shuttle/antag_space/base{ base_turf = /turf/unsimulated/floor/techfloor_grid }) +"qK" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) "qL" = ( /obj/effect/floor_decal/corner/yellow{ dir = 6 @@ -9614,6 +9598,15 @@ icon_state = "floor_red" }, /area/syndicate_station/start) +"ui" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/combat, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) "uj" = ( /obj/structure/closet, /obj/item/weapon/reagent_containers/food/snacks/tastybread, @@ -10010,8 +10003,2853 @@ icon_state = "floor_red" }, /area/syndicate_station/start) +"uU" = ( +/obj/item/weapon/tray{ + pixel_y = 5 + }, +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"uX" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"uY" = ( +/obj/structure/table/standard, +/obj/random/projectile, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"uZ" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"vq" = ( +/obj/structure/flight_right{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"vs" = ( +/obj/effect/floor_decal/asteroid, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"vt" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"vu" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"vC" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/machinery/computer/security, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"vG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"vI" = ( +/obj/effect/landmark{ + name = "voxstart" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"vK" = ( +/obj/structure/table/rack, +/obj/item/weapon/grenade/empgrenade, +/obj/item/weapon/grenade/flashbang, +/obj/item/weapon/grenade/spawnergrenade/manhacks, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"vX" = ( +/obj/item/weapon/bedsheet/clown, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"vY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 9 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "ninja_shuttle"; + name = "interior access button"; + pixel_x = -25; + pixel_y = 25; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"vZ" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"wa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"wb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"we" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"wi" = ( +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"wj" = ( +/obj/structure/toilet, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"wq" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"wv" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/machinery/button/remote/blast_door{ + id = "ninjawindow"; + name = "remote shutter control"; + pixel_x = 0; + pixel_y = -25; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"wA" = ( +/obj/structure/table/bench/wooden, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"wE" = ( +/obj/item/weapon/bedsheet/green, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"wQ" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 1 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/ninja_dojo/start) +"wS" = ( +/obj/item/robot_parts/l_leg, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"wU" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"wZ" = ( +/turf/unsimulated/floor{ + icon_state = "sandwater" + }, +/area/beach) +"xf" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"xm" = ( +/obj/item/clothing/glasses/night/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"xt" = ( +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"xD" = ( +/obj/structure/flight_left{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"xG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"xL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"xQ" = ( +/obj/machinery/computer/shuttle_control/web/ninja{ + dir = 1; + icon = 'icons/obj/computer.dmi'; + icon_state = "flightcomp_center" + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"xR" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"xV" = ( +/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/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"xW" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"xX" = ( +/obj/effect/landmark{ + name = "ninjastart" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"ya" = ( +/obj/structure/table/glass, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"yf" = ( +/obj/structure/table/bench/wooden, +/obj/effect/landmark{ + name = "ninjastart" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"yl" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"yv" = ( +/obj/item/broken_device, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"yw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"yA" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 740 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"yD" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken3" + }, +/area/skipjack_station) +"yI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"yL" = ( +/obj/item/weapon/storage/box, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"yM" = ( +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"zb" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger{ + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"zn" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/crossbow, +/obj/item/stack/rods{ + amount = 10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"zs" = ( +/obj/item/weapon/bedsheet/rd, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"zv" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"zz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/beach) +"zL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"zT" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"Ab" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/storage/firstaid/clotting, +/obj/item/stack/medical/splint, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Ac" = ( +/obj/structure/closet/crate, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"Af" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/space, +/area/space) +"Ai" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Ak" = ( +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"At" = ( +/obj/machinery/sleep_console, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"Av" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Aw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Ax" = ( +/turf/unsimulated/beach/coastline{ + density = 1; + opacity = 1 + }, +/area/beach) +"Az" = ( +/turf/unsimulated/beach/coastline, +/area/beach) +"AA" = ( +/obj/item/clothing/mask/gas/swat/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"AB" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/stealth, +/obj/item/clothing/suit/space/vox/stealth, +/obj/item/clothing/head/helmet/space/vox/stealth, +/obj/item/clothing/head/helmet/space/vox/stealth, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"AF" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"AJ" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/supply/dock) +"AN" = ( +/obj/item/weapon/gun/launcher/pneumatic, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"AP" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"AV" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/skipjack_station) +"AY" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"AZ" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/tank/oxygen, +/obj/random/multiple/voidsuit, +/obj/random/multiple/voidsuit, +/obj/random/energy, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Bd" = ( +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"Be" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken1" + }, +/area/skipjack_station) +"Bg" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Bh" = ( +/obj/machinery/door/morgue, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Bi" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Bj" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_northeast_lock"; + locked = 0; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Bk" = ( +/obj/item/weapon/gun/energy/plasmastun, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Bo" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Bw" = ( +/turf/unsimulated/beach/water, +/area/beach) +"BC" = ( +/obj/machinery/teleport/station, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"BD" = ( +/obj/effect/overlay/palmtree_r, +/turf/unsimulated/beach/sand, +/area/beach) +"BE" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/radio/uplink, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"BH" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1331; + id_tag = "skipjack_shuttle"; + pixel_x = -24; + req_access = list(150); + tag_airpump = "vox_east_vent"; + tag_chamber_sensor = "vox_east_sensor"; + tag_exterior_door = "vox_northeast_lock"; + tag_interior_door = "vox_southeast_lock" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "vox_east_vent" + }, +/obj/machinery/light/small, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"BN" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"BP" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/trade/centcom) +"Cf" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Cg" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "vox_west_sensor"; + pixel_x = 25 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Ch" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"Ci" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l"; + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/trade/centcom) +"Cj" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/balaclava, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Cl" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/obj/random/soap, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"Cu" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"CE" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"CG" = ( +/obj/structure/flora/tree/pine, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"CK" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"Db" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "ninja_shuttle_sensor"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"Dd" = ( +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Dg" = ( +/obj/machinery/shower{ + dir = 8; + icon_state = "shower"; + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower/medical, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"Dk" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hop, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"Dw" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/chips, +/turf/unsimulated/beach/sand, +/area/beach) +"Dx" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"DC" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/chem_dispenser/ninja, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"DF" = ( +/obj/item/device/suit_cooling_unit, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"DK" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/carapace, +/obj/item/clothing/suit/space/vox/carapace, +/obj/item/clothing/head/helmet/space/vox/carapace, +/obj/item/clothing/head/helmet/space/vox/carapace, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"DM" = ( +/obj/structure/kitchenspike, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"DO" = ( +/obj/structure/flight_left, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"DZ" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"Ec" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"Eo" = ( +/obj/structure/closet/crate, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Ep" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas/swat/vox, +/obj/item/clothing/mask/gas/swat/vox, +/obj/item/clothing/mask/gas/swat/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Es" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Ev" = ( +/obj/structure/table/rack, +/obj/item/clothing/glasses/thermal/plain/monocle, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Ew" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"EA" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"EF" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"EH" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/blue, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"EN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"EU" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"EX" = ( +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"EZ" = ( +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Fa" = ( +/obj/structure/table/standard, +/turf/unsimulated/beach/sand, +/area/beach) +"Fl" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"Fs" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Fw" = ( +/obj/item/weapon/rig/light/stealth, +/obj/structure/table/rack, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"FE" = ( +/obj/structure/flight_right, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"FF" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"FH" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "endgame_exit" + }, +/obj/item/toy/plushie/mouse{ + desc = "A plushie of a small fuzzy rodent."; + name = "Woodrat" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"FM" = ( +/obj/item/target, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"FN" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/material/sword/katana, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"FO" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"FQ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"FV" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"FX" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/adv, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"Ge" = ( +/obj/machinery/computer/shuttle_control/web/heist{ + icon = 'icons/obj/computer.dmi' + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Gi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"Gk" = ( +/obj/structure/table/steel, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Gq" = ( +/turf/unsimulated/wall, +/area/beach) +"Gw" = ( +/obj/effect/overlay/palmtree_l, +/turf/unsimulated/beach/sand, +/area/beach) +"Gx" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/space) +"Gz" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless, +/area/skipjack_station/start) +"He" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Hf" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Hg" = ( +/obj/structure/table/rack, +/obj/random/rigsuit, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Hm" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Hq" = ( +/obj/machinery/space_heater, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"HD" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"HJ" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel, +/obj/item/weapon/surgical/FixOVein, +/obj/item/stack/nanopaste, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"HL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"HN" = ( +/obj/structure/table/rack, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"HS" = ( +/obj/item/robot_parts/head, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"HX" = ( +/obj/machinery/recharger{ + pixel_y = 0 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Id" = ( +/turf/simulated/mineral, +/area/skipjack_station) +"Ig" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"Ik" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/turf/unsimulated/beach/sand, +/area/beach) +"Il" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "asteroid_dug" + }, +/area/skipjack_station) +"Ip" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/supply/dock) +"Ir" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 2; + start_pressure = 740.5 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"Ix" = ( +/obj/item/weapon/bedsheet/hos, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"Iy" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_robes, +/obj/item/clothing/under/vox/vox_robes, +/obj/item/clothing/under/vox/vox_robes, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"IA" = ( +/obj/machinery/space_heater, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken3" + }, +/area/ninja_dojo/dojo) +"IC" = ( +/obj/structure/table/standard, +/obj/item/device/paicard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"ID" = ( +/obj/item/pizzabox/meat, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"IG" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"IL" = ( +/obj/item/target/syndicate, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"IM" = ( +/obj/machinery/door/airlock/external{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"IP" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/balaclava/tactical{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/mask/balaclava, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"IR" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"IS" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "vox_east_sensor"; + pixel_x = -25 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"IW" = ( +/obj/structure/table/standard, +/obj/item/weapon/handcuffs/legcuffs, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"Jc" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/ninja_dojo/start) +"Je" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"Jg" = ( +/obj/item/weapon/bedsheet/rainbow, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"Ji" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/fabricator/energy_net, +/obj/item/rig_module/vision/multi, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"Jk" = ( +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"Jp" = ( +/obj/structure/mirror/raider{ + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"Jq" = ( +/obj/structure/ore_box, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Jt" = ( +/obj/item/clothing/mask/gas/swat{ + desc = "A close-fitting mask clearly not made for a human face."; + name = "\improper alien mask" + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Ju" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"Jv" = ( +/obj/structure/table/wooden_reinforced, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Jz" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/cautery, +/obj/item/weapon/surgical/retractor, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/syringe, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"JE" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"JJ" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"JK" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "vox_east_control"; + pixel_x = 22; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"JW" = ( +/turf/unsimulated/beach/water{ + density = 1; + opacity = 1 + }, +/area/beach) +"JX" = ( +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"JY" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "vox_west_control"; + pixel_x = -22; + req_one_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Kh" = ( +/obj/item/weapon/bedsheet/orange, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"KH" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/computer/station_alert, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"KL" = ( +/obj/structure/table/rack, +/obj/item/weapon/melee/energy/sword/pirate, +/obj/item/clothing/suit/space/pirate, +/obj/item/clothing/suit/space/pirate, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/pinpointer/shuttle/heist, +/obj/item/weapon/pinpointer/shuttle/heist, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"KN" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"KT" = ( +/obj/machinery/washing_machine, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"KX" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"KZ" = ( +/obj/machinery/vending/hydroseeds, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Lb" = ( +/obj/structure/table/steel, +/obj/item/device/radio/uplink, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"Li" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1331; + id_tag = "vox_east_vent" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Lm" = ( +/obj/machinery/floodlight, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Ly" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Lz" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/item/weapon/tank/nitrogen, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"LH" = ( +/obj/machinery/shower{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"LI" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/pressure, +/obj/item/clothing/suit/space/vox/pressure, +/obj/item/clothing/head/helmet/space/vox/pressure, +/obj/item/clothing/head/helmet/space/vox/pressure, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"LJ" = ( +/obj/item/seeds/potatoseed, +/obj/item/seeds/potatoseed, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/beartrap, +/obj/structure/table/steel, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"LN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"LQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"LT" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_southeast_lock"; + locked = 0; + req_access = list(150) + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"LY" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/skipjack_station) +"Mg" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/skipjack_station) +"Ml" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/ninja_dojo/start) +"Mq" = ( +/obj/structure/table/standard, +/obj/item/weapon/deck/cards, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"Ms" = ( +/obj/item/xenos_claw, +/obj/item/organ/internal/brain/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Mx" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -28; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"MB" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/paicard, +/obj/item/device/pda/syndicate, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"MO" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"MQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Ng" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken1" + }, +/area/ninja_dojo/dojo) +"Nj" = ( +/obj/item/clothing/head/collectable/paper, +/turf/unsimulated/beach/sand, +/area/beach) +"Nk" = ( +/obj/structure/table/standard, +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"No" = ( +/obj/item/weapon/beach_ball, +/turf/unsimulated/beach/sand, +/area/beach) +"Np" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Ns" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1331; + id_tag = "ninja_shuttle_outer"; + name = "Ship External Hatch"; + req_access = list(150) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "blastninja"; + name = "Outer Airlock"; + opacity = 0 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"Nt" = ( +/turf/unsimulated/beach/sand{ + density = 1; + opacity = 1 + }, +/area/beach) +"Ny" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"Nz" = ( +/turf/unsimulated/wall, +/area/ninja_dojo/dojo) +"ND" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"NT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"NY" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/weapon/card/emag, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Od" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Oo" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/skipjack_station/start) +"Ow" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/mounted/energy_blade, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"OF" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/steel, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"OH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"OK" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"OQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"OX" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/item/weapon/tool/crowbar, +/obj/item/device/suit_cooling_unit, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"OZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Pi" = ( +/obj/item/device/suit_cooling_unit, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"Pm" = ( +/obj/item/weapon/gun/launcher/crossbow, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Po" = ( +/obj/effect/landmark{ + name = "voxstart" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken2" + }, +/area/skipjack_station) +"Pt" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/head/pirate, +/obj/item/clothing/glasses/thermal/plain/monocle, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Pw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"PI" = ( +/turf/unsimulated/mineral, +/area/ninja_dojo/dojo) +"PK" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/medic, +/obj/item/clothing/suit/space/vox/medic, +/obj/item/clothing/head/helmet/space/vox/medic, +/obj/item/clothing/head/helmet/space/vox/medic, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"PL" = ( +/obj/structure/table/steel, +/obj/item/device/pda/syndicate, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"PQ" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "vox_west_control"; + req_one_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"PS" = ( +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"PX" = ( +/obj/machinery/computer/station_alert, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"PY" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + tag_airpump = "vox_west_vent"; + tag_exterior_door = "vox_northwest_lock"; + frequency = 1331; + id_tag = "vox_west_control"; + tag_interior_door = "vox_southwest_lock"; + pixel_x = 24; + req_access = list(150); + tag_chamber_sensor = "vox_west_sensor" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1331; + id_tag = "vox_west_vent" + }, +/obj/machinery/light/small, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Qb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Qw" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Dooruranium.dmi'; + icon_state = "door_closed"; + name = "Sealed Door" + }, +/area/ninja_dojo/dojo) +"QB" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"QC" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"QI" = ( +/obj/item/robot_parts/robot_suit, +/obj/item/robot_parts/r_leg, +/obj/item/robot_parts/r_arm, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"QJ" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"QT" = ( +/obj/structure/table/steel, +/obj/item/weapon/deck/cards, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"QU" = ( +/turf/simulated/mineral, +/area/ninja_dojo/dojo) +"QZ" = ( +/obj/machinery/computer/teleporter, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"Ra" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"Rb" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"Rn" = ( +/obj/item/weapon/storage/box/syndie_kit/spy, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"Rp" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"RB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"RN" = ( +/obj/structure/inflatable, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"RU" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"RX" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Sc" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"St" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1331; + id_tag = "ninja_shuttle"; + pixel_x = 0; + pixel_y = -25; + req_access = list(150) + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "ninja_shuttle_pump" + }, +/obj/machinery/button/remote/blast_door{ + id = "blastninja"; + name = "ship lockdown control"; + pixel_x = -25 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"Sv" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = 32; + pixel_y = 0; + req_access = list(150) + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Sy" = ( +/obj/machinery/button/remote/blast_door{ + id = "skipjackshutters"; + name = "remote shutter control"; + req_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"SI" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/glasses/square{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"SJ" = ( +/obj/item/clothing/head/xenos, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"SL" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"SM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"SU" = ( +/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/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Te" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Tg" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/skipjack_station) +"Tn" = ( +/obj/structure/table/standard, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/head/collectable/petehat{ + pixel_y = 5 + }, +/turf/unsimulated/beach/sand, +/area/beach) +"Ts" = ( +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"Tv" = ( +/obj/structure/closet/crate, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Tw" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"TF" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "endgame_exit" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"TG" = ( +/obj/effect/landmark{ + name = "endgame_exit" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"TL" = ( +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"TO" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/flame/candle, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Ue" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"Un" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1331; + id_tag = "ninja_shuttle_inner"; + name = "Ship Internal Hatch"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"Uq" = ( +/obj/item/weapon/gun/energy/sonic, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Uy" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"UB" = ( +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"UK" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r"; + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/trade/centcom) +"UL" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/clothing/shoes/magboots, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"UO" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw{ + pixel_y = 8 + }, +/obj/item/weapon/surgical/hemostat, +/obj/item/weapon/surgical/scalpel, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Vx" = ( +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"VA" = ( +/obj/item/pizzabox/meat, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"VC" = ( +/turf/unsimulated/beach/sand, +/area/beach) +"VG" = ( +/obj/item/clothing/head/philosopher_wig, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"VH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/fortunecookie, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"VT" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"VW" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"Wa" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Wf" = ( +/turf/unsimulated/wall, +/area/skipjack_station) +"Wg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"Wn" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_northwest_lock"; + locked = 0; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Wr" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_southwest_lock"; + locked = 0; + req_access = list(150) + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Ww" = ( +/obj/structure/inflatable, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Wx" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"Wy" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"WD" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"WG" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"WM" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1331; + id_tag = "vox_west_vent" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"WX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"WY" = ( +/obj/item/target/alien, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken2" + }, +/area/ninja_dojo/dojo) +"Xo" = ( +/obj/structure/table/steel, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Xq" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"Xt" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/spikethrower, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Xu" = ( +/obj/machinery/door/morgue, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"XF" = ( +/obj/item/weapon/gun/launcher/spikethrower, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"XG" = ( +/obj/item/weapon/tool/wrench, +/obj/item/weapon/mop, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"XI" = ( +/mob/living/simple_mob/animal/passive/tindalos, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"XL" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/simulated/mineral, +/area/space) +"XO" = ( +/obj/structure/signpost, +/turf/unsimulated/beach/sand, +/area/beach) +"XT" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/item/weapon/soap/syndie, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"XW" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/multiple/voidsuit, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"XY" = ( +/obj/structure/closet, +/turf/unsimulated/beach/sand, +/area/beach) +"Yd" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"Ye" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"Yf" = ( +/obj/structure/table/rack, +/obj/item/weapon/material/harpoon, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/random/rigsuit, +/obj/random/multiple/voidsuit, +/obj/random/multiple/voidsuit, +/obj/random/energy, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Yi" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"Yj" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/supply/dock) +"Yn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Yp" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/recharger{ + pixel_y = 0 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Yq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Yz" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/random/tech_supply, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"YA" = ( +/obj/structure/bed/chair/office/dark, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"YS" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"YX" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 740 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Za" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "vox_east_control"; + req_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"Zm" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Zo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Zu" = ( +/obj/machinery/light/small, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Zv" = ( +/obj/item/weapon/ore, +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"ZA" = ( +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"ZB" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/ninja_dojo/start) +"ZI" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/darkmatter, +/obj/item/weapon/gun/energy/darkmatter, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"ZL" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/simulated/mineral, +/area/space) +"ZR" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"ZY" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"ZZ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/space) (1,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq ap ap ap @@ -10064,97 +12902,96 @@ 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 -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 -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 -ap -ap -ap -ap -ap +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Qw +Qw +Nz +Nz +Nz +Nz +Nz +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +XL +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af "} (2,1,1) = {" +aq +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc ap +aq ap ap ap @@ -10207,6 +13044,60 @@ ap ap ap ap +Nz +Wy +JE +xf +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Bg +Bg +OK +Fw +Ac +DC +HD +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10226,77 +13117,44 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (3,1,1) = {" +aq +uc +ue +ue +uf +ue +ue +ue +uf +ue +ue +uc ap +aq +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp ap ap ap @@ -10328,6 +13186,59 @@ ap ap ap ap +Nz +BC +JE +xf +Nz +yM +yM +yM +CG +yM +yM +vs +yM +yM +yM +yM +yM +yM +Nz +Bg +Bg +QC +xf +xf +YA +Ow +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10341,104 +13252,31 @@ ap ap ap ap +aB 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 -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -ap -ap +Af "} (4,1,1) = {" +aq +uc +uf +uf +uf +uf +uf +uf +uf +uf +uf +uc ap +aq +gp ap ap ap @@ -10446,6 +13284,10 @@ ap ap ap ap +iE +kw +kM +iE ap ap ap @@ -10454,6 +13296,7 @@ ap ap ap ap +gp ap ap ap @@ -10485,6 +13328,58 @@ ap ap ap ap +Nz +QZ +JE +xf +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Bg +Bg +OK +Pi +yv +Yz +Ji +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10499,94 +13394,43 @@ ap ap ap ap +aB +aB +aB ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -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 -mv -ap -ap +Af "} (5,1,1) = {" +aq +uc +ue +ue +uf +ue +ue +ue +uf +ue +ue +uc ap +aq +gp ap ap ap ap ap ap +iE +iE +kx +kN +iE +iE ap ap ap @@ -10594,6 +13438,7 @@ ap ap ap ap +gp ap ap ap @@ -10625,6 +13470,53 @@ ap ap ap ap +Nz +Nz +QC +Nz +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +CG +yM +yM +OK +Bg +Bg +Nz +Nz +Nz +Nz +Nz +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10643,92 +13535,44 @@ ap ap ap ap +aB +aB +aB +aB ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -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 -mv -ap -ap +Af "} (6,1,1) = {" +aq +uc +uf +uf +uf +uf +ug +uf +uf +uf +uf +uc ap +aq +gp ap ap ap ap ap ap +kh +kn +jH +kO +kZ +lj ap ap ap @@ -10736,6 +13580,7 @@ ap ap ap ap +gp ap ap ap @@ -10764,6 +13609,54 @@ ap ap ap ap +Nz +Nz +Nz +Nz +Bg +Bg +Bg +Nz +Nz +Nz +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +OK +Bg +Bg +HX +OK +Ye +Ye +Ew +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10784,93 +13677,44 @@ ap ap ap ap +aB +aB +aB +aB +aB ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mw -mw -mx -mx -mx -mw -mw -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (7,1,1) = {" +aq +uc +ue +ue +uf +ue +ue +ue +uf +ue +ue +uc ap +aq +gp ap ap ap ap ap ap +ki +ko +ky +jH +la +lk ap ap ap @@ -10878,6 +13722,7 @@ ap ap ap ap +gp ap ap ap @@ -10906,6 +13751,53 @@ ap ap ap ap +Nz +WY +FM +IL +Bg +Bg +Bg +Bg +Bg +wA +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +OK +Bg +Bg +Bg +uZ +Ye +Ye +At +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10927,92 +13819,44 @@ ap ap ap ap +aB +aB +aB +aB +aB +aB ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -gX -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -mw -mx -mw -mT -nB -nM -nP -mT -mw -mx -mw -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (8,1,1) = {" +aq +ud +uf +uf +uf +uf +uf +uf +uf +uf +uf +ud ap +aq +gp ap ap ap ap ap ap +iE +iE +iE +kP +iE +iE ap ap ap @@ -11020,6 +13864,7 @@ ap ap ap ap +gp ap ap ap @@ -11048,6 +13893,53 @@ ap ap ap ap +Nz +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +wA +Nz +RU +yM +yM +yM +yM +yM +yM +yM +yM +yM +OK +Bg +Bg +Bg +OK +Ye +Ye +FX +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -11070,91 +13962,43 @@ ap ap ap ap +aB +aB +aB +aB +aB ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hm -hm -hv -hm -hm -hm -ia -in -in -in -ia -in -in -in -ia -in -in -in -ia -in -in -in -ia -in -hm -hm -hv -hm -hm -ai -mu -ap -mv -ap -ap -ap -ap -ap -ap -mw -mw -mw -ni -mw -mw -mT -mT -mT -mw -mw -ok -mw -mw -mw -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (9,1,1) = {" +aq +bc +bc +bc +bQ +cs +bc +cs +dh +bc +bc +bc ap +aq +gp ap ap ap ap ap ap +iE +kp +kz +jg +lb +iE ap ap ap @@ -11162,6 +14006,7 @@ ap ap ap ap +gp ap ap ap @@ -11190,6 +14035,52 @@ ap ap ap ap +Nz +Bg +Bg +Te +He +He +He +Ly +Bg +wA +Nz +xW +xW +xW +xW +xW +xW +xW +xW +xW +xW +Nz +Bg +Bg +Bg +Nz +Nz +Nz +Nz +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -11204,6 +14095,8 @@ ap ap ap ap +JX +JX ap ap ap @@ -11212,89 +14105,50 @@ ap ap ap ap +aB +aB +aB ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -ib -ib -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -ap -ap -ap -mw -mw -mV -mJ -mJ -no -mw -nC -nN -nx -mw -oc -mT -nA -nA -mw -mw -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (10,1,1) = {" +aq +bc +bn +by +bR +bn +cO +bn +di +by +bc +bc +Yj +aq +gp ap +iE +je +ju +iE ap +iE +iE +iC +jg +lc +iE ap +iE +lG +lS +iE ap ap +gp ap ap ap @@ -11323,6 +14177,69 @@ ap ap ap ap +Nz +TO +Bg +AF +FV +FV +FV +Dd +Bg +Bg +OK +Ra +Ra +Ra +Ra +Ra +Ra +Ra +Ra +Ra +Ra +OK +Bg +Bg +Bg +Bg +Bg +Bg +Qw +ar +Id +Id +Id +aB +aB +aB +aB +aB +aB +aB +aB +aB +Wf +Wf +Wf +Wf +Wf +ZZ +ZZ +ZZ +JX +JX +JX +JX +JX +JX +JX +xV +vG +Aw +JX +JX +JX ap ap ap @@ -11336,105 +14253,44 @@ 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 -ap -ap -ap -ap -ap -gX -ho -ho -ho -ho -ho -ho -ic -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -lx -ho -ho -ho -ho -ho -al -gX -ap -mv -ap -ap -ap -ap -mw -mw -mP -mW -nc -mJ -np -mw -nD -mT -nx -mw -od -mT -oq -oA -oI -mw -mw -ap -ap -ap -ap -mv -ap -ap +Af "} (11,1,1) = {" +aq +bc +bn +bn +bR +bn +bn +bn +di +bn +bn +dE +AJ +aq +gp +iE +iC +jf +jv +iE ap +iE +kq +iE +jg +ld +iE ap +iE +jW +jg +iC +iE ap +gp ap ap ap @@ -11463,6 +14319,69 @@ ap ap ap ap +Nz +FN +Bg +AF +FV +FV +FV +Dd +Bg +Bg +AP +Jk +Jk +Jk +Jk +Jk +Jk +Jk +Jk +Jk +Jk +AP +Bg +Bg +Bg +Bg +Bg +Bg +Nz +Wf +Id +EZ +Id +Id +aB +Wf +Wf +Wf +Wf +Wf +Wf +Wf +Wf +Tw +Tw +Bd +Tw +IM +yw +IM +PQ +WM +Zo +Wr +JY +CE +CE +CE +Av +Av +YX +Gz +Oo ap ap ap @@ -11476,107 +14395,44 @@ 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 -ap -ap -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -ib -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -ap -ap -mw -mH -mQ -mX -nc -mJ -mJ -mY -mT -mT -mT -mZ -mT -mT -nA -oB -nA -oN -mw -ap -ap -ap -ap -mv -ap -ap +Af "} (12,1,1) = {" +aq +bc +bn +bn +bR +bn +bn +bn +di +bn +bn +dE +AJ +aq +gp +iE +iS +jg +jw +iE ap +iE +kr +kA +jg +le +iE ap +iE +lI +jg +mg +iE ap +gp ap ap ap @@ -11605,6 +14461,69 @@ ap ap ap ap +Nz +TO +Bg +AF +FV +FV +FV +Dd +Bg +Bg +OK +KX +KX +KX +KX +KX +KX +KX +KX +Jk +Jk +OK +IP +Bg +Bg +Bg +Bg +Bg +Qw +Wf +Id +EZ +EZ +Id +Id +Wf +Be +vI +Vx +vI +EH +Wf +ZY +Tw +Tw +Tw +Bd +IM +xG +IM +Wn +Cg +PY +JX +Yf +xt +xt +xt +xt +xt +Bi +Gz +Oo ap ap ap @@ -11618,107 +14537,44 @@ 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 -ap -ap -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -ib -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -ap -mw -mw -mI -mR -mR -mJ -mJ -nq -mw -nE -mT -nQ -mw -oe -mT -or -oC -nA -oO -mw -mw -ap -ap -ap -mv -ap -ap +Af "} (13,1,1) = {" +aq +bc +bn +bn +bn +bn +bn +bn +bn +bn +bn +dE +AJ +aq +gp +iE +iT +jg +jx +iE ap +iE +ks +iE +kQ +lf +iE ap +iE +lJ +jg +mh +iE ap +gp ap ap ap @@ -11747,6 +14603,69 @@ ap ap ap ap +Nz +Bg +Bg +Fs +SL +SL +SL +Hf +Bg +wA +Nz +WX +WX +WX +WX +WX +WX +WX +WX +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Bg +Bg +Nz +Wf +EZ +EZ +EZ +EZ +Id +Wf +Wx +Vx +yD +Vx +Wx +Wf +Tw +Tw +Tw +Wf +Wf +Gx +Gx +Gx +JX +JX +JX +JX +JX +OF +xt +xt +Lm +xt +Bi +JX +JX ap ap ap @@ -11760,105 +14679,44 @@ 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 -ap -ap -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -id -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -ap -mx -mB -mJ -mJ -mJ -mJ -mJ -np -mw -nF -mT -nR -mw -of -mT -mT -mT -mT -mT -oQ -mx -ap -ap -ap -mv -ap -ap +Af "} (14,1,1) = {" +aq +bc +bn +bz +bn +bn +bn +bn +bn +bz +bc +bc +Ip +aq +gp +iE +iE +jh +iE +iE +iE +iE +iC +kB +jg +jg +iE +iE +iE +iE +lT +iE +iE ap +gp ap ap ap @@ -11887,6 +14745,52 @@ ap ap ap ap +Nz +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Ng +wA +Nz +RU +yM +yM +yM +yM +yM +yM +yM +Nz +Yp +Bg +Bg +Bg +BE +OK +Bg +Bg +Nz +Wf +Wf +RN +Ww +Wf +Wf +Wf +uX +vI +Vx +vI +AY +Wf +Tw +Tw +Tw +zv ap ap ap @@ -11895,6 +14799,19 @@ ap ap ap ap +JX +LJ +xt +xt +DF +JX +JX +JX +JX +JX +JX +JX +JX ap ap ap @@ -11904,104 +14821,44 @@ 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 -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -id -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -mw -mw -mC -mJ -mJ -mJ -mJ -nj -mw -mw -mw -mZ -mw -mw -mw -ol -os -mT -oJ -oP -oR -mw -mw -ap -ap -mv -ap -ap +Af "} (15,1,1) = {" +aq +bc +bc +bc +bc +bc +bc +bc +bc +bc +bc +bc ap +aq +gp +iE +iU +jg +jg +iE +iE +iE +iE +iE +jg +lg +iC +iE +jg +jg +jg +mi +iE ap +gp ap ap ap @@ -12030,6 +14887,52 @@ ap ap ap ap +Nz +Hq +Bg +Bg +Bg +Bg +Bg +Bg +Bg +wA +Nz +yM +yM +yM +yM +yM +CG +yM +yM +OK +Bg +Bg +wA +Bg +Bg +Nz +Bg +Bg +Nz +Wf +uY +Tw +EZ +vt +Tw +Wf +Wx +Vx +Vx +Vx +Wx +Wf +Bd +Tw +Tw +zv ap ap ap @@ -12038,6 +14941,19 @@ ap ap ap ap +JX +KZ +Wa +xt +xt +WG +Ak +Ak +IW +Ak +Ak +JX +JX ap ap ap @@ -12047,102 +14963,44 @@ 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 -ap -ap -ap -ap -gX -ho -ho -ho -ho -ho -ho -ie -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -lx -ho -ho -ho -ho -ho -al -gX -ap -mv -ap -ap -mw -mw -mw -mw -mw -mY -mw -mw -mw -nv -nG -nx -nS -nX -mw -mw -mw -mZ -mw -mw -mw -mw -mw -ap -ap -mv -ap -ap +Af "} (16,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +gp +iE +iV +jg +jg +jM +iE +kj +kt +kC +jg +jg +ll +iE +lv +jg +jg +jg +iE ap +gp ap ap ap @@ -12167,12 +15025,78 @@ ap ap ap ap +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Bg +Bg +Bg +Nz +Nz +Nz +Nz +yM +yM +yM +yM +yM +yM +yM +yM +OK +Bg +wA +VH +yf +Bg +Bh +Bg +Bg +Nz +Wf +uY +Tw +Tw +Tw +Tw +Wf +Yd +vI +Vx +Po +Dk +Wf +Bd +Bd +Tw +zv ap ap ap ap ap ap +JX +JX +JX +JX +JX +ZR +JX +JX +we +Ak +Mq +XI +Ak +vu +JX +JX ap ap ap @@ -12181,109 +15105,47 @@ 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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -id -id -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -mw -my -mD -mK -mS -mT -nd -nd -mw -nw -nx -mT -nx -nY -mw -om -ot -oD -ot -mw -mT -oU -mw -ap -ap -mv -ap -ap +Af "} (17,1,1) = {" +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +iI +iW +ji +jy +jg +jY +jg +jg +jH +jH +jg +jg +jY +jg +ji +lU +mj +lX +ap +gp +ap +ap +ap ap ap ap @@ -12294,143 +15156,135 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hp -hp -hp -hI -hp -hp -if -iq -if -if -if -iq -if -if -if -iq -if -if -if -iq -if -if -if -iq -hp -hp -hp -hI -hp -dZ -gX -ap -mv -ap -ap -mx -mz -mE -mE -mE -mT -mT -mT -mZ -nx -mT -mw -mT -nx -mZ -on -ou -mT -mT -mZ -mT -oV -mx -ap -ap -mv -ap -ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Nz +PI +PI +PI +QU +yM +yM +Nz +Nz +zT +Nz +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +OK +Bg +Bg +wA +Bg +Bg +Nz +Bg +Bg +Nz +Wf +IC +Tw +Tw +Tw +Tw +Wf +Nk +LY +Tg +AV +Wx +Wf +Wf +Wf +vZ +Wf +Wf +Wf +ap +ap +JX +JX +JX +JX +Hg +KL +Yn +ZA +zn +JX +Ak +Ak +Ak +Ak +Ec +Ak +JX +JX +JX +ap +ap +ap +ap +ap +ap +ap +Af "} (18,1,1) = {" +gp +gu +gu +gu +gu +gu +gu +gu +gu +gu +gu ap ap ap ap +iJ +iX +jj +jz +jg +jg +jg +jH +jH +jH +jH +jg +jg +jg +lK +lV +mk +lY ap +gp ap ap ap @@ -12455,9 +15309,79 @@ ap ap ap ap +Nz +PI +QU +QU +yM +vs +yM +OK +EA +EA +EA +OK +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Jv +Bg +Bg +Bg +Jv +OK +Bg +Bg +Nz +Wf +Wf +Wf +Ig +Wf +Wf +Wf +Wf +Wf +ND +Wf +Wf +Wf +EX +EX +EX +EX +Rn +Wf ap ap ap +xL +PX +Ai +ZA +ZA +pF +ZA +vK +JX +SU +RB +Yq +JX +JX +JX +JX +Gz +Oo ap ap ap @@ -12465,114 +15389,44 @@ 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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -gX -ap -mv -ap -ap -mw -mA -mE -mE -mE -mT -ne -nk -mw -ny -nH -mT -nx -nZ -mw -oo -ov -oE -ov -mw -mT -oW -mw -ap -ap -mv -ap -ap +Af "} (19,1,1) = {" +gp +gu +gv +gv +gv +gu +ht +gu +hM +hM +gu ap ap ap ap +iK +iY +jk +jk +jN +iE +jg +jH +kD +kR +jH +jg +iE +ly +lL +lW +ml +lZ ap +gp ap ap ap @@ -12597,9 +15451,79 @@ ap ap ap ap +Nz +PI +QU +yM +yM +yM +yM +OK +EA +EA +EA +OK +yM +vs +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Bg +Bg +Nz +Wf +ZY +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Bd +zv +EX +EX +Wg +Wg +EX +zv ap ap ap +Qb +DO +ZA +ZA +ZA +MQ +ZA +ZA +NT +EN +EN +Zu +JX +Jg +Kh +zs +Gz +Oo ap ap ap @@ -12607,114 +15531,44 @@ 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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -mw -mw -mw -mw -mw -mZ -mw -mw -mw -nz -nI -nx -nT -oa -mw -mw -mw -mZ -mw -mw -mw -mw -mw -ap -ap -mv -ap -ap +Af "} (20,1,1) = {" +gp +gu +gw +gC +gC +gu +hu +gu +hH +hH +gu ap ap ap ap +iE +iE +iE +iE +iE +iC +jg +jH +kE +kS +jH +jg +iC +iE +iE +iE +iE +iE ap +gp ap ap ap @@ -12739,9 +15593,79 @@ ap ap ap ap +Nz +PI +QU +yM +vs +yM +yM +Nz +Nz +zT +Nz +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +OK +Cj +Bg +Bg +Nz +Bg +Bg +Nz +Wf +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +vZ +EX +CK +PL +Lb +SM +zv ap ap ap +Qb +Ge +OH +ZA +ZA +ZR +ZA +ZA +Xo +QT +Gk +ZA +EF +UB +UB +VA +Gz +Oo ap ap ap @@ -12749,116 +15673,44 @@ 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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -mw -mw -mF -mL -mT -mT -nf -nl -mw -mw -mw -mZ -mw -mw -mw -op -oh -mT -nx -nx -oS -mw -mw -ap -ap -mv -ap -ap +Af "} (21,1,1) = {" +gp +gu +gx +gC +gC +gC +gC +hG +hH +hS +gu ap ap ap ap ap +iE +iE +jA +jO +jZ +kk +jH +kF +kT +jH +jV +lp +lz +lM +iE +iE ap ap +gp ap ap ap @@ -12883,9 +15735,79 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +yM +yM +Jc +Ns +Jc +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +FQ +xX +Bg +Bh +Bg +Bg +Nz +Wf +Tw +Ue +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +zv +EX +EX +LQ +LQ +EX +zv ap ap ap +Qb +FE +ZA +ZA +ZA +Yn +ZA +ZA +Pw +yI +yI +Zu +JX +Ix +wE +vX +Gz +Oo ap ap ap @@ -12893,116 +15815,44 @@ 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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -ap -mx -mG -mM -mT -mT -mT -mT -nr -mw -nJ -mT -nU -mw -og -mT -mT -mT -mT -mT -oT -mx -ap -ap -ap -mv -ap -ap +Af "} (22,1,1) = {" +gp +gu +gy +gC +hh +hh +gC +hH +hH +hT +gu ap ap ap ap ap ap +iI +jB +jP +ka +jg +jH +kG +kU +jH +jg +lq +lA +lN +lX ap ap ap +gp ap ap ap @@ -13027,9 +15877,79 @@ ap ap ap ap +Nz +PI +vs +yM +yM +yM +yM +Jc +Jc +Db +St +ZB +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Nz +Nz +Nz +Nz +Bg +Bg +Bg +Wf +Wf +Np +Wf +Wf +Wf +Ny +Wf +Wf +Wf +Tw +Tw +Wf +Rb +EX +EX +EX +EX +Wf ap ap ap +LN +Pt +qK +ZA +ZA +pF +ZA +OZ +JX +SU +RB +Yq +JX +JX +JX +JX +Gz +Oo ap ap ap @@ -13037,114 +15957,44 @@ 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 -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -ap -mw -mw -mN -mT -mT -ng -mT -ns -mw -nx -mT -nx -mw -oh -mT -ow -oF -oK -oz -mw -mw -ap -ap -ap -mv -ap -ap +Af "} (23,1,1) = {" +gp +gu +gz +gC +gC +gC +gC +gu +hH +hH +gu ap ap ap ap ap ap +iJ +jC +jQ +kb +jg +jH +ag +ah +jH +jg +lr +lB +lO +lY ap ap ap +gp ap ap ap @@ -13169,8 +16019,79 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +yM +wQ +ZB +Jc +Un +ZB +ZB +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +FQ +xX +Bg +Bh +Bg +Bg +Bg +Wf +Id +Id +SI +Fl +Ju +QB +QB +OQ +Wf +Tw +Tw +Wf +Wf +Wf +vZ +Wf +Wf +Wf ap ap +JX +JX +JX +Sy +Hg +KL +MQ +ZA +BN +JX +Bo +TL +TL +Zm +TL +Ab +JX +JX +JX ap ap ap @@ -13178,115 +16099,44 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -mw -mO -mT -na -mT -nm -mT -mZ -mT -mT -mT -mZ -mT -mT -ox -oG -oL -oz -mw -ap -ap -ap -ap -mv -ap -ap +Af "} (24,1,1) = {" +gp +gu +gA +gT +hi +gC +gC +gu +hN +hN +gu ap ap ap ap ap ap +iK +jD +jR +kc +jg +jH +kI +kW +jH +jg +ls +lC +lP +lZ ap ap ap +gp ap ap ap @@ -13311,12 +16161,78 @@ ap ap ap ap +Nz +PI +yM +Jc +Jc +Jc +Jc +Jc +Ir +Sc +vY +KH +MB +Jc +Jc +yM +yM +yM +yM +yM +yM +yM +vs +yM +yM +OK +ya +Bg +Bg +Nz +Bg +Bg +Hq +ar +aB +Id +uU +QB +QB +QB +QB +DZ +Wf +Tw +Tw +Wf +wU +Tw +Tw +zv ap ap ap ap ap ap +JX +JX +JX +JX +JX +ZR +JX +JX +Es +TL +TL +TL +TL +Sv +JX +JX ap ap ap @@ -13325,108 +16241,44 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -mw -mw -mU -mT -mT -mT -nt -mw -nx -mT -nx -mw -oi -mT -oy -oH -oM -mw -mw -ap -ap -ap -ap -mv -ap -ap +Af "} (25,1,1) = {" +gp +gu +gu +gu +gu +gC +gC +gu +gu +gu +gu ap ap ap ap ap +iE +iE +jE +jS +kd +jg +jH +kJ +kX +jH +jg +lt +lD +lQ +iE +iE ap ap +gp ap ap ap @@ -13451,6 +16303,56 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +wQ +Jc +KN +Je +wi +wi +wi +vq +wb +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Nz +Nz +Nz +Nz +Bg +Bg +IA +ar +aB +Id +Id +Zv +QB +QB +QB +DM +Wf +Tw +Tw +Wf +Tw +Tw +Tw +zv ap ap ap @@ -13459,6 +16361,19 @@ ap ap ap ap +JX +UL +XW +xt +xt +VT +TL +Od +UO +Jz +HJ +JX +JX ap ap ap @@ -13468,105 +16383,44 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -ap -mw -mw -nb -nh -mT -nu -mw -nK -nO -mw -mw -oj -mT -oz -oz -mw -mw -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (26,1,1) = {" +gp +gu +gB +gU +hj +gC +gC +gC +gC +gC +gu ap ap ap ap +iE +iE +iE +jF +jT +ke +iE +jH +jH +jH +jH +iE +jF +jT +ke +iE +iE +iE ap +gp ap ap ap @@ -13591,6 +16445,56 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +Ml +Jc +yl +Je +wi +wi +IG +xQ +HL +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Ch +Cl +FF +Nz +Xu +Nz +Nz +ar +aB +aB +Id +Id +Np +Rp +IR +Wf +Wf +Tw +Tw +Wf +Tw +Tw +Tw +zv ap ap ap @@ -13599,6 +16503,19 @@ ap ap ap ap +JX +KT +xt +xt +zL +JX +JX +JX +JX +JX +JX +JX +JX ap ap ap @@ -13608,102 +16525,44 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -ap -ap -mw -mw -mw -nn -mw -mw -nL -nA -nV -mw -mw -mT -mw -mw -mw -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (27,1,1) = {" +gp +gu +gC +gE +gE +gE +gE +gE +gE +gC +gu +gu +gu +gu +iC +iE +iC +jl +jG +jU +jU +iE +jg +jH +jH +jg +iE +lu +lE +lR +ma +iC +iE +iC +gp ap ap ap @@ -13728,6 +16587,73 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +wQ +Jc +YS +Je +wi +wi +wi +xD +Gi +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Yi +Yi +Yi +Yi +Yi +wq +Nz +ar +aB +aB +aB +Id +Id +Wf +Wf +Wf +Tw +Tw +Tw +Wf +Tw +Tw +Tw +Wf +Wf +ZZ +ZZ +ZZ +JX +JX +JX +JX +JX +NY +xt +wS +xt +Dx +Cf +JX +JX ap ap ap @@ -13741,111 +16667,44 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -mw -mx -mw -nA -nA -nA -nW -ob -mw -mx -mw -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (28,1,1) = {" +gp +gu +gC +gE +hk +hk +hk +hk +gE +gC +gC +gC +gC +iy +iD +jg +am +jg +jH +jH +jH +kl +jH +jH +jH +jH +kl +jH +jH +jH +mb +mm +mq +ms +gp ap ap ap @@ -13870,6 +16729,73 @@ ap ap ap ap +Nz +PI +yM +Jc +Jc +Jc +Jc +Jc +wa +Cu +wi +vC +wv +Jc +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +QJ +Yi +Yi +Yi +Yi +Dg +Nz +ar +aB +aB +aB +Wf +Hm +Jp +Mx +Wf +Tw +Tw +Tw +Wf +xR +Bd +Tw +Tw +Tw +IM +yw +IM +Bj +IS +BH +JX +AZ +xt +HS +xt +QI +XG +Lz +Gz +Oo ap ap ap @@ -13883,111 +16809,44 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mw -mw -mx -mx -mx -mw -mw -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (29,1,1) = {" +gp +gu +gC +gE +hk +hk +hk +hk +gE +gC +gC +im +gC +iy +iD +iM +iD +jg +jH +jH +jg +jg +jg +jH +jH +jg +jg +jg +jH +jH +mc +mn +mr +mt +gp ap ap ap @@ -14012,6 +16871,73 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +yM +wQ +ZB +wi +wi +ZB +ZB +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +ar +aB +aB +aB +Wf +XT +Xq +Xq +Ig +Tw +Tw +Wf +Wf +Wf +Bd +Bd +Tw +Tw +IM +xG +IM +Za +Li +FO +LT +JK +CE +CE +CE +CE +OX +yA +Gz +Oo ap ap ap @@ -14025,111 +16951,44 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -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 -mv -ap -ap +Af "} (30,1,1) = {" +gp +gu +gC +gV +gV +gE +gE +gV +gV +gC +gu +gu +gu +gu +iC +iE +iC +jm +jg +jg +jM +iC +ku +kK +kY +lh +iC +lv +jg +jg +jg +iC +iE +iC +gp ap ap ap @@ -14154,6 +17013,32 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +yM +Jc +Jc +ui +zb +ZB +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz ap ap ap @@ -14161,6 +17046,40 @@ ap ap ap ap +ar +aB +aB +aB +Wf +VW +Xq +Xq +Wf +Tw +Tw +Wf +Id +Wf +Wf +Wf +Wf +Wf +Gx +Gx +Gx +JX +JX +JX +JX +JX +JX +JX +xV +vG +Aw +JX +JX +JX ap ap ap @@ -14174,109 +17093,44 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -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 -mv -ap -ap +Af "} (31,1,1) = {" +gp +gu +gC +gC +gC +gC +gC +gC +gC +gC +gu ap ap ap ap +iE +iE +iE +jI +jI +iC +iE +kv +kL +jH +jg +iE +iC +lF +lF +iE +iE +iE ap +gp ap ap ap @@ -14301,6 +17155,32 @@ ap ap ap ap +Nz +PI +QU +QU +yM +yM +yM +yM +Jc +Jc +Jc +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +CG +yM +yM +Nz ap ap ap @@ -14308,6 +17188,24 @@ ap ap ap ap +ar +aB +aB +aB +Wf +wj +MO +LH +Wf +Np +Tw +Wf +Id +Id +Id +Id +Id +Id ap ap ap @@ -14321,6 +17219,8 @@ ap ap ap ap +JX +JX ap ap ap @@ -14335,92 +17235,44 @@ 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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -ap -ap +Af "} (32,1,1) = {" +gp +gu +gu +gu +gu +hr +hr +gu +gu +gu +gu ap ap ap ap ap +iI +jn +jg +jg +iE +km +jH +jH +jH +li +lm +iE +jg +jg +md +lX ap ap +gp ap ap ap @@ -14445,6 +17297,32 @@ ap ap ap ap +Nz +PI +QU +QU +QU +yM +yM +vs +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz ap ap ap @@ -14452,6 +17330,26 @@ ap ap ap ap +ar +aB +aB +aB +Wf +Wf +Wf +Wf +Wf +ND +JJ +Id +Id +Id +Id +aB +aB +aB +aB +aB ap ap ap @@ -14476,93 +17374,47 @@ ap ap ap ap +aB +aB 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (33,1,1) = {" +gp +gu +gD +gW +gE +gE +gE +gE +gW +gD +gu ap ap ap ap ap +iK +jo +jg +jV +iE +km +jH +jH +jH +jH +ln +iE +kk +jg +me +lZ ap ap +gp ap ap ap @@ -14587,6 +17439,32 @@ ap ap ap ap +Nz +PI +QU +QU +QU +QU +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz ap ap ap @@ -14594,6 +17472,28 @@ ap ap ap ap +ar +aB +aB +aB +Wf +DK +PK +LI +Wf +Bd +Bd +EU +Id +Id +Id +Id +aB +aB +aB +aB +aB +aB ap ap ap @@ -14615,94 +17515,48 @@ ap ap ap ap +aB +aB +aB 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (34,1,1) = {" +gp +gu +gE +gE +gE +gE +gE +gE +gE +gE +gu ap ap ap ap +iE +iC +jp +jg +cE +iC +iE +jg +jg +jg +jq +iE +iE +jg +jg +mf +iE +iE ap +gp ap ap ap @@ -14727,6 +17581,32 @@ ap ap ap ap +Nz +PI +QU +QU +QU +QU +QU +yM +yM +yM +yM +vs +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz ap ap ap @@ -14734,6 +17614,28 @@ ap ap ap ap +ar +aB +aB +aB +Wf +Uq +Np +Bk +Wf +Ms +EZ +Bd +yL +EZ +PS +Id +Id +aB +aB +aB +aB +aB ap ap ap @@ -14755,94 +17657,48 @@ ap ap ap ap +aB +aB +aB 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 -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 -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 +Af "} (35,1,1) = {" +gp +gu +gD +gW +gE +gE +gE +gE +gD +gD +gu ap ap ap +iE +iE +iZ +jg +jg +jg +kf +iE +iE +iE +iE +iE +iE +jg +jg +jg +jg +mo +iE +iE +gp ap ap ap @@ -14867,6 +17723,32 @@ ap ap ap ap +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz ap ap ap @@ -14874,6 +17756,29 @@ ap ap ap ap +ar +aB +aB +aB +Wf +Iy +xm +Pm +Mg +EZ +Ev +EZ +EZ +Uy +EZ +RX +Id +aB +aB +aB +aB +aB +aB ap ap ap @@ -14894,97 +17799,48 @@ ap ap ap ap +aB +aB 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 -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 -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 +Af "} (36,1,1) = {" +gp +gu +gE +gE +gE +gE +gE +gE +gE +gE +gu ap ap ap +iE +iE +ja +jq +jJ +jg +kg +iE +iN +iN +iN +iN +iE +lw +jg +jg +jq +mp +iE +iE +gp ap ap ap @@ -15042,6 +17898,34 @@ ap ap ap ap +ar +aB +aB +aB +Wf +Tv +Np +iO +Mg +EZ +HN +EZ +EZ +HN +EZ +VG +Id +Id +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -15052,6 +17936,8 @@ ap ap ap ap +aB +aB ap ap ap @@ -15059,74 +17945,44 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (37,1,1) = {" +gp +gu +gD +gW +gE +gE +gE +gE +gW +gD +gu ap ap ap +iE +iE +iE +iE +iE +iE +iE +iE +UK +BP +BP +Ci +iE +iE +iE +iE +iE +iE +iE +iE +gp ap ap ap @@ -15184,97 +18040,91 @@ ap ap ap ap +ar +aB +aB +aB +Wf +Eo +Np +xm +Mg +Il +Xt +EZ +EZ +HN +EZ +EZ +AN +Id +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap ap +aB +aB +aB +aB +aB +aB +aB +aB 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (38,1,1) = {" +gp +gu +gE +gE +gE +gE +gE +gE +gE +gE +gu ap ap ap +iE +iN +iN +iN +iN +iE +iE ap ap ap ap ap ap +iE +iE +iN +iN +iN +iN +iE +gp ap ap ap @@ -15332,85 +18182,76 @@ ap ap ap ap +ar +aB +aB +aB +Wf +XF +Np +AA +Wf +EZ +EZ +SJ +Jt +ID +EZ +Id +EZ +Jq +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (39,1,1) = {" +gp +gu +gu +gu +gu +gu +gu +gu +gu +gu +gu ap ap ap +iE +UK +BP +BP +Ci +iE ap ap ap @@ -15419,6 +18260,13 @@ ap ap ap ap +iE +UK +BP +BP +Ci +iE +gp ap ap ap @@ -15476,80 +18324,91 @@ 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 -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 -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +ar +aB +aB +aB +Wf +AB +ZI +Ep +Wf +Id +Id +Id +Id +Id +Id +Id +Id +Id +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +ZL "} (40,1,1) = {" +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp ap ap ap @@ -15607,124 +18466,89 @@ 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 -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 -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 +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ZL "} (41,1,1) = {" -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 -ap -ap -ap -ap +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +ar ap ap ap @@ -15834,39 +18658,39 @@ ap ap "} (42,1,1) = {" -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 -ap -ap -ap -ap +Gq +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Ax +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +ar ap ap ap @@ -15976,39 +18800,39 @@ ap ap "} (43,1,1) = {" -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 -ap -ap -ap -ap +Gq +Nt +VC +Gw +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16118,39 +18942,39 @@ ap ap "} (44,1,1) = {" -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 -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16260,39 +19084,39 @@ ap ap "} (45,1,1) = {" -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 -ap -ap -ap -ap +Gq +Nt +XO +VC +VC +VC +VC +VC +VC +VC +VC +Ts +BD +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16402,39 +19226,39 @@ ap ap "} (46,1,1) = {" -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 -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +Ts +VC +Nj +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16544,39 +19368,39 @@ ap ap "} (47,1,1) = {" -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +BD +VC +TG +TG +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16686,39 +19510,39 @@ ap ap "} (48,1,1) = {" -aq -ap -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +Ts +TG +Fa +Dw +TG +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16828,39 +19652,39 @@ ap ap "} (49,1,1) = {" -aq -ap -uc -ue -ue -uf -ue -ue -ue -uf -ue -ue -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +XY +VC +VC +VC +VC +TG +Tn +Ik +TG +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16970,39 +19794,39 @@ ap ap "} (50,1,1) = {" -aq -ap -uc -uf -uf -uf -uf -uf -uf -uf -uf -uf -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +XY +VC +VC +VC +VC +VC +TG +TG +VC +VC +VC +FH +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17112,39 +19936,39 @@ ap ap "} (51,1,1) = {" -aq -ap -uc -ue -ue -uf -ue -ue -ue -uf -ue -ue -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +XY +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17254,39 +20078,39 @@ ap ap "} (52,1,1) = {" -aq -ap -uc -uf -uf -uf -uf -ug -uf -uf -uf -uf -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +TF +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17396,39 +20220,39 @@ ap ap "} (53,1,1) = {" -aq -ap -uc -ue -ue -uf -ue -ue -ue -uf -ue -ue -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +BD +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17538,39 +20362,39 @@ ap ap "} (54,1,1) = {" -aq -ap -ud -uf -uf -uf -uf -uf -uf -uf -uf -uf -ud -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +XY +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +TF +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17680,39 +20504,39 @@ ap ap "} (55,1,1) = {" -aq -ap -bc -bc -bc -bQ -cs -bc -cs -dh -bc -bc -bc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +XY +VC +VC +VC +VC +VC +VC +No +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17822,39 +20646,39 @@ ap ap "} (56,1,1) = {" -aq -ap -bc -bn -by -bR -bn -cO -bn -di -by -bc -bc +Gq +Nt +XY +VC +Ts +Gw +VC +VC +VC +VC +VC +VC +VC aa -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17964,39 +20788,39 @@ ap ap "} (57,1,1) = {" -aq -ap -bc -bn -bn -bR -bn -bn -bn -di -bn -bn -dE -ab -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -18106,39 +20930,39 @@ ap ap "} (58,1,1) = {" -aq -ap -bc -bn -bn -bR -bn -bn -bn -di -bn -bn -dE -ab -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -18248,39 +21072,39 @@ ap ap "} (59,1,1) = {" -aq -ap -bc -bn -bn -bn -bn -bn -bn -bn -bn -bn -dE -ab -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +Gw +Ts +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -18390,39 +21214,39 @@ ap ap "} (60,1,1) = {" -aq -ap -bc -bn -bz -bn -bn -bn -bn -bn -bz -bc -bc -ac -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -18532,39 +21356,39 @@ ap ap "} (61,1,1) = {" -aq -ap -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +WD +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -18674,39 +21498,39 @@ ap ap "} (62,1,1) = {" -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Ax +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +ar ap ap ap @@ -18816,39 +21640,39 @@ ap ap "} (63,1,1) = {" +Gq +zz +zz +zz +zz +zz +zz +zz +zz +zz +zz +Gq +zz +zz +zz +zz +zz +zz +zz +zz +zz +zz +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq ar -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ar -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ar -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap ap ap ap @@ -22673,35 +25497,35 @@ fo fP eK fZ -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 +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv ap ap ap @@ -22815,6 +25639,7 @@ fo fP eK fZ +mv ap ap ap @@ -22842,8 +25667,7 @@ ap ap ap ap -ap -ap +mv ap ap ap @@ -22957,6 +25781,7 @@ fo fP eK fZ +mv ap ap ap @@ -22984,8 +25809,7 @@ ap ap ap ap -ap -ap +mv ap ap ap @@ -23099,6 +25923,7 @@ fH fQ eK fZ +mv ap ap ap @@ -23109,6 +25934,13 @@ ap ap ap ap +mw +mw +mx +mx +mx +mw +mw ap ap ap @@ -23119,15 +25951,7 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -23241,19 +26065,7 @@ eK eK eK fZ -aI -aI -aI -ar -aI -aI -aI -ar -aI -aI -aI -ar -ap +mv ap ap ap @@ -23262,6 +26074,17 @@ ap ap ap ap +mw +mx +mw +mT +nB +nM +nP +mT +mw +mx +mw ap ap ap @@ -23270,6 +26093,7 @@ ap ap ap ap +mv ap ap ap @@ -23382,36 +26206,36 @@ eL eL eL eL -dA -ga -ga -ga -dB -gN -gO -gO -dB -hx -hx -hx fZ +mv ap ap ap ap ap ap +mw +mw +mw +ni +mw +mw +mT +mT +mT +mw +mw +ok +mw +mw +mw ap ap ap ap ap ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -23524,36 +26348,36 @@ aL aL aL aL -as -gb -ga -gq -dB -gO -gO -gP -dB -hy -hJ -hO -fZ -ap -ap -ap -ap -ap -ap -ap +ar +mv ap ap ap ap ap +mw +mw +mV +mJ +mJ +no +mw +nC +nN +nx +mw +oc +mT +nA +nA +mw +mw ap ap ap ap ap +mv ap ap ap @@ -23666,36 +26490,36 @@ dJ dJ dJ dJ -dA -gc -ga -gc -dB -gO -gO -gO -dB -hz -hK -hP fZ +mv ap ap ap ap +mw +mw +mP +mW +nc +mJ +np +mw +nD +mT +nx +mw +od +mT +oq +oA +oI +mw +mw ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -23808,36 +26632,36 @@ dK dJ dK dK -dA -gd -ga -ga -dB -gO -gN -gO -dB -hz -hK -hP fZ +mv ap ap ap ap +mw +mH +mQ +mX +nc +mJ +mJ +mY +mT +mT +mT +mZ +mT +mT +nA +oB +nA +oN +mw ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -23950,36 +26774,36 @@ dL fI dL dL -dA -gc -ga -gq -dB -gO -gO -gO -dB -hA -hL -hQ fZ +mv ap ap ap +mw +mw +mI +mR +mR +mJ +mJ +nq +mw +nE +mT +nQ +mw +oe +mT +or +oC +nA +oO +mw +mw ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -24092,36 +26916,36 @@ fz fz fz fS -dA -gc -ga -gc -dB -gP -gO -gO -dB -hx -hx -hx fZ +mv ap ap ap +mx +mB +mJ +mJ +mJ +mJ +mJ +np +mw +nF +mT +nR +mw +of +mT +mT +mT +mT +mT +oQ +mx ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -24235,35 +27059,35 @@ ei ei fJ fZ -aL -aL -aL -ar -aL -aL -aL -ar -aL -aL -aL -ar -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap +mw +mw +mC +mJ +mJ +mJ +mJ +nj +mw +mw +mw +mZ +mw +mw +mw +ol +os +mT +oJ +oP +oR +mw +mw ap ap +mv ap ap ap @@ -24376,36 +27200,36 @@ ei fJ fz fS -dA -ge -gl -gr -dB -gQ -gR -gQ -dB -hB -hD -hD fZ +mv ap ap +mw +mw +mw +mw +mw +mY +mw +mw +mw +nv +nG +nx +nS +nX +mw +mw +mw +mZ +mw +mw +mw +mw +mw ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -24518,42 +27342,42 @@ ei fJ ei fT -dA -gf -gl -gr -dB -gR -gQ -gR -dB -hC -hC -hC fZ +mv +ap +ap +mw +my +mD +mK +mS +mT +nd +nd +mw +nw +nx +mT +nx +nY +mw +om +ot +oD +ot +mw +mT +oU +mw +ap +ap +mv +ap +ap +ap +ap ap ap -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp ap ap ap @@ -24660,22 +27484,36 @@ ei fJ fA fU -dA -gg -gl -gr -dB -gQ -hg -gQ -dB -hD -hD -hD fZ +mv ap ap -gp +mx +mz +mE +mE +mE +mT +mT +mT +mZ +nx +mT +mw +mT +nx +mZ +on +ou +mT +mT +mZ +mT +oV +mx +ap +ap +mv ap ap ap @@ -24683,20 +27521,6 @@ ap ap ap ap -iE -kw -kM -iE -ap -ap -ap -ap -ap -ap -ap -ap -gp -ap ap ap ap @@ -24802,42 +27626,42 @@ ei ei ei fJ -dA -gh -gl -gr -dB -gR -gQ -gR -dB -hD -hD -hD fZ +mv ap ap -gp +mw +mA +mE +mE +mE +mT +ne +nk +mw +ny +nH +mT +nx +nZ +mw +oo +ov +oE +ov +mw +mT +oW +mw +ap +ap +mv ap ap ap ap ap ap -iE -iE -kx -kN -iE -iE -ap -ap -ap -ap -ap -ap -ap -gp ap ap ap @@ -24944,42 +27768,42 @@ fA fA fA fU -dA -gi -gl -gr -dB -gQ -gR -gQ -dB -hE -hE -hE fZ +mv ap ap -gp +mw +mw +mw +mw +mw +mZ +mw +mw +mw +nz +nI +nx +nT +oa +mw +mw +mw +mZ +mw +mw +mw +mw +mw +ap +ap +mv ap ap ap ap ap ap -kh -kn -jH -kO -kZ -lj -ap -ap -ap -ap -ap -ap -ap -gp ap ap ap @@ -25086,42 +27910,42 @@ aL aL aL aL -as -gf -gl -gr -dB -gR -gQ -gR -dB -hD -hD -hR -fZ +ar +mv ap ap -gp +mw +mw +mF +mL +mT +mT +nf +nl +mw +mw +mw +mZ +mw +mw +mw +op +oh +mT +nx +nx +oS +mw +mw +ap +ap +mv ap ap ap ap ap ap -ki -ko -ky -jH -la -lk -ap -ap -ap -ap -ap -ap -ap -gp ap ap ap @@ -25229,41 +28053,41 @@ fK fR fR fZ -aL -aL -aL -ar -aL -aL -aL -ar -aL -aL -aL -ar +mv ap ap -gp +ap +mx +mG +mM +mT +mT +mT +mT +nr +mw +nJ +mT +nU +mw +og +mT +mT +mT +mT +mT +oT +mx +ap +ap +ap +mv ap ap ap ap ap ap -iE -iE -iE -kP -iE -iE -ap -ap -ap -ap -ap -ap -ap -gp ap ap ap @@ -25370,42 +28194,42 @@ dQ fK fR fR -dA -gj -gk -gs -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv ap ap -gp +ap +mw +mw +mN +mT +mT +ng +mT +ns +mw +nx +mT +nx +mw +oh +mT +ow +oF +oK +oz +mw +mw +ap +ap +ap +mv ap ap ap ap ap ap -iE -kp -kz -jg -lb -iE -ap -ap -ap -ap -ap -ap -ap -gp ap ap ap @@ -25512,42 +28336,42 @@ dQ fK fR fR -dA -gk -gm -gk -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv +ap +ap +ap +ap +mw +mO +mT +na +mT +nm +mT +mZ +mT +mT +mT +mZ +mT +mT +ox +oG +oL +oz +mw +ap +ap +ap +ap +mv +ap +ap ap ap -gp -ap -iE -je -ju -iE -ap -iE -iE -iC -jg -lc -iE -ap -iE -lG -lS -iE ap ap -gp ap ap ap @@ -25654,42 +28478,42 @@ dQ fK fR fR -dA -gk -gn -gk -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv +ap +ap +ap +ap +mw +mw +mU +mT +mT +mT +nt +mw +nx +mT +nx +mw +oi +mT +oy +oH +oM +mw +mw +ap +ap +ap +ap +mv +ap ap ap -gp -iE -iC -jf -jv -iE ap -iE -kq -iE -jg -ld -iE ap -iE -jW -jg -iC -iE ap -gp ap ap ap @@ -25796,42 +28620,42 @@ dQ fK fR fR -dA -gk -go -gk -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv +ap +ap +ap +ap +ap +mw +mw +nb +nh +mT +nu +mw +nK +nO +mw +mw +oj +mT +oz +oz +mw +mw +ap +ap +ap +ap +ap +mv +ap ap ap -gp -iE -iS -jg -jw -iE ap -iE -kr -kA -jg -le -iE ap -iE -lI -jg -mg -iE ap -gp ap ap ap @@ -25938,42 +28762,42 @@ dQ fK fR fR -dA -gk -gk -gk -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv +ap +ap +ap +ap +ap +ap +mw +mw +mw +nn +mw +mw +nL +nA +nV +mw +mw +mT +mw +mw +mw +ap +ap +ap +ap +ap +ap +mv +ap ap ap -gp -iE -iT -jg -jx -iE ap -iE -ks -iE -kQ -lf -iE ap -iE -lJ -jg -mh -iE ap -gp ap ap ap @@ -26080,42 +28904,42 @@ dQ fK fR fR -dA -gk -gk -gt -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv +ap +ap +ap +ap +ap +ap +ap +ap +mw +mx +mw +nA +nA +nA +nW +ob +mw +mx +mw +ap +ap +ap +ap +ap +ap +ap +ap +mv +ap +ap +ap ap ap -gp -iE -iE -jh -iE -iE -iE -iE -iC -kB -jg -jg -iE -iE -iE -iE -lT -iE -iE ap -gp ap ap ap @@ -26223,41 +29047,41 @@ fK fR fR fZ -bb -bb -bb -ar -bb -bb -bb -ar -bb -bb -bb -ar +mv +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +mw +mw +mx +mx +mx +mw +mw +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +mv +ap +ap +ap ap ap -gp -iE -iU -jg -jg -iE -iE -iE -iE -iE -jg -lg -iC -iE -jg -jg -jg -mi -iE ap -gp ap ap ap @@ -26365,6 +29189,7 @@ fK fR fR fZ +mv ap ap ap @@ -26379,27 +29204,26 @@ ap ap ap ap -gp -iE -iV -jg -jg -jM -iE -kj -kt -kC -jg -jg -ll -iE -lv -jg -jg -jg -iE ap -gp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +mv +ap +ap +ap +ap +ap +ap ap ap ap @@ -26507,41 +29331,41 @@ fK fR fR fZ -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -iI -iW -ji -jy -jg -jY -jg -jg -jH -jH -jg -jg -jY -jg -ji -lU -mj -lX +mv +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 +mv +ap +ap +ap +ap +ap ap -gp ap ap ap @@ -26649,41 +29473,41 @@ aL aL aL ar -gp -gu -gu -gu -gu -gu -gu -gu -gu -gu -gu +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +ap ap ap ap ap -iJ -iX -jj -jz -jg -jg -jg -jH -jH -jH -jH -jg -jg -jg -lK -lV -mk -lY ap -gp ap ap ap @@ -26791,41 +29615,41 @@ dR dR dR fZ -gp -gu -gv -gv -gv -gu -ht -gu -hM -hM -gu +aI +aI +aI +ar +aI +aI +aI +ar +aI +aI +aI +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap ap -iK -iY -jk -jk -jN -iE -jg -jH -kD -kR -jH -jg -iE -ly -lL -lW -ml -lZ ap -gp ap ap ap @@ -26932,51 +29756,51 @@ dS dR dS dS +dB +ga +ga +ga +dB +gN +gO +gO +dB +hx +hx +hx fZ -gp -gu -gw -gC -gC -gu -hu -gu -hH -hH -gu -ap -ap -ap -ap -iE -iE -iE -iE -iE -iC -jg -jH -kE -kS -jH -jg -iC -iE -iE -iE -iE -iE -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -27074,51 +29898,51 @@ dT fL dT dT +dB +gb +ga +gq +dB +gO +gO +gP +dB +hy +hJ +hO fZ -gp -gu -gx -gC -gC -gC -gC -hG -hH -hS -gu -ap -ap -ap -ap -ap -iE -iE -jA -jO -jZ -kk -jH -kF -kT -jH -jV -lp -lz -lM -iE -iE -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -27216,51 +30040,51 @@ fB fB fB fV +dB +gc +ga +gc +dB +gO +gO +gO +dB +hz +hK +hP fZ -gp -gu -gy -gC -hh -hh -gC -hH -hH -hT -gu -ap -ap -ap -ap -ap -ap -iI -jB -jP -ka -jg -jH -kG -kU -jH -jg -lq -lA -lN -lX -ap -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -27358,51 +30182,51 @@ em em em fW +dB +gd +ga +ga +dB +gO +gN +gO +dB +hz +hK +hP fZ -gp -gu -gz -gC -gC -gC -gC -gu -hH -hH -gu -ap -ap -ap -ap -ap -ap -iJ -jC -jQ -kb -jg -jH -ag -ah -jH -jg -lr -lB -lO -lY -ap -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -27500,51 +30324,51 @@ em em em fW +dB +gc +ga +gq +dB +gO +gO +gO +dB +hA +hL +hQ fZ -gp -gu -gA -gT -hi -gC -gC -gu -hN -hN -gu -ap -ap -ap -ap -ap -ap -iK -jD -jR -kc -jg -jH -kI -kW -jH -jg -ls -lC -lP -lZ -ap -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +gX ap ap ap @@ -27642,51 +30466,51 @@ em em em fW +dB +gc +ga +gc +dB +gP +gO +gO +dB +hx +hx +hx fZ -gp -gu -gu -gu -gu -gC -gC -gu -gu -gu -gu -ap -ap -ap -ap -ap -iE -iE -jE -jS -kd -jg -jH -kJ -kX -jH -jg -lt -lD -lQ -iE -iE -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hm +hm +hv +hm +hm +hm +ia +in +in +in +ia +in +in +in +ia +in +in +in +ia +in +in +in +ia +in +hm +hm +hv +hm +hm +ai +mu ap ap ap @@ -27785,50 +30609,50 @@ em em fW fZ -gp -gu -gB -gU -hj -gC -gC -gC -gC -gC -gu -ap -ap -ap -ap -iE -iE -iE -jF -jT -ke -iE -jH -jH -jH -jH -iE -jF -jT -ke -iE -iE -iE -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +aL +aL +aL +ar +aL +aL +aL +ar +aL +aL +aL +ar +gX +hn +hn +hn +hn +hn +hn +ib +ib +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -27926,51 +30750,51 @@ em em em fW +dB +ge +gl +gr +dB +gQ +gR +gQ +dB +hB +hD +hD fZ -gp -gu -gC -gE -gE -gE -gE -gE -gE -gC -gu -gu -gu -gu -iC -iE -iC -jl -jG -jU -jU -iE -jg -jH -jH -jg -iE -lu -lE -lR -ma -iC -iE -iC -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +ho +ho +ho +ho +ho +ho +ic +io +io +io +io +io +io +io +io +io +io +io +io +io +io +io +io +lx +ho +ho +ho +ho +ho +al +gX ap ap ap @@ -28068,51 +30892,51 @@ fC fC fC fX +dB +gf +gl +gr +dB +gR +gQ +gR +dB +hC +hC +hC fZ -gp -gu -gC -gE -hk -hk -hk -hk -gE -gC -gC -gC -gC -iy -iD -jg -am -jg -jH -jH -jH -kl -jH -jH -jH -jH -kl -jH -jH -jH -mb -mm -mq -ms -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hn +hn +hn +hn +hn +hn +ib +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -28210,51 +31034,51 @@ aL aL aL aL -ar -gp -gu -gC -gE -hk -hk -hk -hk -gE -gC -gC -im -gC -iy -iD -iM -iD -jg -jH -jH -jg -jg -jg -jH -jH -jg -jg -jg -jH -jH -mc -mn -mr -mt -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +as +gg +gl +gr +dB +gQ +hg +gQ +dB +hD +hD +hD +fZ +gX +hn +hn +hn +hn +hn +hn +ib +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -28352,51 +31176,51 @@ dY dY dY dY +dB +gh +gl +gr +dB +gR +gQ +gR +dB +hD +hD +hD fZ -gp -gu -gC -gV -gV -gE -gE -gV -gV -gC -gu -gu -gu -gu -iC -iE -iC -jm -jg -jg -jM -iC -ku -kK -kY -lh -iC -lv -jg -jg -jg -iC -iE -iC -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hn +hn +hn +hn +hn +hn +id +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -28494,51 +31318,51 @@ eo dY dY dY +dB +gi +gl +gr +dB +gQ +gR +gQ +dB +hE +hE +hE fZ -gp -gu -gC -gC -gC -gC -gC -gC -gC -gC -gu -ap -ap -ap -ap -iE -iE -iE -jI -jI -iC -iE -kv -kL -jH -jg -iE -iC -lF -lF -iE -iE -iE -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hn +hn +hn +hn +hn +hn +id +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -28636,51 +31460,51 @@ eN dY dY dY +dB +gf +gl +gr +dB +gR +gQ +gR +dB +hD +hD +hR fZ -gp -gu -gu -gu -gu -hr -hr -gu -gu -gu -gu -ap -ap -ap -ap -ap -iI -jn -jg -jg -iE -km -jH -jH -jH -li -lm -iE -jg -jg -md -lX -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +ho +ho +ho +ho +ho +ho +ie +io +io +io +io +io +io +io +io +io +io +io +io +io +io +io +io +lx +ho +ho +ho +ho +ho +al +gX ap ap ap @@ -28779,50 +31603,50 @@ fM eo dY fZ -gp -gu -gD -gW -gE -gE -gE -gE -gW -gD -gu -ap -ap -ap -ap -ap -iK -jo -jg -jV -iE -km -jH -jH -jH -jH -ln -iE -kk -jg -me -lZ -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +aL +aL +aL +ar +aL +aL +aL +ar +aL +aL +aL +ar +gX +hn +hn +hn +hn +hn +hn +id +id +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -28920,51 +31744,51 @@ fD fM eo dY +dB +gj +gk +gs +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gE -gE -gE -gE -gE -gE -gE -gE -gu -ap -ap -ap -ap -iE -iC -jp -jg -cE -iC -iE -jg -jg -jg -jq -iE -iE -jg -jg -mf -iE -iE -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hp +hp +hp +hI +hp +hp +if +iq +if +if +if +iq +if +if +if +iq +if +if +if +iq +if +if +if +iq +hp +hp +hp +hI +hp +dZ +gX ap ap ap @@ -29062,51 +31886,51 @@ fD fM eo dY +dB +gk +gm +gk +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gD -gW -gE -gE -gE -gE -gD -gD -gu -ap -ap -ap -iE -iE -iZ -jg -jg -jg -kf -iE -iE -iE -iE -iE -iE -jg -jg -jg -jg -mo -iE -iE -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +gX ap ap ap @@ -29204,51 +32028,51 @@ fE fN dY dY +dB +gk +gn +gk +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gE -gE -gE -gE -gE -gE -gE -gE -gu -ap -ap -ap -iE -iE -ja -jq -jJ -jg -kg -iE -iN -iN -iN -iN -iE -lw -jg -jg -jq -mp -iE -iE -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -29346,51 +32170,51 @@ eR dY dY dY +dB +gk +go +gk +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gD -gW -gE -gE -gE -gE -gW -gD -gu -ap -ap -ap -iE -iE -iE -iE -iE -iE -iE -iE -ad -ae -ae -af -iE -iE -iE -iE -iE -iE -iE -iE -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -29488,51 +32312,51 @@ eo dY dY fY +dB +gk +gk +gk +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gE -gE -gE -gE -gE -gE -gE -gE -gu -ap -ap -ap -iE -iN -iN -iN -iN -iE -iE -ap -ap -ap -ap -ap -ap -iE -iE -iN -iN -iN -iN -iE -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -29630,51 +32454,51 @@ dY dY dY fY +dB +gk +gk +gt +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gu -gu -gu -gu -gu -gu -gu -gu -gu -ap -ap -ap -iE -ad -ae -ae -af -iE -ap -ap -ap -ap -ap -ap -ap -ap -iE -ad -ae -ae -af -iE -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -29773,41 +32597,41 @@ bb bb bb ar -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp +bb +bb +bb +ar +bb +bb +bb +ar +bb +bb +bb +ar +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 diff --git a/maps/tether/submaps/tether_ships.dmm b/maps/tether/submaps/tether_ships.dmm index e24ebf782c..08d662e127 100644 --- a/maps/tether/submaps/tether_ships.dmm +++ b/maps/tether/submaps/tether_ships.dmm @@ -2,1827 +2,16 @@ "aa" = ( /turf/space, /area/space) -"ab" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"ac" = ( -/turf/simulated/floor/reinforced/airless{ - name = "outer hull" - }, -/area/space) -"ad" = ( -/obj/machinery/porta_turret, -/turf/simulated/floor/reinforced/airless{ - name = "outer hull" - }, -/area/space) -"ae" = ( -/obj/machinery/computer/security/telescreen/entertainment, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"af" = ( -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"ag" = ( -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"ah" = ( -/obj/machinery/media/jukebox, -/turf/simulated/floor/wood, -/area/houseboat) -"ai" = ( -/turf/simulated/floor/wood, -/area/houseboat) -"aj" = ( -/obj/structure/table/marble, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"ak" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 10; - icon_state = "fwindow" - }, -/obj/machinery/door/blast/shutters{ - density = 1; - dir = 1; - icon_state = "shutter1"; - id = "dongleship_blast"; - layer = 3.3; - name = "Blast Shutters"; - opacity = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/houseboat) -"al" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"am" = ( -/obj/structure/bed/chair/comfy/black{ - icon_state = "comfychair_preview"; - dir = 1 - }, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"an" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"ao" = ( -/obj/machinery/computer/gyrotron_control, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"ap" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"aq" = ( -/obj/structure/flora/pottedplant, -/turf/simulated/floor/wood, -/area/houseboat) -"ar" = ( -/obj/structure/flora/pottedplant, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "dongleship_blast"; - name = "exterior shutters"; - pixel_x = 28 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"as" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"at" = ( -/obj/machinery/door/blast/shutters{ - density = 1; - dir = 8; - icon_state = "shutter1"; - id = "dongleship_blast"; - layer = 3.3; - name = "Blast Shutters"; - opacity = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 10; - icon_state = "fwindow" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/shuttle/plating, -/area/houseboat) -"au" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood, -/area/houseboat) -"av" = ( -/obj/structure/grille, -/obj/machinery/door/blast/shutters{ - density = 1; - dir = 4; - icon_state = "shutter1"; - id = "dongleship_blast"; - layer = 3.3; - name = "Blast Shutters"; - opacity = 1 - }, -/obj/structure/window/reinforced{ - dir = 10; - icon_state = "fwindow" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/shuttle/plating, -/area/houseboat) -"aw" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"ax" = ( -/obj/machinery/computer/card/centcom, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"ay" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/computer/message_monitor, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"az" = ( -/obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"aA" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"aB" = ( -/obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; - dir = 8 - }, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"aC" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"aD" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/codex, -/turf/simulated/floor/carpet/blue, -/area/houseboat) -"aE" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"aF" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"aG" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "dongleship_blast"; - name = "exterior shutters"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"aH" = ( -/obj/machinery/vending/food/arojoan{ - density = 0; - pixel_x = -32 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"aI" = ( -/obj/machinery/vending/boozeomat{ - density = 0; - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"aJ" = ( -/obj/machinery/door/airlock/voidcraft, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"aK" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aL" = ( -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aM" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/obj/machinery/vending/dinnerware, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aN" = ( -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"aO" = ( -/obj/structure/sign/department/bridge, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"aP" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aQ" = ( -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aR" = ( -/obj/structure/table/standard, -/obj/machinery/microwave, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aS" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aT" = ( -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aU" = ( -/obj/machinery/cooker/oven, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aV" = ( -/obj/machinery/cooker/grill, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aW" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aX" = ( -/obj/structure/table/standard, -/obj/item/weapon/material/knife/butch, -/obj/item/weapon/material/kitchen/rollingpin, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"aY" = ( -/obj/effect/step_trigger/teleporter{ - dir = 2; - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - teleport_x = 99; - teleport_y = 104; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"aZ" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"ba" = ( -/obj/machinery/door/airlock/voidcraft, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bb" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"bc" = ( -/obj/machinery/door/airlock/voidcraft/vertical, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"bd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"be" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bf" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bg" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bh" = ( -/obj/machinery/computer/operating, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bi" = ( -/obj/machinery/optable, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bj" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bk" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"bl" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/plasteel, -/obj/item/stack/material/plasteel, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bm" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/diamond, -/obj/item/stack/material/gold, -/obj/item/stack/material/silver, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bn" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/uranium, -/obj/item/stack/material/uranium, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bo" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/secure/briefcase/nsfw_pack, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bp" = ( -/obj/structure/table/steel, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bq" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"br" = ( -/obj/structure/table/standard, -/obj/item/weapon/tank/anesthetic, -/obj/item/clothing/mask/breath/medical, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bs" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 12; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bt" = ( -/obj/structure/closet/hydrant{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"bu" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bv" = ( -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bw" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bx" = ( -/obj/structure/bed/chair{ - icon_state = "chair_preview"; - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"by" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/device/healthanalyzer/advanced, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bA" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/item/roller/adv, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bB" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bC" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bD" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/toolbox/syndicate, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bE" = ( -/obj/machinery/iv_drip, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bF" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bG" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 10; - icon_state = "fwindow" - }, -/turf/simulated/shuttle/plating, -/area/houseboat) -"bI" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bJ" = ( -/turf/simulated/floor/reinforced{ - name = "Holodeck Projector Floor" - }, -/area/houseboat/holodeck_area) -"bK" = ( -/obj/machinery/computer/HolodeckControl/houseboat{ - dir = 2 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bL" = ( -/obj/machinery/clonepod/transhuman, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bM" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/steel{ - amount = 50 - }, -/obj/item/stack/material/steel{ - amount = 50 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bN" = ( -/obj/structure/table/steel_reinforced, -/obj/item/stack/material/glass{ - amount = 50 - }, -/obj/item/stack/material/glass{ - amount = 50 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bO" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bP" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bQ" = ( -/obj/machinery/body_scanconsole, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bR" = ( -/obj/machinery/transhuman/synthprinter, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bS" = ( -/obj/machinery/pros_fabricator{ - req_access = list() - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bT" = ( -/obj/machinery/autolathe{ - desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; - hacked = 1; - name = "Centcom Autolathe" - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bU" = ( -/obj/machinery/mecha_part_fabricator{ - req_access = list() - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bV" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/standard, -/obj/structure/bedsheetbin, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"bW" = ( -/obj/machinery/transhuman/resleever, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"bX" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"bY" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"bZ" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"ca" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"cb" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"cc" = ( -/obj/machinery/vending/medical{ - density = 0; - pixel_x = 0; - pixel_y = 0; - req_access = list() - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cd" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "dongleship_blast"; - name = "exterior shutters"; - pixel_x = 28 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"ce" = ( -/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{ - pixel_x = 0; - pixel_y = 0 - }, -/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 - }, -/obj/item/weapon/storage/box/body_record_disk, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 10; - icon_state = "fwindow" - }, -/obj/machinery/door/blast/shutters{ - density = 1; - dir = 2; - icon_state = "shutter1"; - id = "dongleship_blast"; - layer = 3.3; - name = "Blast Shutters"; - opacity = 1 - }, -/obj/structure/window/reinforced, -/turf/simulated/shuttle/plating, -/area/houseboat) -"cg" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"ch" = ( -/obj/machinery/chemical_dispenser/ert, -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"ci" = ( -/obj/structure/flora/pottedplant/minitree, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cj" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"ck" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cl" = ( -/obj/structure/railing, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cm" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cn" = ( -/obj/effect/step_trigger/teleporter{ - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - pixel_y = -32; - teleport_x = 128; - teleport_y = 100; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"co" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cp" = ( -/obj/effect/step_trigger/teleporter{ - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - pixel_y = -32; - teleport_x = 129; - teleport_y = 100; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/techmaint, -/area/houseboat) -"cq" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cr" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cs" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"ct" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cu" = ( -/obj/machinery/door/airlock/voidcraft/vertical, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cv" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cw" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cx" = ( -/obj/structure/table/rack, -/obj/item/device/suit_cooling_unit, -/obj/item/weapon/tank/air, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cy" = ( -/obj/machinery/door/blast/regular{ - icon_state = "pdoor1"; - dir = 8 - }, -/turf/space, -/area/houseboat) -"cz" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cA" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cB" = ( -/obj/structure/closet{ - name = "custodial" - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/item/weapon/mop, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cC" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cD" = ( -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"cE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"cF" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/ore_box, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"cG" = ( -/obj/structure/ore_box, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"cH" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cI" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cJ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"cK" = ( -/obj/machinery/door/window/brigdoor/southleft{ - name = "Cell 3"; - icon_state = "leftsecure"; - dir = 1; - req_access = list(2); - id = "Cell 3" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "security_lockdown"; - name = "Security Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cL" = ( -/obj/effect/step_trigger/teleporter{ - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - teleport_x = 126; - teleport_y = 122; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cM" = ( -/obj/structure/closet/hydrant{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"cN" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"cO" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"cP" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/houseboat) -"cQ" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cR" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3" - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cS" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cT" = ( -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cU" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 12; - pixel_y = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cV" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"cW" = ( -/obj/machinery/computer/cryopod{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"cX" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"cY" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"cZ" = ( -/obj/machinery/cryopod, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor/grid, -/area/houseboat) -"da" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/houseboat) -"db" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"dc" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"dd" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/houseboat) -"de" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/steel_grid, -/area/houseboat) -"df" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dg" = ( -/turf/simulated/floor/reinforced, -/area/houseboat) -"dh" = ( -/obj/item/device/perfect_tele, -/turf/simulated/floor/reinforced, -/area/houseboat) -"di" = ( -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "dongleship_blast"; - name = "exterior shutters"; - pixel_x = 28 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"dj" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"dk" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dl" = ( -/obj/structure/catwalk, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/plating, -/area/houseboat) -"dm" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/houseboat) -"dn" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/turf/simulated/floor/plating, -/area/houseboat) -"do" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dp" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 6 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"ds" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dt" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"du" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 10 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dv" = ( -/obj/structure/railing, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, -/turf/simulated/floor/plating, -/area/houseboat) -"dw" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dx" = ( -/obj/machinery/computer/teleporter{ - icon_state = "computer"; - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"dy" = ( -/obj/machinery/light, -/obj/machinery/teleport/station{ - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"dz" = ( -/obj/machinery/teleport/hub, -/turf/simulated/floor/reinforced, -/area/houseboat) -"dA" = ( -/obj/effect/step_trigger/teleporter{ - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - pixel_y = 0; - teleport_x = 102; - teleport_y = 109; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"dB" = ( -/obj/effect/step_trigger/teleporter{ - icon = 'icons/obj/stairs.dmi'; - invisibility = 0; - name = "stairs"; - pixel_y = 0; - teleport_x = 101; - teleport_y = 109; - teleport_z = 12 - }, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"dC" = ( -/obj/machinery/light, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/steel, -/area/houseboat) -"dD" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dE" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/turf/simulated/floor/plating, -/area/houseboat) -"dF" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dG" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dH" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dI" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) "dJ" = ( /turf/unsimulated/wall/seperator, /area/space) -"dK" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/purple{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - name = "small craft wall"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dM" = ( -/obj/structure/railing, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/purple{ - icon_state = "intact"; - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/houseboat) -"dN" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dO" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/houseboat) -"dP" = ( -/obj/structure/railing, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/houseboat) "dQ" = ( /obj/effect/step_trigger/zlevel_fall/beach, /turf/space/sandyscroll, /area/space) -"dR" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dS" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 5 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dT" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dU" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 6 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - icon_state = "map-supply"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dV" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dW" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"dX" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, -/turf/simulated/floor/plating, -/area/houseboat) -"dY" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"dZ" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/turf/simulated/floor/plating, -/area/houseboat) -"ea" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"eb" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/houseboat) -"ec" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/elite, -/turf/simulated/floor/wood, -/area/houseboat) -"ed" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor/wood, -/area/houseboat) -"ee" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/power/fractal_reactor/fluff/converter, -/turf/simulated/floor/plating, -/area/houseboat) -"ef" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"eg" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"eh" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer_1"; - use_power = 1; - power_setting = 20; - set_temperature = 73 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"ei" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"ej" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"ek" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/houseboat) -"el" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"em" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/plating, -/area/houseboat) -"en" = ( -/obj/item/weapon/bedsheet/captaindouble, -/obj/structure/bed/double, -/turf/simulated/floor/wood, -/area/houseboat) -"eo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/houseboat) -"ep" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/shuttle/wall/voidcraft/blue{ - hard_corner = 1; - icon_state = "void-hc"; - name = "small craft wall hc"; - stripe_color = "#45b3d8" - }, -/area/houseboat) -"eq" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/houseboat) -"er" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"es" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - icon_state = "intact"; - dir = 5 - }, -/turf/simulated/floor/plating, -/area/houseboat) "et" = ( /turf/space/bluespace, /area/space) -"eu" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"ev" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/wood, -/area/houseboat) -"ew" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - icon_state = "intact"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"ex" = ( -/turf/simulated/shuttle/wall/voidcraft/blue, -/area/houseboat) -"ey" = ( -/turf/unsimulated/wall, -/area/space) -"ez" = ( -/obj/structure/window/reinforced, -/turf/unsimulated/wall, -/area/space) -"eA" = ( -/turf/simulated/shuttle/wall, -/area/shuttle/cruiser/cruiser) -"eB" = ( -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "cruiser_shuttle_bay_sensor"; - pixel_x = -11; - pixel_y = 28 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "cruiser_shuttle_bay"; - pixel_x = 0; - pixel_y = 28; - tag_door = "cruiser_shuttle_bay_hatch" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/shuttle_control/cruiser_shuttle, -/turf/simulated/floor/reinforced, -/area/houseboat) -"eC" = ( -/turf/simulated/floor/holofloor/beach/sand, -/area/houseboat/holodeck/beach) -"eD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/unsimulated/wall, -/area/space) -"eE" = ( -/obj/structure/flora/grass/both, -/turf/simulated/floor/holofloor/snow, -/area/houseboat/holodeck/snow) -"eF" = ( -/turf/simulated/floor/holofloor/snow, -/area/houseboat/holodeck/snow) -"eG" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/desert) -"eH" = ( -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/desert) -"eI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/unsimulated/wall, -/area/space) -"eK" = ( -/obj/structure/catwalk, -/obj/machinery/vending/tool, -/turf/simulated/floor/plating, -/area/houseboat) -"eL" = ( -/obj/structure/catwalk, -/obj/machinery/vending/engivend, -/turf/simulated/floor/plating, -/area/houseboat) -"eM" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/turf/simulated/floor/plating, -/area/houseboat) -"eN" = ( -/obj/machinery/computer/shuttle_control/cruiser_shuttle, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) "eO" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -1833,700 +22,9 @@ }, /turf/space/sandyscroll, /area/space) -"eP" = ( -/obj/effect/overlay/palmtree_r, -/turf/simulated/floor/holofloor/beach/sand, -/area/houseboat/holodeck/beach) -"eQ" = ( -/obj/item/weapon/beach_ball, -/turf/simulated/floor/holofloor/beach/sand, -/area/houseboat/holodeck/beach) -"eR" = ( -/obj/effect/overlay/palmtree_l, -/obj/effect/overlay/coconut, -/turf/simulated/floor/holofloor/beach/sand, -/area/houseboat/holodeck/beach) -"eS" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/desert) -"eW" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/tank/nitrogen, -/turf/simulated/floor/plating, -/area/houseboat) -"eX" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"eY" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"eZ" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/plating, -/area/houseboat) -"fa" = ( -/obj/effect/floor_decal/techfloor/orange{ - icon_state = "techfloororange_edges"; - dir = 5 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fb" = ( -/obj/structure/bed/chair/shuttle{ - dir = 1 - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"fc" = ( -/obj/effect/floor_decal/techfloor/orange{ - icon_state = "techfloororange_edges"; - dir = 9 - }, -/obj/effect/floor_decal/corner_techfloor_grid, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fd" = ( -/turf/unsimulated/beach/sand{ - icon_state = "beach" - }, -/area/houseboat/holodeck/beach) -"fe" = ( -/obj/structure/flora/tree/dead, -/turf/simulated/floor/holofloor/snow, -/area/houseboat/holodeck/snow) -"ff" = ( -/obj/structure/flora/tree/pine, -/turf/simulated/floor/holofloor/snow, -/area/houseboat/holodeck/snow) "fg" = ( /turf/space/bluespace, /area/shuttle/excursion/bluespace) -"fh" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/plating, -/area/houseboat) -"fi" = ( -/obj/machinery/atmospherics/pipe/tank/oxygen{ - icon_state = "o2_map"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fj" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fk" = ( -/obj/machinery/atmospherics/pipe/tank/air{ - icon_state = "air_map"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fl" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "cruiser_shuttle"; - pixel_x = 25; - pixel_y = 0; - tag_door = "cruiser_shuttle_hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"fm" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"fn" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - icon_state = "techfloororange_corners"; - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange/corner, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fo" = ( -/obj/effect/floor_decal/techfloor/orange, -/obj/effect/floor_decal/techfloor/orange{ - icon_state = "techfloororange_edges"; - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fp" = ( -/obj/effect/floor_decal/techfloor/orange/corner{ - icon_state = "techfloororange_corners"; - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange/corner{ - icon_state = "techfloororange_corners"; - dir = 8 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - icon_state = "corner_techfloor_grid"; - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fq" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/reinforced, -/area/houseboat) -"fr" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fs" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"ft" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fu" = ( -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"fv" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/rcd, -/obj/item/weapon/rcd_ammo, -/obj/item/weapon/rcd_ammo, -/turf/simulated/floor/plating, -/area/houseboat) -"fw" = ( -/turf/simulated/floor/holofloor/beach/water, -/area/houseboat/holodeck/beach) -"fx" = ( -/obj/structure/flora/grass/green, -/turf/simulated/floor/holofloor/snow, -/area/houseboat/holodeck/snow) -"fy" = ( -/obj/structure/catwalk, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/plating, -/area/houseboat) -"fz" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fA" = ( -/obj/machinery/power/fractal_reactor/fluff/converter, -/obj/structure/cable/cyan, -/turf/simulated/floor/plating, -/area/houseboat) -"fB" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fC" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = null; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"fD" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "cruiser_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/shuttle/floor/black, -/area/shuttle/cruiser/cruiser) -"fE" = ( -/obj/effect/floor_decal/techfloor/orange{ - icon_state = "techfloororange_edges"; - dir = 6 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fF" = ( -/obj/effect/floor_decal/techfloor/orange{ - icon_state = "techfloororange_edges"; - dir = 10 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/houseboat) -"fG" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fH" = ( -/turf/simulated/floor/plating, -/area/houseboat) -"fI" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/toolbox/syndicate, -/turf/simulated/floor/plating, -/area/houseboat) -"fJ" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/steel_reinforced, -/obj/machinery/recharger, -/turf/simulated/floor/plating, -/area/houseboat) -"fK" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating, -/area/shuttle/cruiser/cruiser) -"fL" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/wall, -/area/space) -"fM" = ( -/obj/machinery/atmospherics/unary/heater, -/turf/simulated/floor/plating, -/area/houseboat) -"fN" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/portable_atmospherics/powered/pump, -/turf/simulated/floor/plating, -/area/houseboat) -"fO" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/telecomms/relay/preset/houseboat{ - toggled = 0 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fP" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fQ" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"fR" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/area/shuttle/cruiser/cruiser) -"fS" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood/corner, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"fT" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 6 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"fU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/picnic) -"fV" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"fW" = ( -/turf/simulated/floor/holofloor/space, -/area/houseboat/holodeck/space) -"fX" = ( -/obj/structure/bed/holobed, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/bunking) -"fY" = ( -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/bunking) -"fZ" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"ga" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/holostool, -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/picnic) -"gb" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/shuttle/plating/airless, -/area/space) -"gc" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gd" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/picnic) -"ge" = ( -/turf/simulated/floor/holofloor/desert, -/area/houseboat/holodeck/picnic) -"gf" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 8 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gg" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/area/space) -"gh" = ( -/obj/structure/holostool, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/bunking) -"gi" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer_1"; - use_power = 1; - power_setting = 20; - set_temperature = 73 - }, -/turf/simulated/floor/plating, -/area/houseboat) -"gj" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 1 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gk" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gl" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/effect/floor_decal/spline/fancy/wood{ - dir = 1 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gm" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/floor_decal/spline/fancy/wood/corner{ - dir = 4 - }, -/turf/simulated/floor/holofloor/grass, -/area/houseboat/holodeck/picnic) -"gn" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/bunking) -"go" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/unsimulated/wall, -/area/space) -"gp" = ( -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/gaming) -"gq" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gr" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 8 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gs" = ( -/obj/structure/holohoop, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gt" = ( -/obj/effect/floor_decal/corner/red/full{ - dir = 1 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gu" = ( -/obj/structure/table/holotable, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/clothing/suit/armor/tdome/red, -/obj/item/clothing/under/color/red, -/obj/item/weapon/holo/esword/red, -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/thunderdome) -"gv" = ( -/obj/effect/floor_decal/corner/red{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/thunderdome) -"gw" = ( -/obj/structure/bed/chair/holochair, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/gaming) -"gx" = ( -/obj/effect/floor_decal/corner/red{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gy" = ( -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/thunderdome) -"gz" = ( -/obj/structure/table/woodentable/holotable, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/gaming) -"gA" = ( -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gB" = ( -/obj/item/weapon/beach_ball/holoball, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gC" = ( -/obj/structure/bed/chair/holochair{ - dir = 1 - }, -/turf/simulated/floor/holofloor/wood, -/area/houseboat/holodeck/gaming) -"gD" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gE" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gF" = ( -/obj/effect/floor_decal/corner/green/full, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gG" = ( -/obj/structure/holohoop{ - dir = 1 - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gH" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/basketball) -"gI" = ( -/obj/structure/table/holotable, -/obj/item/clothing/head/helmet/thunderdome, -/obj/item/clothing/suit/armor/tdome/green, -/obj/item/clothing/under/color/green, -/obj/item/weapon/holo/esword/green, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/thunderdome) -"gJ" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/holofloor/tiled, -/area/houseboat/holodeck/thunderdome) -"gK" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/unsimulated/wall, -/area/space) -"gL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/unsimulated/wall, -/area/space) -"gM" = ( -/turf/simulated/floor/holofloor/reinforced, -/area/houseboat/holodeck/off) -"gN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) "gO" = ( /obj/effect/step_trigger/teleporter/planetary_fall/virgo3b, /turf/simulated/sky/virgo3b/south, @@ -2534,30 +32,6 @@ "gP" = ( /turf/simulated/sky/virgo3b/south, /area/shuttle/excursion/virgo3b_sky) -"gQ" = ( -/obj/machinery/power/fractal_reactor/fluff/smes, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"gR" = ( -/obj/machinery/power/fractal_reactor/fluff/smes, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/houseboat) -"gS" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/houseboat) "gT" = ( /turf/space/transit/east, /area/space) @@ -2782,6 +256,60 @@ icon_state = "rock" }, /area/space) +"kd" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 4; + teleport_z_offset = 4 + }, +/turf/space/transit/north, +/area/space) +"oW" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 4; + teleport_z_offset = 4 + }, +/turf/space, +/turf/space/transit/north, +/area/space) +"yn" = ( +/turf/space/transit/north, +/area/ninja_dojo/transit) +"HO" = ( +/turf/space/transit/north, +/area/space) +"Js" = ( +/turf/space/transit/north, +/area/skipjack_station/transit) +"Nb" = ( +/turf/space, +/turf/space/transit/north, +/area/space) +"SG" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/north, +/area/space) +"TL" = ( +/turf/space/transit/east, +/area/shuttle/specialops/transit) (1,1,1) = {" aa @@ -2927,42 +455,42 @@ aa "} (2,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd aa aa aa @@ -3013,7 +541,7 @@ dQ dQ dQ dQ -aa +dJ gV gV gV @@ -3069,42 +597,42 @@ aa "} (3,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3155,7 +683,7 @@ gU gU gU dQ -aa +dJ gV et et @@ -3211,42 +739,42 @@ aa "} (4,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3297,7 +825,7 @@ gU gU gU dQ -aa +dJ gV et et @@ -3353,42 +881,42 @@ aa "} (5,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3439,7 +967,7 @@ eO gU gU dQ -aa +dJ gV et et @@ -3495,42 +1023,42 @@ aa "} (6,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3581,7 +1109,7 @@ eO eO gU dQ -aa +dJ gV et et @@ -3637,42 +1165,42 @@ aa "} (7,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3723,7 +1251,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -3779,42 +1307,42 @@ aa "} (8,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3865,7 +1393,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -3921,42 +1449,42 @@ aa "} (9,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4007,7 +1535,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -4063,42 +1591,42 @@ aa "} (10,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +SG +SG +SG +SG +SG +SG +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4149,7 +1677,7 @@ eO eO gU dQ -aa +dJ gV et et @@ -4205,42 +1733,42 @@ aa "} (11,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4347,42 +1875,42 @@ aa "} (12,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4433,7 +1961,7 @@ eO gU gU dQ -aa +dJ gV et et @@ -4489,42 +2017,42 @@ aa "} (13,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4575,7 +2103,7 @@ eO gU gU dQ -aa +dJ gV et et @@ -4631,42 +2159,42 @@ aa "} (14,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4717,7 +2245,7 @@ eO gU gU dQ -aa +dJ gV et et @@ -4773,42 +2301,42 @@ aa "} (15,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4859,7 +2387,7 @@ eO eO gU dQ -aa +dJ gV et et @@ -4915,42 +2443,42 @@ aa "} (16,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5001,7 +2529,7 @@ eO eO gU dQ -aa +dJ gV et et @@ -5057,42 +2585,42 @@ aa "} (17,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5143,7 +2671,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -5199,42 +2727,42 @@ aa "} (18,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5285,7 +2813,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -5341,42 +2869,42 @@ aa "} (19,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5427,7 +2955,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -5483,42 +3011,42 @@ aa "} (20,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5569,7 +3097,7 @@ eO eO gU dQ -aa +dJ gV et et @@ -5625,42 +3153,42 @@ aa "} (21,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5711,7 +3239,7 @@ eO gU gU dQ -aa +dJ gV et et @@ -5767,42 +3295,42 @@ aa "} (22,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5853,7 +3381,7 @@ gU gU gU dQ -aa +dJ gV et et @@ -5909,42 +3437,42 @@ aa "} (23,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5995,7 +3523,7 @@ gU gU gU dQ -aa +dJ gV et et @@ -6051,42 +3579,42 @@ aa "} (24,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6137,7 +3665,7 @@ dQ dQ dQ dQ -aa +dJ gV gV gV @@ -6193,42 +3721,42 @@ 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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6335,42 +3863,42 @@ aa "} (26,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6477,42 +4005,42 @@ aa "} (27,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6619,42 +4147,42 @@ aa "} (28,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6761,42 +4289,42 @@ aa "} (29,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6903,42 +4431,42 @@ aa "} (30,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7045,42 +4573,42 @@ aa "} (31,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7187,42 +4715,42 @@ aa "} (32,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +SG +SG +SG +SG +SG +SG +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7329,42 +4857,42 @@ aa "} (33,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7471,42 +4999,42 @@ aa "} (34,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7613,42 +5141,42 @@ aa "} (35,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7755,42 +5283,42 @@ aa "} (36,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7897,42 +5425,42 @@ aa "} (37,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -8039,42 +5567,42 @@ aa "} (38,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -8181,42 +5709,42 @@ aa "} (39,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -8323,42 +5851,42 @@ aa "} (40,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd aa aa aa @@ -12532,29 +10060,29 @@ 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 +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv aa hv hv @@ -12674,29 +10202,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -12816,29 +10344,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -12958,29 +10486,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13100,29 +10628,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13242,29 +10770,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +hG +hG +hG +hG +hG +hG +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13384,29 +10912,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13526,29 +11054,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13668,29 +11196,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13810,29 +11338,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13952,29 +11480,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14094,29 +11622,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14236,29 +11764,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14378,29 +11906,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14520,29 +12048,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14662,29 +12190,29 @@ 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 +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14761,29 +12289,6 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa aa aa aa @@ -14827,6 +12332,29 @@ aa aa aa aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14901,29 +12429,6 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa aa aa aa @@ -14969,6 +12474,29 @@ aa aa aa aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +hH +TL +TL +TL +hI +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -15041,30 +12569,6 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -dg -dg -fm -dg -dg -dg -dg -ab -af -aa -aa -aa -aa -aa -aa -aa -aa -aa aa aa aa @@ -15136,6 +12640,30 @@ gT gT hv aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +hG +hH +hH +hI +hI +gT +gT +gT +gT +gT +gT +gT +gT +hv +aa "} (88,1,1) = {" aa @@ -15180,29 +12708,6 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ab -ab -dg -dg -dg -dg -dg -dg -dg -dg -aN -cy -aa -aa -aa -aa -aa aa aa aa @@ -15253,6 +12758,29 @@ aa aa aa aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -15321,29 +12849,6 @@ aa aa aa aa -ab -ab -ab -ab -af -ek -ab -ab -dg -dg -dg -fa -fn -fE -dg -dg -dg -aN -cy -aa -aa -aa -aa aa aa aa @@ -15395,6 +12900,29 @@ aa aa aa aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -15462,29 +12990,6 @@ aa aa aa aa -ab -ab -ab -dL -ab -eb -eq -ab -eu -dg -dg -dg -dg -fo -dg -dg -dg -dg -aN -cy -aa -aa -aa aa aa aa @@ -15537,6 +13042,29 @@ aa aa aa aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -15600,30 +13128,6 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -af -dK -dm -dF -dm -ba -dg -dg -dg -dg -dg -fo -dg -dg -dg -dg -aN -cy aa aa aa @@ -15704,6 +13208,30 @@ gT gT hv aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv +aa "} (92,1,1) = {" aa @@ -15741,31 +13269,6 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -dk -dD -dM -dS -dF -dm -ba -dg -dg -dg -dg -dg -fo -dg -dg -dg -dg -aN -cy aa aa aa @@ -15822,6 +13325,31 @@ aa aa aa aa +aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv +aa hv gT gT @@ -15877,37 +13405,6 @@ aa aa aa aa -ab -ab -ab -at -ab -ab -ab -ab -cJ -cR -cR -ab -dl -dm -dm -dR -dF -dm -ab -eu -dg -dg -dg -dg -fo -dg -dg -dg -dg -aN -cy aa aa aa @@ -15964,6 +13461,37 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +aa hv hv hv @@ -16013,43 +13541,43 @@ aa aa aa aa -ab -ab -at -at -at -ab -ab -cm -cs -aN -cm -ab -bF -aT -cJ -cS -cS -ab -dm -dm -dm -dU -ef -em -df -ab -dg -dg -dg -fc -fp -fF -dg -dg -dg -aN -cy +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 +aa +aa +aa +aa +aa aa aa aa @@ -16151,47 +13679,47 @@ aa aa aa aa -ab -ab -at -at -ab -bP -aT -aT -aT -cg -ab -ab -ab -cu -ab -ab -cz -aT -cK -cT -cT -ab -dn -dm -dN -dT -ee -ab -ab -ab -ab -dg -dg -dg -dg -dg -dg -dg -dg -aN -cy +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -16289,51 +13817,51 @@ aa aa aa aa -ab -ab -ab -ab -ab -br -by -bE -aT -bQ -aT -aT -aT -ch -ab -ab -bX -aN -bX -ba -aT -aT -cJ -cT -cT -ab -dp -dE -dH -dX -af -ab -ab -ab -ab -ab -dg -dg -fq -dg -dg -dg -dg -ab -af +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -16425,57 +13953,57 @@ aa aa aa aa -ab -ab -at -at -at -ab -af -aK -aP -ab -bh -ap -aT -aT -aT -aT -aT -aT -ce -af -ab -aN -aN -aN -aN -ab -aT -cH -cJ -cU -cX -ab -do -dm -dF -dV -ab -en -ab -en -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gg +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -16563,61 +14091,61 @@ aa aa aa aa -ab -ab -ab -ab -af -aq -ai -ai -ai -al -aH -aL -aQ -ab -bi -ap -bz -bF -aT -aT -aT -aT -aT -ba -aN -aN -aN -aN -aN -af -ab -ab -ab -ab -ab -ab -do -dm -dF -ab -ec -eo -ab -ev -ec -ab -ex -fi -fs -fA -fH -fM -ab -gb -gg +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 +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 @@ -16704,62 +14232,62 @@ aa aa aa aa -ab -af -ah -ai -ai -al -ai -ag -ag -ag -ag -ag -aL -aR -ab -bj -bs -bA -bG -bL -bR -bW -cc -af -af -ck -aN -aN -aN -aN -aN -cA -aN -cL -ab -ab -ab -do -dm -dF -ab -ed -ai -ab -ai -ed -ab -eW -fh -fr -fG -fH -fH -ab -gb -gg +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 +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 @@ -16845,63 +14373,63 @@ aa aa aa aa -ab -ae -ag -ag -ag -ag -am -ai -ag -az -aC -az -ag -aL -aS -ab -ab -ab -ab -bH -bH -bH -ab -ab -ab -ci -aN -co -co -aN -cw -af -ab -ab -ab -ab -ab -ab -dq -cu -ab -ab -ab -cu -ab -cu -ab -ab -eK -eX -fv -fJ -gi -gQ -ab -gb -gg +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 +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 @@ -16986,64 +14514,64 @@ aa (101,1,1) = {" aa aa -ab -ab -ae -ag -ag -aj -ag -am -ai -ag -aA -aD -aA -ag -aL -aT -ba -aN -aN -aN -aN -aN -aN -bX -aJ -aN -aN -cl -cn -bv -cv -aN -aN -aJ -aN -cM -aN -bX -aJ -aN -aN -bX -aJ -aN -aN -aN -aN -bX -aJ -ea -fj -ft -fI -fQ -gN -ab -gb -gg +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 +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 @@ -17128,64 +14656,64 @@ aa (102,1,1) = {" aa aa -ab -ab -ae -ag -ag -aj -ag -am -ai -ag -aA -aA -aA -ag -aL -aT -ba -bk -bt -aN -aN -aN -aN -aN -aJ -aN -aN -cl -cp -bv -cv -aN -aN -aJ -bk -aN -aN -aN -aJ -bk -aN -aN -aJ -bk -aN -aN -aN -aN -aJ -ea -fj -dG -fO -fQ -gS -ab -gb -gg +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 +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 @@ -17271,63 +14799,63 @@ aa aa aa aa -ab -ae -ag -ag -ag -ag -am -ai -ag -aB -aB -aB -ag -aL -aU -ab -ab -ab -ab -bH -bH -bH -ab -ab -ab -ci -aN -cq -cq -aN -cw -af -ab -af -cN -cV -cY -ab -dr -cu -ab -ab -ab -cu -ab -cu -ab -ab -eL -eX -fy -fN -gi -gR -ab -gb -gg +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 +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 @@ -17414,62 +14942,62 @@ aa aa aa aa -ab -af -ai -ai -ai -an -ai -ag -ag -ag -ag -ag -aL -aV -ab -bl -bu -bB -bv -bv -bv -bB -bv -af -af -ck -aN -aN -aN -aN -ba -cB -ab -cO -cW -cZ -ab -ds -dm -dm -ab -ed -ai -ab -ai -ed -ab -eM -eZ -fB -fP -fH -fH -ab -gb -gg +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 +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 @@ -17557,61 +15085,61 @@ aa aa aa aa -ab -ab -ab -ab -af -ar -au -ai -ai -an -aI -aL -aW -ab -bm -bv -bv -bv -bv -bv -bv -bv -bv -ba -aN -aN -aN -aN -aN -ab -ab -ab -ab -ab -ab -ab -ds -dm -dm -ab -ec -eo -ab -ev -ec -ab -ab -fk -fz -fA -fH -fM -ab -gb -gg +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 +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 @@ -17703,57 +15231,57 @@ aa aa aa aa -ab -ab -av -av -av -ab -af -aM -aX -ab -bn -bv -bC -bv -bM -bS -bY -bv -bv -af -ab -aN -aN -aN -aN -ab -aT -cI -cP -cI -aW -ab -dt -dG -dm -dY -ab -en -ab -en -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gg +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -17851,51 +15379,51 @@ aa aa aa aa -ab -ab -ab -ab -ab -bw -bD -bI -bN -bT -bZ -bv -bv -cj -ab -ab -bk -aN -bk -ba -aT -aT -aT -aT -aT -ab -ds -dF -dm -dW -af -ab -ab -ab -ab -ab -dg -dg -fm -dg -dg -dg -dg -ab -af +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -17997,47 +15525,47 @@ aa aa aa aa -ab -ab -av -av -ab -bU -ca -bv -bv -cj -ab -ab -ab -cu -ab -ab -aT -aT -aT -aT -aT -df -dv -dF -dm -dW -eh -ab -ab -ab -ab -dg -dg -dg -dg -dg -dg -dg -dg -aN -cy +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18143,43 +15671,43 @@ aa aa aa aa -ab -ab -av -av -av -ab -ab -cr -ct -aN -cx -ab -cC -ab -cu -ab -cu -ab -du -dH -dE -dZ -eg -er -ab -ab -dg -dg -aN -aN -aN -aN -aN -dg -dg -aN -cy +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 +aa +aa +aa +aa +aa aa aa aa @@ -18291,37 +15819,37 @@ aa aa aa aa -ab -ab -ab -av -ab -ab -ab -ab -cQ -ab -da -ab -dm -dF -dm -dm -ei -dm -ab -eu -dg -eA -eA -eA -fC -eA -eA -eA -dg -aN -cy +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 aa aa @@ -18439,31 +15967,31 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -dw -dI -dO -dm -ei -dm -ba -dg -dg -eA -eN -fb -fu -fb -fK -fR -dg -aN -cy +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 @@ -18582,30 +16110,30 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -af -dP -ea -el -ea -ba -dg -dg -eA -eY -fl -fu -fb -fK -fR -dg -aN -cy +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 @@ -18728,26 +16256,26 @@ aa aa aa aa -ab -ab -ab -ab -af -ej -es -ab -eB -dg -eA -eA -eA -fD -eA -eA -eA -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -18871,25 +16399,25 @@ aa aa aa aa -ab -ab -ab -ab -ep -ew -ab -ex -dg -dg -aN -aN -aN -aN -aN -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -19014,24 +16542,24 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ex -ex -dg -dg -dg -dg -dg -dg -dg -dg -aN -cy +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -19159,21 +16687,21 @@ aa aa aa aa -ab -ab -ab -ab -ab -ex -dg -dg -fq -dg -dg -dg -dg -ab -af +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -19303,18 +16831,18 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -19447,15 +16975,15 @@ aa aa aa aa -ab -ab -ab -ab -ab -ab -ab -ab -ab +aa +aa +aa +aa +aa +aa +aa +aa +aa aa aa aa @@ -19684,30 +17212,6 @@ aa (120,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa aa aa aa @@ -19797,6 +17301,30 @@ aa aa aa aa +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +oW +oW +oW +oW aa aa aa @@ -19826,16 +17354,6 @@ aa (121,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -19873,25 +17391,6 @@ aa aa aa aa -ey -gL -gL -gL -gL -gL -ey -gL -gL -gL -gL -gL -ey -gL -gL -gL -gL -gL -ey aa aa aa @@ -19940,6 +17439,35 @@ aa aa aa aa +aa +aa +aa +aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hw hw hw @@ -19968,16 +17496,6 @@ aa (122,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -20015,25 +17533,6 @@ aa aa aa aa -ez -eC -eP -fd -fw -fw -fL -fS -fZ -gc -gc -gj -fL -gp -gp -gp -gp -gp -gK aa aa aa @@ -20082,6 +17581,35 @@ aa aa aa aa +aa +aa +aa +aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hw hp hp @@ -20110,16 +17638,6 @@ aa (123,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -20142,40 +17660,12 @@ aa aa aa aa -ab -ab -at -at -at -at -at -ab -ab aa aa aa aa aa aa -ez -eC -eQ -fd -fw -fw -fL -fT -ga -gd -ga -gk -fL -gp -gw -gz -gC -gp -gK aa aa aa @@ -20224,6 +17714,44 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hw hp ha @@ -20252,16 +17780,6 @@ aa (124,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -20284,40 +17802,12 @@ aa aa aa aa -ab -cD -cD -cD -cD -db -dg -dx -ab aa aa aa aa aa aa -ez -eC -eC -fd -fw -fw -fL -fU -ga -gd -ga -gl -fL -gp -gw -gz -gC -gp -gK aa aa aa @@ -20366,6 +17856,44 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hw hp ha @@ -20394,72 +17922,6 @@ aa (125,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -ab -ab -ab -ab -ab -aa -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -cE -cD -cD -cD -db -dh -dy -ab -aa -aa -aa -aa -aa -aa -ez -eC -eC -fd -fw -fw -fL -fU -fU -ge -fU -gk -fL -gp -gw -gz -gC -gp -gK aa aa aa @@ -20508,6 +17970,72 @@ 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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +HO +HO +HO +HO +SG +SG +yn +yn +yn +yn +SG +SG +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hw hp ha @@ -20536,72 +18064,6 @@ aa (126,1,1) = {" aa aa -ac -ad -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -aF -ab -aN -aY -bb -ab -aa -ab -bJ -bJ -bJ -bJ -bJ -cf -aa -aa -aa -aa -aa -aa -cy -ap -ap -cD -cD -db -di -dz -ab -aa -aa -aa -aa -aa -aa -ez -eC -eR -fd -fw -fw -fL -fV -fV -gf -gf -gm -fL -gp -gp -gp -gp -gp -gK aa aa aa @@ -20650,6 +18112,72 @@ 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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +HO +HO +HO +HO +SG +yn +yn +yn +yn +yn +yn +SG +SG +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hw hp ha @@ -20678,72 +18206,6 @@ aa (127,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ak -ao -as -aw -ap -aE -af -ab -aO -ab -bc -ab -ab -ab -bJ -bJ -bJ -bJ -bJ -cf -aa -aa -aa -aa -aa -aa -cy -ap -ap -ap -ap -dc -ab -ab -ab -aa -aa -aa -aa -aa -aa -ey -eD -eD -eD -eD -eD -ey -eD -eD -eD -eD -eD -ey -eD -eD -eD -eD -eD -ey aa aa aa @@ -20792,6 +18254,72 @@ 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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +SG +SG +SG +SG +SG +yn +yn +yn +yn +yn +yn +yn +SG +SG +HO +HO +HO +Nb +Nb +Nb +oW +aa hw hp ha @@ -20820,72 +18348,6 @@ aa (128,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ak -ap -ap -ap -ap -ap -ap -aJ -aN -aN -aN -aN -aN -aJ -bJ -bJ -bJ -bJ -bJ -cf -aa -aa -aa -aa -aa -aa -cy -ap -ap -ap -ap -dd -cD -dB -ab -aa -aa -aa -aa -aa -aa -ez -eE -eF -eF -eF -eF -fL -fW -fW -fW -fW -fW -fL -gq -gx -gA -gD -gE -gK aa aa aa @@ -20934,6 +18396,72 @@ 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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +SG +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +SG +HO +HO +HO +Nb +Nb +Nb +oW +aa hw hp hp @@ -20962,72 +18490,6 @@ aa (129,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ak -ap -ap -ax -as -ap -aG -aJ -aN -aN -bd -aN -aN -aJ -bJ -bJ -bJ -bJ -bJ -cf -aa -aa -aa -aa -aa -aa -cy -ap -ap -ap -ap -dd -cD -dA -ab -aa -aa -aa -aa -aa -aa -ez -eF -eF -fe -eF -eF -fL -fW -fW -fW -fW -fW -fL -gr -gx -gA -gD -gF -gK aa aa aa @@ -21076,6 +18538,72 @@ 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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +SG +SG +SG +SG +yn +yn +yn +yn +yn +yn +yn +yn +yn +SG +HO +HO +HO +Nb +Nb +Nb +oW +aa hw hw hw @@ -21104,72 +18632,6 @@ aa (130,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ak -ao -as -ay -as -ap -af -ab -aO -ab -ab -ab -bc -ab -bJ -bJ -bJ -bJ -bJ -cf -aa -aa -aa -aa -aa -aa -cy -ap -ap -ap -ap -de -ab -ab -ab -aa -aa -aa -aa -aa -aa -ez -eF -eF -eF -fx -eF -fL -fW -fW -fW -fW -fW -fL -gs -gx -gB -gD -gG -gK aa aa aa @@ -21242,76 +18704,76 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +HO +HO +HO +SG +yn +yn +yn +yn +yn +yn +yn +yn +yn +SG +HO +HO +HO +Nb +Nb +Nb +oW +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 "} (131,1,1) = {" aa aa -ac -ad -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ap -be -be -ap -ab -bK -bO -bV -cb -cd -ab -aa -aa -aa -aa -aa -aa -cy -ap -ap -cD -cD -db -dj -dj -ab -aa -aa -aa -aa -aa -aa -ez -eF -eF -ff -eF -eF -fL -fW -fW -fW -fW -fW -fL -gt -gx -gA -gD -gH -gK aa aa aa @@ -21360,6 +18822,72 @@ 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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +SG +SG +SG +SG +yn +yn +yn +yn +yn +yn +yn +yn +yn +SG +HO +HO +HO +Nb +Nb +Nb +oW +aa hx gW gW @@ -21388,72 +18916,6 @@ aa (132,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ab -aZ -bf -bo -bx -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -cF -cD -cD -cD -db -cG -dC -ab -aa -aa -aa -aa -aa -aa -ez -eF -eF -eF -eF -eF -fL -fW -fW -fW -fW -fW -fL -gq -gx -gA -gD -gE -gK aa aa aa @@ -21502,6 +18964,72 @@ 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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +SG +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +SG +HO +HO +HO +Nb +Nb +Nb +oW +aa hx gX gX @@ -21530,78 +19058,6 @@ aa (133,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ab -aZ -bf -bp -bx -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -cG -cG -cD -cD -db -cG -cG -ab -aa -aa -aa -aa -aa -aa -ey -eD -eD -eD -eD -eD -ey -eD -eD -eD -eD -eD -ey -eD -eD -eD -eD -eD -ey -gL -gL -gL -gL -gL -ey aa aa aa @@ -21644,6 +19100,78 @@ 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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +SG +SG +SG +SG +SG +yn +yn +yn +yn +yn +yn +yn +SG +SG +HO +HO +HO +Nb +Nb +Nb +oW +aa hx gY hb @@ -21672,78 +19200,6 @@ aa (134,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ab -aE -bg -bq -ap -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -av -av -av -av -av -ab -ab -aa -aa -aa -aa -aa -aa -ez -eG -eH -eH -eH -eH -fL -fX -fX -fX -fX -fX -go -gu -gy -gy -gy -gI -go -gM -gM -gM -gM -gM -gK aa aa aa @@ -21786,6 +19242,78 @@ 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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +HO +HO +HO +HO +SG +yn +yn +yn +yn +yn +yn +SG +SG +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hx gY hb @@ -21814,26 +19342,10 @@ aa (135,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa aa -ab -ab -ab -ab -ab -ab aa aa aa @@ -21861,31 +19373,6 @@ aa aa aa aa -ez -eH -eH -eS -eH -eH -fL -fY -fY -fY -fY -fY -go -gv -gy -gy -gy -gJ -go -gM -gM -gM -gM -gM -gK aa aa aa @@ -21928,6 +19415,47 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +HO +HO +HO +HO +SG +SG +yn +yn +yn +yn +SG +SG +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hx gY hb @@ -21956,16 +19484,6 @@ aa (136,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -22003,31 +19521,6 @@ aa aa aa aa -ez -eH -eH -eH -eH -eH -fL -fY -fY -fY -gh -gn -go -gv -gy -gy -gy -gJ -go -gM -gM -gM -gM -gM -gK aa aa aa @@ -22070,6 +19563,41 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hx gY hb @@ -22098,16 +19626,6 @@ aa (137,1,1) = {" aa aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac aa aa aa @@ -22145,31 +19663,6 @@ aa aa aa aa -ez -eH -eH -eH -eH -eH -fL -fY -fY -fY -gh -gn -go -gv -gy -gy -gy -gJ -go -gM -gM -gM -gM -gM -gK aa aa aa @@ -22212,6 +19705,41 @@ aa aa aa aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hx gY hb @@ -22287,31 +19815,6 @@ aa aa aa aa -ez -eH -eS -eH -eH -eG -fL -fY -fY -fY -fY -fY -go -gu -gy -gy -gy -gI -go -gM -gM -gM -gM -gM -gK aa aa aa @@ -22354,6 +19857,31 @@ aa aa aa aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hx gZ gZ @@ -22429,31 +19957,6 @@ aa aa aa aa -ey -eI -eI -eI -eI -eI -ey -eI -eI -eI -eI -eI -ey -eI -eI -eI -eI -eI -ey -eI -eI -eI -eI -eI -ey aa aa aa @@ -22496,6 +19999,31 @@ aa aa aa aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW +aa hx gW gW @@ -22613,30 +20141,30 @@ 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 +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW aa aa aa diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index 0f50b69daf..78707f0861 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -1358,12 +1358,17 @@ /turf/simulated/floor/tiled, /area/engineering/atmos) "acw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; dir = 1 }, +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "acx" = ( /turf/simulated/floor/tiled, @@ -1373,29 +1378,17 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/storage) "acz" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - autoclose = 1; - dir = 2; - id_tag = null; - name = "Laundry"; - req_access = list() +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 1 }, -/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/monofloor, +/obj/machinery/vending/loadout, +/turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "acA" = ( /obj/effect/floor_decal/borderfloor{ @@ -1908,6 +1901,7 @@ dir = 4; scrub_id = "atrium" }, +/obj/machinery/camera/network/research, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora_storage) "ado" = ( @@ -2488,6 +2482,14 @@ name = "Atmospherics Substation" }, /obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/maintenance/substation/surface_atmos) "aek" = ( @@ -3168,7 +3170,7 @@ dir = 4 }, /turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "afi" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 @@ -3261,7 +3263,7 @@ }, /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "afq" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/virgo3b, @@ -3620,15 +3622,15 @@ /area/tether/surfacebase/tram) "afZ" = ( /obj/effect/floor_decal/borderfloor{ - dir = 8 + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, /obj/effect/floor_decal/corner/grey/border{ icon_state = "bordercolor"; - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 + dir = 1 }, +/obj/machinery/vending/loadout/overwear, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aga" = ( @@ -3917,7 +3919,7 @@ /area/rnd/chemistry_lab) "agM" = ( /turf/simulated/wall, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "agN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4094,7 +4096,7 @@ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ahd" = ( /obj/structure/table/glass, /obj/effect/floor_decal/borderfloor{ @@ -4280,7 +4282,7 @@ /obj/structure/grille, /obj/structure/railing, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ahv" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4669,7 +4671,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aid" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -4688,7 +4690,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aie" = ( /obj/machinery/light{ dir = 1 @@ -4707,7 +4709,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aif" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -4724,7 +4726,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aig" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -4740,7 +4742,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aih" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, @@ -4770,7 +4772,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aij" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4792,9 +4794,6 @@ /area/tether/surfacebase/mining_main/lobby) "ail" = ( /obj/effect/floor_decal/rust, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, /obj/structure/plasticflaps, /obj/machinery/disposal/deliveryChute{ dir = 4 @@ -4803,6 +4802,7 @@ dir = 4; id = "gloriouscargopipeline" }, +/obj/structure/disposalpipe/trunk, /turf/simulated/floor/plating, /area/tether/surfacebase/mining_main/ore) "aim" = ( @@ -4944,6 +4944,14 @@ req_access = list(24) }, /obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/engineering/atmos) "aiC" = ( @@ -5259,7 +5267,7 @@ /turf/simulated/floor/tiled/monofloor{ dir = 1 }, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ajb" = ( /obj/structure/cable/green{ d1 = 1; @@ -5339,7 +5347,7 @@ report_danger_level = 0 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "ajg" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -5350,13 +5358,13 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "ajh" = ( /obj/machinery/atmospherics/unary/vent_scrubber{ dir = 4 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aji" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -5600,7 +5608,7 @@ pixel_x = 24 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ajB" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -6871,9 +6879,6 @@ /area/maintenance/lower/mining_eva) "alY" = ( /obj/effect/floor_decal/rust, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/conveyor{ dir = 4; id = "gloriouscargopipeline" @@ -7074,15 +7079,8 @@ /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "ams" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "gloriouscargopipeline" - }, -/turf/simulated/floor/tiled/steel_dirty, +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, /area/tether/surfacebase/mining_main/ore) "amt" = ( /obj/structure/cable/green{ @@ -7698,7 +7696,6 @@ name = "Mining Maintenance Access"; req_one_access = list(48) }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/tether/surfacebase/mining_main/ore) "anp" = ( @@ -7896,7 +7893,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anE" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/border_only, @@ -7934,7 +7931,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anH" = ( /obj/structure/plasticflaps, /obj/machinery/conveyor{ @@ -8128,7 +8125,7 @@ sortType = "Primary Tool Storage" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anV" = ( /obj/structure/cable{ d1 = 2; @@ -8136,7 +8133,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anW" = ( /obj/structure/cable{ d1 = 4; @@ -8145,7 +8142,7 @@ pixel_x = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anX" = ( /obj/structure/cable{ d1 = 4; @@ -8155,7 +8152,7 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anY" = ( /obj/structure/cable{ d1 = 4; @@ -8165,7 +8162,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -8186,7 +8183,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoa" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ @@ -8200,7 +8197,7 @@ req_one_access = list() }, /turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aob" = ( /obj/structure/cable{ d1 = 1; @@ -8294,18 +8291,18 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoi" = ( /obj/structure/flora/pottedplant, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoj" = ( /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aok" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aol" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -8323,7 +8320,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aom" = ( /obj/structure/closet/firecloset/full/double, /turf/simulated/floor/tiled/techfloor, @@ -8654,7 +8651,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoQ" = ( /obj/structure/cable{ d1 = 1; @@ -8663,15 +8660,15 @@ pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoR" = ( /obj/machinery/light/flamp/noshade, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoS" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoT" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -8689,7 +8686,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoU" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, @@ -9080,11 +9077,11 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apA" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apB" = ( /obj/structure/railing{ dir = 1 @@ -9093,13 +9090,13 @@ dir = 8 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apC" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apD" = ( /obj/structure/railing{ dir = 4 @@ -9108,7 +9105,7 @@ dir = 1 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apE" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -9127,7 +9124,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apF" = ( /turf/simulated/wall, /area/maintenance/lower/vacant_site) @@ -9395,22 +9392,22 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqe" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqf" = ( /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqg" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqh" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -9425,7 +9422,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqi" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, @@ -9773,7 +9770,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -9794,11 +9791,11 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqK" = ( /mob/living/simple_mob/animal/passive/fish/koi/poisonous, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqL" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -9813,14 +9810,14 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqM" = ( /obj/structure/grille, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqN" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, @@ -9864,6 +9861,28 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) +"aqS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "dorm2"; + name = "Room 2" + }, +/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/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_2) "aqT" = ( /turf/simulated/wall/r_wall, /area/storage/surface_eva/external) @@ -9993,11 +10012,11 @@ pixel_x = -24 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arg" = ( /obj/structure/railing, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arh" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -10037,6 +10056,19 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) +"arm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) "arn" = ( /obj/structure/table/glass, /obj/item/weapon/storage/toolbox/emergency, @@ -10170,22 +10202,22 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ary" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arz" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arA" = ( /obj/machinery/light/small{ dir = 1 }, /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arB" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -10203,7 +10235,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ @@ -10218,6 +10250,19 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) +"arD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/obj/machinery/vending/loadout/gadget, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) "arE" = ( /obj/structure/table/rack, /obj/item/bodybag/cryobag, @@ -10370,7 +10415,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, @@ -10505,7 +10550,7 @@ "asa" = ( /obj/structure/sign/directions/evac, /turf/simulated/wall, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asb" = ( /obj/structure/cable{ d1 = 1; @@ -10515,7 +10560,7 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asc" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/machinery/light/small{ @@ -10523,19 +10568,19 @@ pixel_x = 0 }, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asd" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ase" = ( /obj/structure/disposalpipe/segment, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asf" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -10554,7 +10599,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asg" = ( /obj/structure/sign/directions/evac, /turf/simulated/wall, @@ -10653,7 +10698,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ass" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -10679,7 +10724,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ast" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/industrial/outline, @@ -10947,7 +10992,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asN" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -10968,19 +11013,19 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asO" = ( /obj/machinery/light/small, /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asP" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asQ" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 @@ -10998,7 +11043,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -11162,19 +11207,19 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atl" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atm" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atn" = ( /obj/machinery/status_display{ pixel_x = 32; @@ -11199,7 +11244,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ato" = ( /obj/machinery/camera/network/civilian{ dir = 4 @@ -11458,7 +11503,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atN" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -11473,7 +11518,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atO" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 @@ -11499,7 +11544,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -11831,7 +11876,7 @@ pixel_x = -30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aut" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -11842,7 +11887,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auu" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -11867,7 +11912,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auv" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -12104,21 +12149,21 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auO" = ( /obj/structure/railing{ dir = 8 }, /obj/structure/railing, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auP" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -12143,7 +12188,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auR" = ( /turf/simulated/wall, /area/security/checkpoint) @@ -12372,7 +12417,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avn" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -12394,7 +12439,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avo" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 @@ -12423,7 +12468,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -12897,7 +12942,7 @@ /area/maintenance/lower/xenoflora) "avU" = ( /turf/simulated/wall/r_wall, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avV" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -12920,7 +12965,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12931,7 +12976,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avX" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -12952,7 +12997,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avY" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -13355,7 +13400,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awF" = ( /obj/structure/cable{ d1 = 1; @@ -13370,7 +13415,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awG" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -13383,7 +13428,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13395,7 +13440,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13408,7 +13453,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awJ" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -13426,7 +13471,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awK" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -13445,7 +13490,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awL" = ( /obj/structure/sign/nanotrasen, /turf/simulated/wall, @@ -13692,7 +13737,7 @@ dir = 2 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axh" = ( /obj/machinery/camera/network/northern_star, /obj/effect/floor_decal/borderfloor{ @@ -13703,7 +13748,7 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axi" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -13718,7 +13763,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axj" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/structure/cable{ @@ -13735,7 +13780,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axk" = ( /obj/effect/floor_decal/borderfloor, /obj/structure/cable{ @@ -13749,14 +13794,9 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axl" = ( /obj/effect/floor_decal/borderfloor, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, /obj/structure/cable{ d2 = 8; icon_state = "0-8" @@ -13768,8 +13808,11 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, +/obj/machinery/power/apc/high{ + pixel_y = -28 + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axm" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -13780,7 +13823,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axn" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/camera/network/northern_star{ @@ -13794,7 +13837,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axo" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/light, @@ -13806,7 +13849,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -13821,7 +13864,7 @@ pixel_y = -24 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axq" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/newscaster{ @@ -13836,7 +13879,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axr" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -13851,7 +13894,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axs" = ( /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/tiled{ @@ -14151,7 +14194,7 @@ "axT" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axU" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -14160,7 +14203,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axV" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14177,7 +14220,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axW" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14193,7 +14236,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axX" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14209,7 +14252,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14228,7 +14271,7 @@ pixel_y = 26 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14244,7 +14287,7 @@ pixel_y = 30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aya" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14260,7 +14303,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayb" = ( /obj/machinery/light{ dir = 1 @@ -14276,7 +14319,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayc" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14289,7 +14332,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14304,7 +14347,7 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aye" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -14319,7 +14362,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -14331,7 +14374,7 @@ pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayg" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -14357,7 +14400,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayh" = ( /turf/simulated/wall, /area/crew_quarters/locker/laundry_arrival) @@ -14386,7 +14429,7 @@ pixel_x = -30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayk" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14401,7 +14444,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayl" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -14422,7 +14465,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aym" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -14739,32 +14782,32 @@ /area/maintenance/lower/xenoflora) "ayG" = ( /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayH" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayK" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14772,14 +14815,14 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayO" = ( /obj/structure/cable{ d1 = 1; @@ -14791,7 +14834,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayP" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -14818,7 +14861,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayQ" = ( /obj/machinery/status_display{ pixel_y = 30 @@ -14941,7 +14984,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -14953,7 +14996,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayZ" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -14972,7 +15015,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aza" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14994,7 +15037,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azb" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15013,7 +15056,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azc" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15029,7 +15072,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15042,7 +15085,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aze" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15064,7 +15107,7 @@ pixel_y = 30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azf" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 @@ -15073,7 +15116,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azg" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15095,7 +15138,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azh" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15112,7 +15155,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azi" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15131,7 +15174,7 @@ req_access = list() }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azj" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15150,7 +15193,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azk" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15166,7 +15209,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15182,7 +15225,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azm" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_external/public, @@ -15474,12 +15517,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azM" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azN" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, @@ -15491,7 +15534,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azO" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15505,7 +15548,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azP" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15519,7 +15562,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azQ" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15537,7 +15580,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azR" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15554,7 +15597,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azS" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15571,7 +15614,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azT" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -15592,7 +15635,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azU" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15618,7 +15661,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azV" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15643,7 +15686,7 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azW" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15664,7 +15707,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azX" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15690,7 +15733,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azY" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -15712,7 +15755,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azZ" = ( /obj/machinery/alarm{ dir = 4; @@ -15808,7 +15851,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAh" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -15819,7 +15862,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAi" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -15828,7 +15871,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15836,28 +15879,28 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAk" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAl" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/item/device/radio/beacon, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -15867,7 +15910,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAo" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -16134,7 +16177,7 @@ /obj/effect/floor_decal/corner/lightgrey/border, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAO" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -16144,13 +16187,13 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAP" = ( /obj/structure/sign/directions/evac{ name = "\improper Secondary Evacuation Route" }, /turf/simulated/wall, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAQ" = ( /obj/structure/cable{ d1 = 1; @@ -16167,20 +16210,20 @@ name = "Evacuation Route" }, /turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAR" = ( /obj/structure/sign/directions/evac{ dir = 4 }, /turf/simulated/wall, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAS" = ( /obj/structure/closet/crate, /obj/item/weapon/handcuffs/fuzzy, /obj/random/maintenance/security, /obj/random/contraband, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAT" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -16305,7 +16348,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBc" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16333,7 +16376,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBd" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16355,7 +16398,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBe" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16380,7 +16423,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBf" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -16402,7 +16445,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBg" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16427,7 +16470,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBh" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -16453,7 +16496,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -16471,7 +16514,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBj" = ( /obj/effect/floor_decal/steeldecal/steel_decals6, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -16491,7 +16534,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBk" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16515,7 +16558,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBl" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16537,7 +16580,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBm" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16557,7 +16600,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBn" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/light, @@ -16580,7 +16623,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBo" = ( /obj/machinery/door/airlock/glass_external/public, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16959,7 +17002,7 @@ /turf/simulated/floor/tiled/monofloor{ dir = 8 }, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -16975,17 +17018,17 @@ /turf/simulated/floor/tiled/monofloor{ dir = 4 }, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBY" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBZ" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aCa" = ( /obj/structure/grille, /obj/structure/railing{ @@ -17475,7 +17518,7 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aCM" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 @@ -17485,7 +17528,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aCN" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 @@ -17498,7 +17541,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aCO" = ( /turf/simulated/wall, /area/crew_quarters/visitor_dining) @@ -17810,7 +17853,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -17824,7 +17867,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDt" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -17853,7 +17896,7 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDu" = ( /turf/simulated/floor/lino, /area/crew_quarters/visitor_dining) @@ -18081,7 +18124,7 @@ /turf/simulated/floor/tiled/monofloor{ dir = 1 }, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDU" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 9 @@ -18097,13 +18140,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDW" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -18118,7 +18161,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDX" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -18511,7 +18554,7 @@ req_access = list() }, /turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aEG" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 6 @@ -18525,13 +18568,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aEH" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aEI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -18961,7 +19004,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aFu" = ( /obj/structure/cable/green{ d1 = 4; @@ -18978,7 +19021,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aFv" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 5 @@ -18998,7 +19041,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aFw" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1, @@ -19287,7 +19330,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aFP" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -19302,7 +19345,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aFQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -19785,11 +19828,6 @@ /obj/effect/floor_decal/corner/mauve/border{ dir = 4 }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, /obj/structure/cable/green{ icon_state = "0-8" }, @@ -19799,6 +19837,11 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 10 }, +/obj/machinery/power/apc/high{ + dir = 4; + pixel_x = 28; + pixel_y = 0 + }, /turf/simulated/floor/tiled, /area/rnd/hallway) "aGr" = ( @@ -19854,7 +19897,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/computer/timeclock/premade/west, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aGw" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -19863,7 +19906,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aGx" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; @@ -19900,12 +19943,10 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/tram) "aGB" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; +/obj/structure/cable/green, +/obj/machinery/power/apc/high{ pixel_y = -28 }, -/obj/structure/cable/green, /turf/simulated/floor/tiled, /area/tether/surfacebase/tram) "aGC" = ( @@ -20090,8 +20131,8 @@ }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/camera/network/cargo{ - c_tag = "CRG - Cargo Warehouse"; - dir = 9 + icon_state = "camera"; + dir = 8 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) @@ -20409,7 +20450,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aHl" = ( /obj/machinery/camera/network/civilian{ dir = 4 @@ -20624,7 +20665,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aHG" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -20914,27 +20955,27 @@ "aIl" = ( /obj/structure/flora/pottedplant/flower, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIm" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIn" = ( /obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIo" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIp" = ( /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIq" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -20948,7 +20989,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIr" = ( /obj/structure/bed/chair/wood, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -21037,32 +21078,13 @@ /turf/simulated/floor/lino, /area/crew_quarters/visitor_dining) "aIA" = ( -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 10; - pixel_y = 32 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "gloriouscargopipeline"; - layer = 3.3; - name = "outbound conveyor"; - pixel_y = 14 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/surfacecargo) +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) "aIB" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -21401,7 +21423,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -21411,7 +21433,7 @@ }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -21428,7 +21450,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -21440,7 +21462,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -21452,7 +21474,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -21467,7 +21489,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJi" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21483,7 +21505,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJj" = ( /obj/structure/cable/green{ d1 = 1; @@ -21502,13 +21524,13 @@ icon_state = "pipe-j2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJl" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -21522,7 +21544,7 @@ pixel_x = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJm" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/condiment/small/sugar, @@ -21858,7 +21880,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJQ" = ( /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/lightgrey/border/shifted, @@ -21866,7 +21888,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21876,7 +21898,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -21906,7 +21928,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJT" = ( /obj/structure/cable/green{ d1 = 2; @@ -21923,7 +21945,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJU" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -21942,7 +21964,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJV" = ( /obj/structure/bed/chair/wood{ dir = 1 @@ -22127,6 +22149,13 @@ dir = 1; pixel_y = 28 }, +/obj/machinery/button/remote/blast_door{ + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + pixel_x = 0; + pixel_y = 0; + req_one_access = list(10,24) + }, /turf/simulated/floor/tiled, /area/engineering/atmos) "aKn" = ( @@ -22261,7 +22290,7 @@ "aKA" = ( /obj/structure/stairs/south, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKB" = ( /obj/structure/railing{ dir = 8 @@ -22277,7 +22306,7 @@ }, /obj/machinery/disposal, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKC" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -22296,7 +22325,7 @@ pixel_y = -24 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKD" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -22312,7 +22341,7 @@ }, /obj/machinery/vending/coffee, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKE" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -22325,7 +22354,7 @@ }, /obj/machinery/lapvend, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKF" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -22335,7 +22364,7 @@ }, /obj/machinery/vending/cigarette, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKG" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -22351,7 +22380,7 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKH" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 @@ -22364,12 +22393,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKI" = ( /obj/effect/floor_decal/steeldecal/steel_decals6, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKJ" = ( /obj/machinery/light, /turf/simulated/floor/lino, @@ -24604,6 +24633,14 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/engineering/atmos/processing) "aOT" = ( @@ -27130,27 +27167,18 @@ /turf/simulated/floor/tiled, /area/crew_quarters/visitor_lodging) "aTB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, -/obj/machinery/door/airlock{ - id_tag = "dorm2"; - name = "Room 2" +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 1 }, -/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/machinery/door/firedoor/glass, +/obj/machinery/vending/loadout/loadout_misc, /turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_2) +/area/crew_quarters/visitor_laundry) "aTC" = ( /obj/structure/cable/green{ d1 = 4; @@ -27245,6 +27273,14 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/engineering/atmos/processing) "aTK" = ( @@ -27255,6 +27291,14 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/engineering/atmos/processing) "aTL" = ( @@ -27266,6 +27310,14 @@ /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/engineering/atmos/processing) "aTM" = ( @@ -27325,6 +27377,14 @@ req_access = list(24) }, /obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/engineering/atmos) "aTU" = ( @@ -27379,11 +27439,11 @@ /area/crew_quarters/visitor_lodging) "aTW" = ( /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aTX" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aTY" = ( /obj/machinery/atmospherics/pipe/manifold/visible/black, /turf/simulated/floor/tiled/techmaint, @@ -27529,85 +27589,6 @@ /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aUo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/closet/wardrobe/white, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/closet/wardrobe/mixed, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/closet/wardrobe/xenos, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/closet/wardrobe/suit, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/closet/wardrobe/black, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUu" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -27615,12 +27596,110 @@ icon_state = "bordercolor"; dir = 5 }, -/obj/structure/closet/wardrobe/pjs, /obj/machinery/light{ dir = 4; icon_state = "tube1"; pixel_x = 0 }, +/obj/machinery/vending/loadout/costume, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/crew_quarters/visitor_laundry) +"aUr" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 1; + dir = 2; + id_tag = null; + name = "Laundry"; + req_access = list() + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/structure/cable/green{ + 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/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor, +/area/crew_quarters/visitor_laundry) +"aUs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUu" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aUv" = ( @@ -27628,7 +27707,7 @@ dir = 6 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aUw" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 @@ -27637,19 +27716,19 @@ dir = 6 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aUx" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 9 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aUy" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aUz" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 5 @@ -27658,13 +27737,13 @@ dir = 10 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aUA" = ( /obj/machinery/atmospherics/pipe/simple/heat_exchanging{ dir = 10 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aUB" = ( /obj/machinery/power/apc/super{ dir = 4; @@ -27676,10 +27755,10 @@ icon_state = "0-2" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aUC" = ( /turf/simulated/wall/r_wall, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aUD" = ( /obj/machinery/atmospherics/pipe/simple/visible/purple, /obj/structure/cable/cyan{ @@ -27688,7 +27767,7 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aUE" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -27812,7 +27891,7 @@ }, /obj/machinery/atmospherics/pipe/simple/heat_exchanging, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aUS" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/light/small{ @@ -27997,6 +28076,14 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/engineering/atmos/processing) "aVl" = ( @@ -28250,7 +28337,7 @@ id_tag = "atmos_intake" }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aVF" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -28261,6 +28348,14 @@ /obj/structure/window/reinforced{ dir = 8 }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/engineering/atmos/processing) "aVG" = ( @@ -28387,20 +28482,8 @@ /turf/simulated/floor/tiled, /area/crew_quarters/visitor_lodging) "aVP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aVQ" = ( @@ -28447,7 +28530,7 @@ use_power = 1 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aVV" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/visible/yellow{ @@ -28458,6 +28541,14 @@ /obj/structure/window/reinforced{ dir = 8 }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/engineering/atmos/processing) "aVW" = ( @@ -28479,6 +28570,14 @@ name = "Atmospherics"; req_access = list(24) }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/engineering/atmos/processing) "aVZ" = ( @@ -28808,7 +28907,7 @@ dir = 8 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aWP" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, @@ -28879,19 +28978,30 @@ "aWY" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/grey/border, -/obj/structure/table/standard, -/obj/item/weapon/storage/box/cups, /obj/machinery/firealarm{ dir = 1; pixel_x = 0; pixel_y = -24 }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aWZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/structure/reagent_dispensers/water_cooler/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aXa" = ( @@ -28899,6 +29009,8 @@ /obj/effect/floor_decal/corner/grey/border, /obj/structure/table/standard, /obj/item/weapon/storage/laundry_basket, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/grey/bordercorner2, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aXb" = ( @@ -28938,7 +29050,7 @@ dir = 4 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/engineering/atmos/intake) +/area/engineering/atmos_intake) "aXe" = ( /obj/structure/table/bench/steel, /turf/simulated/floor/plating, @@ -30927,7 +31039,7 @@ /turf/simulated/floor/tiled/monofloor{ dir = 8 }, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbj" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -30936,7 +31048,7 @@ /turf/simulated/floor/tiled/monofloor{ dir = 4 }, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbk" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -30958,7 +31070,7 @@ pixel_y = 26 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -30978,7 +31090,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbm" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -30994,7 +31106,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31006,7 +31118,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31021,7 +31133,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbp" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31042,7 +31154,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbq" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31065,7 +31177,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbr" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -31128,7 +31240,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbu" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -31137,7 +31249,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbv" = ( /obj/structure/cable/green{ d1 = 4; @@ -31369,7 +31481,7 @@ /area/hallway/lower/first_west) "bbQ" = ( /turf/simulated/mineral, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "bbR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31535,6 +31647,19 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) +"bcj" = ( +/obj/machinery/door/airlock/glass{ + name = "Dressing Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) "bck" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, @@ -31678,6 +31803,188 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/xenoflora) +"bcD" = ( +/obj/structure/closet/wardrobe/black, +/obj/random/maintenance/clean, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcE" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcG" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcH" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcK" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/light/small, +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 6 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcO" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 10; + pixel_y = 32 + }, +/obj/machinery/conveyor_switch{ + id = "gloriouscargopipeline"; + name = "Mining Supply conveyor switch"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bcP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos/processing) "cGJ" = ( /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) @@ -40909,7 +41216,7 @@ aRU aSC aTj aSC -aSC +bcP aSC aUS aVm @@ -43120,8 +43427,8 @@ aeE age afD ail -aer -bbE +ams +aIA air bcg agM @@ -43263,7 +43570,7 @@ aff alJ alY aer -bbE +bcf bcf bcg agM @@ -43403,9 +43710,9 @@ aer afe agf agf -ams +amO ano -bce +bcf bcf cGJ agM @@ -44257,7 +44564,7 @@ afi amv agj amw -aIA +bcO bbv bbC amc @@ -46445,12 +46752,12 @@ aRm aPK aSo aSo -aTB +aqS aSo aUm aUm -acw -acz +aUq +aUr aUm aWn aWn @@ -46590,10 +46897,10 @@ aSV aTC aSo aUn -afZ +aUp aVd aVz -aVP +aUt aWo aWM aWV @@ -46731,7 +47038,7 @@ aSq aSW aTD aSo -aUo +acw aUP aVe aVA @@ -46873,7 +47180,7 @@ aSr aSX aTE aSo -aUp +acz aUP aVf aVB @@ -46882,10 +47189,10 @@ aUP aUP aWX aUm -aah -aah -aah -aah +bcD +bcI +bcK +aUm aah aah aah @@ -47015,7 +47322,7 @@ aSs aSY aTF aSo -aUq +afZ aUP aVf aVB @@ -47024,10 +47331,10 @@ aUP aUP aWY aUm -aah -aah -aah -aah +bcE +aUP +bcL +aUm aah aah aah @@ -47157,14 +47464,18 @@ aSt aSX aTG aSo -aUr +arm aUP aVf -aVB -aVf -aUP -aUP +aUs +aUu +aVP +aVP aWZ +bcj +bcF +aUP +bcM aUm aah aah @@ -47173,10 +47484,6 @@ aah aah aah aah -aah -aah -aah -aah aad aad aad @@ -47299,7 +47606,7 @@ aSo aSZ aSo aSo -aUs +arD aUP aVf aVB @@ -47308,10 +47615,10 @@ aUP aUP aXa aUm -aah -aah -aah -aah +bcG +aUP +bcL +aUm aah aah aah @@ -47441,7 +47748,7 @@ aSu aTa aTH aSo -aUt +aTB aUP aVg aVC @@ -47450,10 +47757,10 @@ aWp aWp aXb aUm -aah -aah -aah -aah +bcH +bcJ +bcN +aUm aah aah aah @@ -47583,7 +47890,7 @@ aSv aTb aTI aSo -aUu +aUo aUQ aVh aUP @@ -47592,10 +47899,10 @@ aga aWN aXc aUm -aah -aah -aah -aah +aUm +aUm +aUm +aUm aah aah aah diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index 0d3b2cb9b6..cdb08d0844 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -13,7 +13,7 @@ /area/maintenance/lower/mining) "aae" = ( /turf/simulated/wall/r_wall, -/area/bridge/secondary/meeting_room) +/area/maintenance/lower/public_garden_maintenence/upper) "aaf" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/lowerhall) @@ -48,8 +48,21 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) "aak" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence/upper) "aal" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, @@ -66,9 +79,9 @@ /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) "aam" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) +/obj/structure/stairs/south, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence/upper) "aan" = ( /turf/simulated/wall, /area/maintenance/substation/medsec) @@ -87,6 +100,39 @@ /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/medical/lowerhall) "aas" = ( +/obj/structure/closet/secure_closet/warden, +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + ammo_type = /obj/item/ammo_casing/a12g/beanbag; + desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; + name = "warden's shotgun" + }, +/obj/item/weapon/book/manual/security_space_law, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/warden) +"aat" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence/upper) +"aau" = ( +/obj/structure/stairs/west, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/bar) +"aav" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, @@ -104,28 +150,8 @@ /obj/machinery/light{ dir = 8 }, -/obj/machinery/camera/network/medbay, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"aat" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"aau" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/manual/security_space_law, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"aav" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/blue, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) "aaw" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "MedSec Substation Bypass" @@ -150,12 +176,20 @@ /turf/simulated/floor, /area/maintenance/substation/medsec) "aay" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 }, -/obj/machinery/camera/network/engineering, -/turf/simulated/floor, -/area/maintenance/substation/medsec) +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/item/device/defib_kit/loaded, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery) "aaz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -231,18 +265,12 @@ /obj/effect/floor_decal/borderfloorwhite{ dir = 5 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 5 }, -/obj/structure/table/standard, -/obj/item/device/defib_kit/loaded, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/camera/network/medbay, +/obj/machinery/organ_printer/flesh, /turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery) +/area/tether/surfacebase/medical/resleeving) "aaF" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -272,32 +300,26 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) "aaI" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 +/obj/effect/floor_decal/techfloor{ + dir = 9 }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/resleeving) "aaJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence/upper) +/obj/machinery/vending/medical, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) "aaK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -403,6 +425,9 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, /turf/simulated/floor, /area/maintenance/substation/medsec) "aaU" = ( @@ -469,16 +494,21 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) "aaX" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/organ_printer/flesh, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/resleeving) +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhallway) "aaY" = ( /obj/effect/floor_decal/techfloor{ dir = 9 @@ -1238,20 +1268,14 @@ /turf/simulated/floor/plating, /area/maintenance/asmaint2) "acN" = ( -/obj/structure/closet/secure_closet/RD, -/obj/item/device/aicard, -/obj/item/clothing/glasses/omnihud/rnd, -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/obj/machinery/camera/network/research{ - dir = 4 +/obj/structure/bed/chair{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/rnd/rdoffice) +/area/tether/surfacebase/security/solitary) "acO" = ( /obj/structure/sign/nanotrasen, /turf/simulated/wall, @@ -1284,15 +1308,9 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) "acT" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, /obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/resleeving) +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) "acU" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -1304,7 +1322,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "acV" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 10 @@ -1818,7 +1836,7 @@ /area/maintenance/lower/north) "adY" = ( /turf/simulated/wall, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "adZ" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -1973,7 +1991,7 @@ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aeo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, @@ -2141,7 +2159,7 @@ name = "Maintenance Access" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aeJ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ @@ -2153,12 +2171,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aeK" = ( /obj/structure/grille, /obj/structure/railing, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aeL" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2168,13 +2186,13 @@ }, /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aeM" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aeN" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, @@ -2287,7 +2305,7 @@ pixel_x = 0 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afb" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -2297,7 +2315,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afc" = ( /obj/structure/cable{ d1 = 1; @@ -2317,26 +2335,26 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + icon_state = "intact"; dir = 4 }, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhallway) "afe" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2351,7 +2369,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aff" = ( /obj/machinery/light/small{ dir = 1 @@ -2369,7 +2387,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afg" = ( /obj/structure/cable{ d1 = 4; @@ -2387,7 +2405,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afh" = ( /obj/structure/cable{ d1 = 4; @@ -2405,7 +2423,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afi" = ( /obj/structure/cable{ d1 = 4; @@ -2420,7 +2438,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afj" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2439,7 +2457,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afk" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2457,7 +2475,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2478,7 +2496,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afm" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2497,7 +2515,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afn" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2506,7 +2524,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afo" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2518,7 +2536,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afp" = ( /obj/machinery/light/small{ dir = 1 @@ -2530,20 +2548,21 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/closet{ + name = "Evidence Closet" }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/evidence) "afr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -2554,7 +2573,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afs" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -2563,7 +2582,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aft" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2575,7 +2594,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afu" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -2588,7 +2607,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afv" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -2652,13 +2671,13 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afD" = ( /obj/structure/cable{ d1 = 1; @@ -2673,39 +2692,39 @@ dir = 9 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afG" = ( /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afH" = ( /obj/item/device/radio/beacon, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afI" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -2714,19 +2733,19 @@ dir = 10 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afM" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afN" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -2832,14 +2851,14 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afW" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afX" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, @@ -2853,7 +2872,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afY" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, @@ -2862,7 +2881,7 @@ }, /obj/structure/window/basic, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "afZ" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -2880,7 +2899,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aga" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -2893,7 +2912,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agb" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 @@ -2936,11 +2955,11 @@ pixel_y = 0 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agg" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agh" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -2958,7 +2977,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agi" = ( /obj/structure/railing{ dir = 1 @@ -2967,40 +2986,30 @@ dir = 8 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agj" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agk" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/open, -/area/tether/surfacebase/atrium_two) -"agl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 8 - }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) +"agl" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/commandmaint) "agm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agn" = ( /obj/machinery/light/small{ dir = 8 @@ -3066,16 +3075,16 @@ dir = 8 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agw" = ( /turf/simulated/open, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agx" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3084,7 +3093,7 @@ sortType = "Trash" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agz" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -3097,14 +3106,14 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agA" = ( /obj/structure/grille, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -3157,7 +3166,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agH" = ( /obj/machinery/light/small{ dir = 4 @@ -3170,7 +3179,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agI" = ( /obj/structure/railing{ dir = 8 @@ -3231,7 +3240,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agS" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, @@ -3239,7 +3248,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "agT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -3298,11 +3307,11 @@ /turf/simulated/wall, /area/tether/surfacebase/north_staires_two) "ahd" = ( -/obj/machinery/camera/network/tether{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/open, -/area/tether/surfacebase/north_staires_two) +/turf/simulated/floor, +/area/maintenance/substation/medsec) "ahe" = ( /obj/structure/sign/directions/medical{ dir = 1; @@ -3332,31 +3341,27 @@ "ahg" = ( /obj/structure/sign/warning/caution, /turf/simulated/wall, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ahh" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/suit_cycler/medical, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/paramed) +"ahi" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/bed/chair/wheelchair{ dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"ahi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) "ahj" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -3424,13 +3429,13 @@ /turf/simulated/floor/tiled/monofloor{ dir = 1 }, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ahu" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 9 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ahv" = ( /obj/effect/floor_decal/techfloor{ dir = 9 @@ -3459,12 +3464,15 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) "ahy" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) "ahz" = ( /obj/effect/floor_decal/techfloor{ dir = 5 @@ -3545,7 +3553,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ahH" = ( /obj/machinery/light/small{ dir = 1 @@ -3572,7 +3580,7 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ahJ" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 @@ -3596,7 +3604,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central1, /turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ahK" = ( /obj/structure/cable{ d1 = 4; @@ -3614,7 +3622,7 @@ dir = 6 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ahL" = ( /obj/structure/cable{ d1 = 4; @@ -3630,7 +3638,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ahM" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -3647,7 +3655,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ahN" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -3657,14 +3665,16 @@ pixel_x = 25 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ahO" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 }, -/obj/structure/stairs/west, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) "ahP" = ( /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) @@ -3730,7 +3740,7 @@ name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS" }, /turf/simulated/wall, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ahZ" = ( /obj/machinery/light/small{ dir = 8; @@ -3743,7 +3753,7 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aia" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -3755,7 +3765,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aib" = ( /obj/machinery/light/small{ dir = 4 @@ -3764,7 +3774,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aic" = ( /obj/structure/cable{ icon_state = "1-2" @@ -3989,7 +3999,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aiz" = ( /obj/structure/cable{ icon_state = "4-8" @@ -4005,7 +4015,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aiA" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -4054,11 +4064,11 @@ dir = 5 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aiF" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aiG" = ( /obj/machinery/door/airlock{ name = "Noodle Office"; @@ -4199,16 +4209,16 @@ /turf/simulated/floor/plating, /area/maintenance/lower/rnd) "aiW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + name = "Command Meeting Room"; + sortType = "Command Meeting Room" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aiX" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4257,7 +4267,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajb" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/supply{ @@ -4296,7 +4306,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aje" = ( /obj/structure/cable{ icon_state = "1-2" @@ -4364,7 +4374,7 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajm" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -4373,7 +4383,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4382,11 +4392,11 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajp" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ @@ -4502,7 +4512,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajC" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -4519,7 +4529,7 @@ dir = 5 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajD" = ( /obj/machinery/light, /turf/simulated/floor/tiled/dark, @@ -4537,6 +4547,9 @@ /obj/effect/floor_decal/corner/lime/border{ dir = 5 }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) "ajG" = ( @@ -4556,26 +4569,22 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajJ" = ( /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/chapel/main) "ajK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/structure/bed/chair, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ +/obj/machinery/camera/network/security{ + icon_state = "camera"; dir = 5 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/interrogation) "ajL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -4593,7 +4602,7 @@ /obj/structure/catwalk, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajM" = ( /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside2) @@ -4645,13 +4654,13 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajS" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -4665,28 +4674,19 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ajT" = ( /turf/simulated/wall, /area/chapel/chapel_morgue) "ajU" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/obj/item/weapon/storage/fancy/crayons, -/obj/machinery/camera/network/civilian{ - dir = 8 +/obj/effect/floor_decal/borderfloor{ + dir = 9 }, -/obj/item/weapon/flame/candle/candelabra, -/obj/item/weapon/flame/candle/candelabra, -/obj/item/weapon/flame/candle/candelabra, -/obj/item/weapon/flame/candle/candelabra, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 +/obj/effect/floor_decal/corner/lime/border{ + dir = 9 }, -/turf/simulated/floor/lino, -/area/chapel/office) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_two) "ajV" = ( /obj/structure/extinguisher_cabinet{ dir = 1; @@ -4796,11 +4796,13 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) "akg" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 +/obj/machinery/vending/hydronutrients, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) "akh" = ( /obj/machinery/firealarm{ dir = 2; @@ -4874,15 +4876,36 @@ /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) "ako" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/effect/floor_decal/borderfloor{ - dir = 9 + dir = 4 }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 9 +/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/machinery/camera/network/civilian, /turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_two) +/area/tether/surfacebase/security/lowerhallway) "akp" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -5319,6 +5342,9 @@ dir = 2; pixel_y = -24 }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) "alc" = ( @@ -5439,6 +5465,9 @@ /obj/item/weapon/material/fishing_net, /obj/item/weapon/material/fishing_net, /obj/item/weapon/material/fishing_net, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) "als" = ( @@ -5448,13 +5477,22 @@ /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/fish_farm) "alt" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 +/obj/structure/table/bench/standard, +/obj/effect/landmark/start{ + name = "Medical Doctor" }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/water/deep/indoors, -/area/tether/surfacebase/fish_farm) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/breakroom) "alu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -5466,15 +5504,23 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) "alv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/camera/network/civilian{ - icon_state = "camera"; - dir = 10 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/fish_farm) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "alw" = ( /obj/effect/floor_decal/rust, /obj/structure/cable{ @@ -5492,7 +5538,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "alx" = ( /obj/structure/cable{ icon_state = "4-8" @@ -5583,25 +5629,17 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) "alG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/camera/network/tether{ +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "alH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -5616,7 +5654,7 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "alI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5634,7 +5672,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "alJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -5653,7 +5691,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "alK" = ( /obj/structure/cable{ icon_state = "1-2" @@ -5668,7 +5706,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "alL" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -5784,7 +5822,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "alR" = ( /obj/machinery/alarm{ dir = 4; @@ -5845,7 +5883,7 @@ /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/lightgrey/bordercorner2, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "alY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -5861,7 +5899,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "alZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -5882,7 +5920,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ama" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; @@ -5902,7 +5940,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "amb" = ( /obj/structure/cable{ icon_state = "1-2" @@ -5913,7 +5951,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "amc" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, @@ -5934,11 +5972,14 @@ /turf/simulated/floor/tiled/dark, /area/chapel/main) "amf" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/fish_farm) +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "amg" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -6005,7 +6046,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "amk" = ( /obj/structure/cable{ icon_state = "1-8" @@ -6016,7 +6057,7 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aml" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -6029,7 +6070,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "amm" = ( /obj/structure/cable{ icon_state = "1-2" @@ -6185,16 +6226,17 @@ /turf/simulated/floor/plating, /area/maintenance/lower/rnd) "amA" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/camera/network/civilian{ - icon_state = "camera"; - dir = 10 +/obj/machinery/light_switch{ + dir = 1; + on = 0; + pixel_x = -10; + pixel_y = -24 }, -/turf/simulated/floor/water/deep/indoors, -/area/tether/surfacebase/fish_farm) +/turf/simulated/floor/tiled/dark, +/area/teleporter) "amB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -6264,7 +6306,7 @@ /obj/effect/decal/cleanable/dirt, /obj/random/drinkbottle, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "amL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -6324,6 +6366,9 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, /mob/living/simple_mob/animal/passive/mouse/white, /turf/simulated/floor/grass, /area/chapel/office) @@ -6423,17 +6468,17 @@ /area/maintenance/lower/rnd) "anc" = ( /obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/camera/network/tether{ dir = 4 }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "and" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ane" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/snakesnackbox, @@ -6539,16 +6584,15 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) "ano" = ( -/obj/machinery/camera/network/research, -/turf/simulated/floor/reinforced, -/area/maintenance/lower/rnd) -"anp" = ( -/obj/machinery/light{ - dir = 1 +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 }, -/obj/item/toy/plushie/farwa, -/turf/simulated/floor/reinforced, -/area/maintenance/lower/rnd) +/turf/simulated/floor/water/deep/indoors, +/area/tether/surfacebase/fish_farm) +"anp" = ( +/turf/simulated/wall, +/area/rnd/rdoffice) "anq" = ( /obj/effect/floor_decal/industrial/danger/corner{ dir = 8 @@ -6562,7 +6606,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ans" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -6571,11 +6615,11 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ant" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "anu" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -6587,22 +6631,13 @@ dir = 6 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "anv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Command Substation Bypass" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/turf/simulated/floor/plating, +/area/maintenance/substation/command) "anw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -6615,10 +6650,35 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) +"anx" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) "any" = ( /turf/simulated/mineral, /area/maintenance/lower/bar) +"anz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) "anA" = ( /obj/effect/floor_decal/techfloor{ dir = 8 @@ -6647,13 +6707,15 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) "anD" = ( -/mob/living/simple_mob/slime/xenobio/rainbow/kendrick, /turf/simulated/floor/reinforced, -/area/maintenance/lower/rnd) +/area/rnd/rdoffice) "anE" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/toy/plushie/farwa, /turf/simulated/floor/reinforced, -/area/maintenance/lower/rnd) +/area/rnd/rdoffice) "anF" = ( /obj/machinery/door/firedoor, /obj/structure/grille, @@ -6704,6 +6766,9 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) +"anK" = ( +/turf/simulated/wall/r_wall, +/area/teleporter) "anL" = ( /obj/structure/railing{ dir = 4 @@ -6731,21 +6796,13 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) "anN" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, +/mob/living/simple_mob/slime/xenobio/rainbow/kendrick, /turf/simulated/floor/reinforced, -/area/maintenance/lower/rnd) +/area/rnd/rdoffice) "anO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/reinforced, -/area/maintenance/lower/rnd) +/area/rnd/rdoffice) "anP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -6871,12 +6928,42 @@ hard_corner = 1 }, /area/tether/elevator) +"aoa" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aob" = ( +/turf/simulated/wall/r_wall, +/area/bridge_hallway) +"aoc" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/dark, +/area/teleporter) "aod" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 6 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) +"aoe" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aof" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) "aog" = ( /obj/structure/railing{ dir = 4 @@ -7119,7 +7206,7 @@ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aoz" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -7128,30 +7215,30 @@ pixel_y = 30 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aoA" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aoB" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aoC" = ( /obj/structure/railing, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aoD" = ( /obj/structure/railing{ dir = 4 }, /obj/structure/railing, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aoE" = ( /turf/simulated/wall, /area/chapel/office) @@ -7190,16 +7277,11 @@ }, /area/server) "aoJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6; - icon_state = "intact" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled/techfloor, -/area/server) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/fish_farm) "aoK" = ( /obj/effect/floor_decal/techfloor{ dir = 5 @@ -7266,6 +7348,10 @@ /obj/effect/floor_decal/corner/mauve/border{ dir = 4 }, +/obj/machinery/camera/network/research{ + icon_state = "camera"; + dir = 8 + }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) "aoQ" = ( @@ -7332,28 +7418,26 @@ "aoV" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aoW" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aoX" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aoY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aoZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -7362,7 +7446,7 @@ pixel_y = 30 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apa" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -7372,7 +7456,7 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apb" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -7381,7 +7465,7 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apc" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -7389,13 +7473,13 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apd" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ape" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -7404,7 +7488,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apf" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -7416,16 +7500,33 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apg" = ( -/obj/effect/floor_decal/borderfloor/corner{ +/obj/structure/cable/green{ + icon_state = "4-8"; dir = 1 }, -/obj/effect/floor_decal/corner/green/bordercorner{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aph" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/teleporter) "api" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, @@ -7447,6 +7548,70 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) +"apk" = ( +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"apl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"apm" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/device/gps/command, +/obj/item/device/gps/command, +/obj/item/device/gps/command, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"apn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"apo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) "app" = ( /turf/simulated/floor/outdoors/dirt/virgo3b, /area/tether/surfacebase/outside/outside2) @@ -7568,19 +7733,16 @@ /turf/simulated/floor, /area/maintenance/substation/research) "apB" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ dir = 1 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/research) +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "apC" = ( /obj/structure/cable/green{ d1 = 4; @@ -7648,7 +7810,7 @@ "apH" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -7657,7 +7819,7 @@ dir = 5 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7666,7 +7828,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -7677,12 +7839,12 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -7695,7 +7857,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -7707,7 +7869,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -7725,7 +7887,7 @@ sortType = "Janitor Closet" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "apP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -7740,7 +7902,99 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) +"apQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/command{ + req_access = list(19) + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/bridge_hallway) +"apR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"apS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"apT" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"apU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"apV" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"apW" = ( +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"apX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"apY" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/teleporter) +"apZ" = ( +/obj/machinery/teleport/station{ + dir = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) "aqa" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, @@ -7878,18 +8132,31 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqp" = ( /obj/effect/floor_decal/borderfloor/corner, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/camera/network/tether{ - dir = 1 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_two_hall) "aqr" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/firealarm{ @@ -7899,12 +8166,12 @@ }, /obj/effect/floor_decal/corner/yellow/border, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqs" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqt" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -7912,7 +8179,7 @@ }, /obj/effect/floor_decal/corner/yellow/border, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqu" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -7926,7 +8193,7 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -7943,7 +8210,7 @@ }, /obj/effect/floor_decal/corner/yellow/bordercorner2, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -7955,7 +8222,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqx" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -7963,15 +8230,22 @@ /obj/effect/floor_decal/corner/yellow/bordercorner2, /obj/machinery/light/small, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqy" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/camera/network/tether{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/obj/structure/cable/green{ + 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/dark, +/area/bridge_hallway) "aqz" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -7983,13 +8257,13 @@ }, /obj/effect/floor_decal/corner/yellow/border, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqA" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/light/small, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqB" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/newscaster{ @@ -7997,21 +8271,21 @@ pixel_y = -30 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqC" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqD" = ( /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqE" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/light/small, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -8032,16 +8306,39 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aqG" = ( /obj/effect/floor_decal/borderfloor{ - dir = 6 + dir = 4 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 +/obj/machinery/camera/network/tether{ + dir = 9 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) +"aqH" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aqI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aqJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aqK" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/teleporter) "aqL" = ( /obj/structure/railing{ dir = 8 @@ -8173,34 +8470,10 @@ /turf/simulated/floor/tiled, /area/rnd/rdoffice) "aqT" = ( -/obj/structure/table/standard, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/device/paicard{ - pixel_x = 4 - }, -/obj/item/weapon/circuitboard/teleporter, -/obj/item/weapon/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) "aqU" = ( /obj/structure/closet/secure_closet/scientist, /obj/effect/floor_decal/industrial/outline, @@ -8218,6 +8491,7 @@ /obj/structure/closet/secure_closet/scientist, /obj/effect/floor_decal/industrial/outline, /obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/research, /turf/simulated/floor/tiled/dark, /area/rnd/lockers) "aqX" = ( @@ -8232,18 +8506,25 @@ /turf/simulated/floor/tiled/dark, /area/rnd/lockers) "aqY" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/camera/network/research{ - dir = 8 +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lockers) +/turf/simulated/floor/lino, +/area/chapel/office) "aqZ" = ( /obj/effect/floor_decal/borderfloor, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "ara" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -8253,7 +8534,7 @@ pixel_y = -30 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "arb" = ( /obj/structure/sign/warning/caution{ name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS" @@ -8270,13 +8551,30 @@ /turf/simulated/floor/plating, /area/engineering/lower/lobby) "are" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/lower/lobby) +"arf" = ( /obj/machinery/door/airlock/glass{ name = "Atmospherics" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/engineering/lower/lobby) -"arf" = ( +"arg" = ( +/turf/simulated/wall, +/area/engineering/lower/breakroom) +"arh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/glass{ @@ -8286,22 +8584,13 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/engineering/lower/lobby) -"arg" = ( -/turf/simulated/wall, -/area/engineering/lower/breakroom) -"arh" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/engineering/lower/breakroom) "ari" = ( /obj/structure/grille, /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "arj" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -8329,9 +8618,46 @@ "arl" = ( /turf/simulated/wall, /area/tether/surfacebase/east_stairs_two) +"arm" = ( +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"arn" = ( +/obj/machinery/teleport/hub{ + dir = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) "aro" = ( /turf/simulated/floor/tiled/dark, /area/chapel/main) +"arp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"arq" = ( +/obj/structure/morgue/crematorium, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"arr" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) "ars" = ( /obj/structure/railing{ dir = 4 @@ -8364,15 +8690,14 @@ /obj/effect/floor_decal/techfloor{ dir = 8 }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" }, +/obj/machinery/power/apc/high{ + dir = 8; + pixel_x = -28 + }, /turf/simulated/floor/tiled/techfloor, /area/server) "arv" = ( @@ -8731,6 +9056,36 @@ "arZ" = ( /turf/simulated/wall, /area/maintenance/lower/south) +"asa" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"asb" = ( +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access = list(17) + }, +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"asc" = ( +/turf/simulated/wall/r_wall, +/area/bridge/meeting_room) +"asd" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Command Meeting Room" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) "ase" = ( /obj/machinery/door/morgue{ dir = 2; @@ -8739,6 +9094,20 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/main) +"asf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Command Meeting Room" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) "asg" = ( /obj/effect/floor_decal/techfloor{ dir = 8 @@ -9122,14 +9491,17 @@ /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) "asB" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/obj/machinery/camera/network/engineering, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/engineering/lower/lobby) +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "asC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ icon_state = "intact"; @@ -9229,6 +9601,34 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) +"asO" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"asP" = ( +/obj/machinery/keycard_auth{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"asQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "asR" = ( /obj/machinery/computer/rdservercontrol{ dir = 1 @@ -9248,6 +9648,9 @@ "asT" = ( /obj/structure/table/steel, /obj/effect/floor_decal/techfloor, +/obj/machinery/camera/network/research{ + dir = 1 + }, /turf/simulated/floor/tiled/techfloor, /area/server) "asU" = ( @@ -9296,23 +9699,15 @@ /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) "asZ" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/secondfloor) +/turf/simulated/floor/reinforced, +/area/rnd/rdoffice) "ata" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, @@ -9470,26 +9865,26 @@ /area/engineering/lower/lobby) "atm" = ( /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 + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/machinery/door/airlock/glass_atmos{ name = "Atmospherics"; req_access = list(24) }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/wood, -/area/engineering/lower/breakroom) +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/engineering/lower/lobby) "atn" = ( /obj/structure/cable/cyan{ d1 = 4; @@ -9538,6 +9933,13 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/button/remote/blast_door{ + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + pixel_x = 0; + pixel_y = 0; + req_one_access = list(10,24) + }, /turf/simulated/floor/carpet, /area/engineering/lower/breakroom) "atr" = ( @@ -9570,6 +9972,18 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) +"atu" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "atv" = ( /obj/structure/railing{ dir = 8 @@ -9634,12 +10048,17 @@ /turf/simulated/wall, /area/rnd/breakroom) "atC" = ( -/obj/structure/bed/chair/comfy, -/obj/machinery/camera/network/research{ - dir = 4 +/obj/structure/closet/secure_closet/RD, +/obj/item/device/aicard, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/effect/floor_decal/borderfloor{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/rnd/breakroom) +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) "atD" = ( /obj/machinery/firealarm{ dir = 2; @@ -9703,15 +10122,15 @@ /turf/simulated/floor/wood, /area/rnd/breakroom) "atK" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6; + icon_state = "intact" }, -/obj/machinery/camera/network/research, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/wood, -/area/rnd/breakroom) +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/server) "atL" = ( /obj/structure/table/rack{ dir = 1 @@ -9863,6 +10282,9 @@ /obj/structure/table/glass, /obj/item/weapon/storage/box/cups, /obj/item/weapon/storage/box/cups, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) "auc" = ( @@ -10094,6 +10516,9 @@ /obj/structure/bed/chair{ dir = 1 }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) "auB" = ( @@ -10198,11 +10623,19 @@ /turf/simulated/floor/wood, /area/engineering/lower/breakroom) "auK" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/machinery/camera/network/engineering{ dir = 1 }, -/turf/simulated/floor/wood, -/area/engineering/lower/breakroom) +/turf/simulated/floor, +/area/maintenance/substation/research) "auL" = ( /obj/structure/table/glass, /obj/machinery/chemical_dispenser/bar_soft/full, @@ -10411,20 +10844,6 @@ /turf/simulated/wall/r_wall, /area/engineering/lower/lobby) "avd" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan, -/obj/machinery/door/airlock/glass_atmos{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/engineering/lower/lobby) -"ave" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10434,8 +10853,46 @@ }, /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) +"ave" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/yellow/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/taperoll/atmos, +/obj/random/tech_supply, +/obj/random/tool, +/obj/machinery/button/remote/blast_door{ + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + pixel_x = 0; + pixel_y = 0; + req_one_access = list(10,24) + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/monitoring) "avf" = ( /turf/simulated/wall/r_wall, /area/engineering/lower/breakroom) @@ -10454,17 +10911,36 @@ /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) "avi" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 }, -/obj/machinery/camera/network/tether{ - dir = 9 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/east_stairs_two) +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"avj" = ( +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "avk" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 5 @@ -10529,6 +11005,24 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) +"avq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "avr" = ( /obj/structure/railing{ dir = 4 @@ -10642,6 +11136,7 @@ dir = 9 }, /obj/structure/closet/secure_closet/atmos_personal, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) "avC" = ( @@ -10793,13 +11288,31 @@ /turf/simulated/wall/r_wall, /area/engineering/atmos/storage) "avL" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldgen, -/obj/machinery/camera/network/engineering{ - dir = 4 +/obj/structure/table/standard, +/obj/item/device/taperecorder{ + pixel_x = -3 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) +/obj/item/device/paicard{ + pixel_x = 4 + }, +/obj/item/weapon/circuitboard/teleporter, +/obj/item/weapon/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) "avM" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -10882,6 +11395,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) "avV" = ( @@ -11442,7 +11958,13 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) "awV" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, /obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/camera/network/research, /turf/simulated/floor/wood, /area/rnd/breakroom) "awW" = ( @@ -11771,18 +12293,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, /turf/simulated/floor/plating, /area/engineering/atmos/storage) "axv" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering/pumpstation) +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/engineering/lower/lobby) "axw" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ @@ -11945,22 +12468,24 @@ /turf/simulated/floor/tiled/monotile, /area/rnd/breakroom) "axO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/machinery/camera/network/research{ + icon_state = "camera"; dir = 8 }, -/obj/machinery/vending/coffee, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/breakroom) +/turf/simulated/floor/tiled, +/area/rnd/staircase/secondfloor) "axP" = ( /obj/effect/floor_decal/steeldecal/steel_decals9, /obj/effect/floor_decal/steeldecal/steel_decals9{ @@ -11991,6 +12516,9 @@ dir = 9 }, /obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) "axR" = ( @@ -12126,23 +12654,9 @@ /turf/simulated/floor/tiled/monotile, /area/engineering/atmos) "aya" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/engineering{ - 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/engineering/atmos) +/obj/structure/bed/chair/comfy, +/turf/simulated/floor/wood, +/area/rnd/breakroom) "ayb" = ( /obj/machinery/light_switch{ pixel_y = -28 @@ -12216,6 +12730,7 @@ icon_state = "bordercolor_shifted"; dir = 1 }, +/obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled, /area/janitor) "ayj" = ( @@ -12840,6 +13355,7 @@ icon_state = "bordercolor"; dir = 9 }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled, /area/engineering/atmos) "azn" = ( @@ -13587,16 +14103,11 @@ /turf/simulated/floor/plating, /area/maintenance/asmaint2) "aAe" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics"; - req_access = list(24) - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, /turf/simulated/floor/plating, -/area/engineering/atmos) +/area/engineering/lower/breakroom) "aAf" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -13642,16 +14153,12 @@ /turf/simulated/floor/tiled, /area/engineering/atmos) "aAi" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/camera/network/research{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) +/turf/simulated/floor/wood, +/area/rnd/breakroom) "aAj" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, @@ -13897,17 +14404,14 @@ /turf/simulated/floor/tiled, /area/engineering/atmos) "aAA" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/machinery/camera/network/engineering{ - dir = 1 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/east_stairs_two) "aAB" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13932,6 +14436,9 @@ icon_state = "bordercolor"; dir = 6 }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/engineering/atmos) "aAD" = ( @@ -14196,15 +14703,27 @@ /turf/simulated/open, /area/engineering/atmos) "aBg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/maintenance/engi{ +/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/machinery/door/airlock/glass_atmos{ name = "Atmospherics"; req_access = list(24) }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/engineering/atmos) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/wood, +/area/engineering/lower/breakroom) "aBh" = ( /obj/structure/railing{ dir = 8 @@ -14518,55 +15037,19 @@ /turf/simulated/open, /area/engineering/atmos) "aBF" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 4 }, -/obj/machinery/computer/general_air_control/large_tank_control{ - frequency = 1441; - input_tag = "atmos_out"; - name = "Atmos Intake Control"; - output_tag = "atmos_in"; - sensors = list("atmos_intake" = "Tank") - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"aBG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; +/obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 }, -/obj/effect/floor_decal/corner/yellow/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 1 - }, -/obj/structure/table/standard, -/obj/item/taperoll/atmos, -/obj/random/tech_supply, -/obj/random/tool, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/monotile, +/area/rnd/breakroom) "aBH" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -15065,11 +15548,23 @@ /turf/simulated/floor/plating, /area/maintenance/lower/south) "aCI" = ( -/obj/machinery/camera/network/tether{ +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/east_stairs_two) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) "aCJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15215,18 +15710,23 @@ /area/maintenance/asmaint2) "aCY" = ( /obj/machinery/door/airlock/maintenance/engi{ - name = "Drone Bay"; + name = "Atmospherics"; req_access = list(24) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/drone_fabrication) +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/engineering/atmos) "aCZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -15441,15 +15941,13 @@ /turf/simulated/floor/plating, /area/maintenance/asmaint2) "aDs" = ( -/obj/effect/floor_decal/techfloor/corner, -/obj/machinery/drone_fabricator{ - fabricator_tag = "Atmos" - }, -/obj/machinery/camera/network/engineering{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/drone_fabrication) +/turf/simulated/floor/tiled, +/area/engineering/atmos) "aDt" = ( /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor/grid, @@ -15478,14 +15976,15 @@ /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) "aDx" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/computer/atmos_alert{ - icon_state = "computer"; - dir = 1 +/obj/machinery/atmospherics/portables_connector{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering/pumpstation) "aDy" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -16121,12 +16620,21 @@ /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) "aFa" = ( -/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/maintenance/engi{ - name = "Atmospherics Balcony"; + name = "Atmospherics"; req_access = list(24) }, /obj/structure/catwalk, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, /turf/simulated/floor/plating, /area/engineering/atmos) "aFb" = ( @@ -16292,11 +16800,13 @@ /turf/simulated/open, /area/engineering/atmos) "aFw" = ( -/obj/structure/catwalk, -/obj/machinery/camera/network/engineering{ - dir = 1 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + icon_state = "intact"; + dir = 4 }, -/turf/simulated/open, +/turf/simulated/floor/tiled, /area/engineering/atmos) "aFx" = ( /obj/structure/catwalk, @@ -16990,11 +17500,29 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) "aGS" = ( -/obj/machinery/camera/network/outside{ +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + icon_state = "bordercolor"; + dir = 9 + }, +/obj/machinery/light{ dir = 1 }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside2) +/obj/machinery/computer/general_air_control/large_tank_control{ + frequency = 1441; + input_tag = "atmos_out"; + name = "Atmos Intake Control"; + output_tag = "atmos_in"; + sensors = list("atmos_intake" = "Tank") + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/monitoring) "aGT" = ( /obj/structure/plushie/drone{ icon_state = "droneplushie"; @@ -17193,10 +17721,6 @@ icon_state = "tube1"; pixel_y = 0 }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHt" = ( @@ -17268,19 +17792,15 @@ /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHz" = ( -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 }, -/obj/machinery/alarm{ - pixel_x = 0; - pixel_y = 30 +/obj/machinery/camera/network/engineering{ + dir = 4 }, -/obj/machinery/camera/network/research, -/obj/machinery/computer/security/xenobio, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_slimepens) +/turf/simulated/open, +/area/engineering/atmos) "aHA" = ( /obj/machinery/smartfridge/secure/extract, /turf/simulated/floor/tiled/white, @@ -17312,10 +17832,6 @@ /obj/machinery/light{ dir = 4 }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHD" = ( @@ -17414,18 +17930,11 @@ /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) "aHO" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 +/obj/machinery/camera/network/research/xenobio{ + network = list("Xenobiology") }, -/obj/machinery/camera/network/engineering, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/tcomms) +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) "aHP" = ( /turf/simulated/wall/r_wall, /area/tcommsat/computer) @@ -17484,35 +17993,17 @@ /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) "aHV" = ( -/obj/machinery/button/remote/blast_door{ - id = "xenobiodiv7"; - name = "Divider 7 Blast Doors"; - pixel_x = -30; - pixel_y = -5; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen9"; - name = "Pen 9 Containment"; - pixel_x = -30; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - dir = 4 +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" + d2 = 2; + icon_state = "0-2" }, -/obj/machinery/power/apc/super{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) +/turf/simulated/floor/plating, +/area/maintenance/substation/tcomms) "aHW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -17693,6 +18184,9 @@ icon_state = "1-8" }, /obj/machinery/light/small, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) "aIq" = ( @@ -17984,11 +18478,13 @@ /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) "aIX" = ( -/obj/machinery/camera/network/outside{ - dir = 8 +/obj/machinery/alarm/monitor/isolation{ + alarm_id = "slime_pens"; + dir = 4; + pixel_x = -22 }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside2) +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) "aIY" = ( /obj/machinery/door/blast/regular{ id = "xenobiodiv1"; @@ -18036,6 +18532,22 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aJc" = ( +/obj/machinery/alarm/monitor/isolation{ + alarm_id = "slime_pens"; + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aJd" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiodiv2"; + layer = 8; + name = "Divider 2 Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aJe" = ( /obj/machinery/button/remote/blast_door{ id = "xenobiodiv2"; name = "Divider 2 Blast Doors"; @@ -18057,25 +18569,8 @@ pixel_y = -8; req_access = list(55) }, -/obj/machinery/camera/network/research{ - dir = 8 - }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"aJd" = ( -/obj/machinery/door/blast/regular{ - id = "xenobiodiv2"; - layer = 8; - name = "Divider 2 Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"aJe" = ( -/obj/machinery/camera/network/outside{ - dir = 4 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside2) "aJf" = ( /obj/structure/morgue, /turf/simulated/floor/plating, @@ -19356,31 +19851,18 @@ /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aLt" = ( -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen5"; - name = "Pen 5 Containment"; - pixel_x = -30; - pixel_y = -8; - req_access = list(55) +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen3"; - name = "Pen 3 Containment"; - pixel_x = -30; - pixel_y = 8; - req_access = list(55) +/obj/machinery/alarm{ + pixel_x = 0; + pixel_y = 30 }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiodiv3"; - name = "Divider 3 Blast Doors"; - pixel_x = -38; - pixel_y = 0; - req_access = list(55) - }, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, +/obj/machinery/computer/security/xenobio, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) "aLu" = ( /obj/machinery/button/remote/blast_door{ @@ -19918,17 +20400,15 @@ /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aMn" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 4; - network = list("Xenobiology") +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "slime_pens"; - dir = 4; - pixel_x = -22 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) +/area/rnd/rdoffice) "aMo" = ( /obj/machinery/light/small{ dir = 8 @@ -20205,59 +20685,18 @@ /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aMQ" = ( -/obj/machinery/button/remote/blast_door{ - id = "xenobiodiv5"; - name = "Divider 5 Blast Doors"; - pixel_x = -38; - pixel_y = 0; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen5"; - name = "Pen 5 Containment"; - pixel_x = -30; - pixel_y = 8; - req_access = list(55) - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen7"; - name = "Pen 7 Containment"; - pixel_x = -30; - pixel_y = -8; - req_access = list(55) +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aMR" = ( -/obj/machinery/button/remote/blast_door{ - id = "xenobiodiv6"; - name = "Divider 6 Blast Doors"; - pixel_x = 38; - pixel_y = 0; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen6"; - name = "Pen 6 Containment"; - pixel_x = 30; - pixel_y = 8; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen8"; - name = "Pen 8 Containment"; - pixel_x = 30; - pixel_y = -8; - req_access = list(55) - }, -/obj/machinery/camera/network/research{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aMS" = ( @@ -20561,14 +21000,10 @@ }, /area/tcommsat/chamber) "aNu" = ( -/obj/machinery/light{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aNv" = ( /obj/machinery/door/blast/regular{ @@ -21007,16 +21442,30 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aOk" = ( -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "slime_pens"; - dir = 4; - pixel_x = -22 +/obj/machinery/button/remote/blast_door{ + id = "xenobiodiv8"; + name = "Divider 8 Blast Doors"; + pixel_x = 30; + pixel_y = -5; + req_access = list(55) }, -/obj/machinery/camera/network/research/xenobio{ - dir = 4; - network = list("Xenobiology") +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen10"; + name = "Pen 10 Containment"; + pixel_x = 30; + pixel_y = 8 }, -/turf/simulated/floor/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + id = "phoroncelldoor10"; + name = "Phoron Cell 10 Doorlock"; + pixel_x = 38; + pixel_y = 0; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aOl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21061,17 +21510,18 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) "aOo" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 8; - network = list("Xenobiology") +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "slime_pens"; - dir = 8; - pixel_x = 22 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "aOp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -21155,12 +21605,12 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aOw" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 8; - network = list("Xenobiology") +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "aOx" = ( /obj/machinery/light{ dir = 8 @@ -21182,6 +21632,7 @@ opacity = 0 }, /obj/machinery/door/airlock/research{ + id_tag = "phoroncelldoor9"; name = "Slime Pen 9"; req_access = list(); req_one_access = list(47,55) @@ -21204,6 +21655,7 @@ opacity = 0 }, /obj/machinery/door/airlock/research{ + id_tag = "phoroncelldoor10"; name = "Slime Pen 10"; req_access = list(); req_one_access = list(47,55) @@ -21370,27 +21822,14 @@ /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) "aOL" = ( -/obj/machinery/button/remote/blast_door{ - id = "xenobiodiv8"; - name = "Divider 8 Blast Doors"; - pixel_x = 30; - pixel_y = -5; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen10"; - name = "Pen 10 Containment"; - pixel_x = 30; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - dir = 8 +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) +/area/teleporter) "aOM" = ( /obj/structure/railing{ icon_state = "railing0"; @@ -21399,12 +21838,14 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aON" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 4; - network = list("Xenobiology") +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/cups, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "aOO" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, @@ -21451,6 +21892,7 @@ dir = 8; icon_state = "pipe-c" }, +/obj/machinery/camera/network/research/xenobio, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aOR" = ( @@ -21502,71 +21944,194 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aOW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/computer/atmos_alert{ + icon_state = "computer"; + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/monitoring) "aOX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/woodentable, -/obj/item/weapon/folder/red, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) +/obj/structure/catwalk, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/open, +/area/engineering/atmos) "aOY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/chair/comfy/black{ +/obj/structure/railing{ + icon_state = "railing0"; dir = 1 }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"aOZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"aPa" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"aPb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPe" = ( -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPf" = ( -/obj/machinery/camera/network/command{ +/obj/machinery/camera/network/engineering{ dir = 8 }, -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPg" = ( -/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/engineering/atmos) +"aOZ" = ( +/obj/effect/floor_decal/techfloor/corner, +/obj/machinery/drone_fabricator{ + fabricator_tag = "Atmos" + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"aPa" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/masks{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aPb" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen5"; + name = "Pen 5 Containment"; + pixel_x = -20; + pixel_y = -8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen3"; + name = "Pen 3 Containment"; + pixel_x = -20; + pixel_y = 8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiodiv3"; + name = "Divider 3 Blast Doors"; + pixel_x = -25; + pixel_y = 0; + req_access = list(55) + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -35; + pixel_y = 0 + }, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aPc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/machinery/camera/network/research/xenobio{ + dir = 4; + icon_state = "camera"; + network = list("Xenobiology") + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aPd" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobiodiv6"; + name = "Divider 6 Blast Doors"; + pixel_x = 38; + pixel_y = 0; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen6"; + name = "Pen 6 Containment"; + pixel_x = 30; + pixel_y = 8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen8"; + name = "Pen 8 Containment"; + pixel_x = 30; + pixel_y = -8; + req_access = list(55) + }, +/obj/machinery/camera/network/research{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aPe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhallway) +"aPf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhallway) +"aPg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/evidence) +"aPh" = ( +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/security/lowerhallway) +"aPi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ @@ -21574,119 +22139,221 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/command, -/turf/simulated/floor/plating, -/area/bridge/secondary/meeting_room) -"aPh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + icon_state = "intact"; dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"aPj" = ( +/obj/machinery/camera/network/interrogation, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/interrogation) +"aPk" = ( +/obj/structure/cable/green{ + 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/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" + icon_state = "0-4" }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor, +/area/maintenance/lower/security) +"aPl" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Warden's Office" + }, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + icon_state = "secintercom"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/warden) +"aPm" = ( +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/steel, +/obj/item/weapon/paper, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/solitary) +"aPn" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/resleeving) +"aPo" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aPp" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPk" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/cups, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPl" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPm" = ( -/obj/structure/table/woodentable, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPn" = ( -/obj/machinery/keycard_auth{ - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPo" = ( -/obj/machinery/keycard_auth{ - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"aPp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) "aPq" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) "aPr" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) +/obj/structure/table/bench/standard, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/breakroom) "aPs" = ( -/obj/structure/table/woodentable, -/obj/structure/window/reinforced{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ dir = 8 }, -/obj/item/weapon/folder/blue, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) "aPt" = ( -/obj/structure/table/woodentable, -/obj/machinery/light, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9; + icon_state = "bordercolorcorner2" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery) "aPu" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) +/obj/structure/morgue, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) "aPv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21925,16 +22592,21 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) "aPT" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 +/obj/structure/table/woodentable, +/obj/item/weapon/pen/blue{ + pixel_x = 2; + pixel_y = 1 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 8 }, -/obj/machinery/vending/medical, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/chapel/office) "aPU" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -22273,12 +22945,11 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) "aQu" = ( -/obj/machinery/suit_cycler/medical, -/obj/machinery/camera/network/medbay{ - dir = 4 +/obj/machinery/camera/network/civilian{ + dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/paramed) +/turf/simulated/floor/tiled/dark, +/area/chapel/main) "aQv" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/medical/emt, @@ -22687,20 +23358,10 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) "aQW" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9; - icon_state = "bordercolorcorner2" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery) +/obj/structure/table/bench/padded, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) "aQX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -22741,22 +23402,12 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) "aRa" = ( -/obj/structure/bed/chair{ +/obj/structure/table/bench/padded, +/obj/machinery/camera/network/civilian{ dir = 1 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/resleeving) +/turf/simulated/floor/tiled/dark, +/area/chapel/main) "aRb" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, @@ -22802,41 +23453,11 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) "aRd" = ( -/obj/structure/closet{ - name = "spare clothes" - }, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/grey, -/obj/item/clothing/under/color/white, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/under/color/green, -/obj/item/clothing/under/color/lightpurple, -/obj/item/clothing/under/color/yellow, -/obj/item/clothing/under/color/lightred, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/white, -/obj/item/clothing/shoes/blue, -/obj/item/clothing/shoes/green, -/obj/item/clothing/shoes/purple, -/obj/item/clothing/shoes/yellow, -/obj/item/clothing/shoes/red, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, /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/machinery/vending/loadout/uniform, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) "aRe" = ( @@ -23169,17 +23790,11 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) "aRE" = ( -/obj/machinery/camera/network/medbay{ +/obj/machinery/camera/network/civilian{ dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/fish_farm) "aRF" = ( /obj/structure/cable/green{ d1 = 1; @@ -23425,21 +24040,15 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) "aRR" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 +/obj/machinery/camera/network/tether{ + dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/east_stairs_two) "aRS" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -23485,20 +24094,14 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) "aRV" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/bed/chair/wheelchair{ +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/machinery/camera/network/medbay{ - dir = 8 +/obj/machinery/camera/network/tether{ + dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "aRW" = ( /obj/structure/catwalk, /obj/structure/cable/green{ @@ -23806,6 +24409,9 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) +"aSx" = ( +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "aSy" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 @@ -23884,18 +24490,12 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) "aSF" = ( -/obj/structure/table/bench/standard, -/obj/effect/landmark/start{ - name = "Medical Doctor" +/obj/effect/floor_decal/techfloor{ + dir = 1 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/breakroom) +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/bar) "aSG" = ( /obj/structure/table/bench/standard, /obj/machinery/power/apc{ @@ -23983,17 +24583,17 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) "aSL" = ( -/obj/machinery/camera/network/medbay{ - dir = 8 +/obj/effect/floor_decal/borderfloor{ + dir = 6 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 +/obj/machinery/camera/network/tether{ + dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "aSM" = ( /obj/structure/table/standard, /obj/machinery/firealarm{ @@ -24123,25 +24723,14 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) "aSU" = ( -/obj/structure/table/bench/standard, -/obj/effect/landmark/start{ - name = "Medical Doctor" +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 +/obj/machinery/camera/network/tether{ + dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/breakroom) +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "aSV" = ( /obj/structure/table/bench/standard, /obj/effect/landmark/start{ @@ -24207,22 +24796,17 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) "aSZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ +/obj/effect/floor_decal/corner/green/border{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "aTa" = ( /obj/machinery/light/small, /obj/effect/floor_decal/borderfloorwhite, @@ -24374,30 +24958,12 @@ /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) "aTq" = ( -/obj/structure/closet/secure_closet/warden, -/obj/item/weapon/gun/projectile/shotgun/pump/combat{ - ammo_type = /obj/item/ammo_casing/a12g/beanbag; - desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; - name = "warden's shotgun" +/obj/effect/floor_decal/borderfloor, +/obj/machinery/camera/network/tether{ + dir = 1 }, -/obj/item/weapon/book/manual/security_space_law, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/machinery/camera/network/security, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/warden) +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "aTr" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/lowerhallway) @@ -24653,33 +25219,29 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/solitary) "aTK" = ( -/obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 1 +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/command{ + req_access = list(19) }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/steel, -/obj/item/weapon/paper, -/obj/item/weapon/pen/blue{ - pixel_x = 5; - pixel_y = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/solitary) +/turf/simulated/floor, +/area/bridge_hallway) "aTL" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -24699,24 +25261,11 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) "aTM" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Warden's Office" +/obj/machinery/camera/network/tether{ + dir = 9 }, -/obj/item/device/radio/intercom/department/security{ - dir = 8; - icon_state = "secintercom"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/warden) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_staires_two) "aTN" = ( /obj/structure/table/reinforced, /obj/item/device/retail_scanner/security, @@ -24915,38 +25464,19 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/solitary) "aUa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior North"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhallway) +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside2) "aUb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/camera/network/outside{ + icon_state = "camera"; dir = 9 }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/solitary) +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside2) "aUc" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/gasstorage) @@ -25057,20 +25587,12 @@ /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) "aUj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhallway) +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside2) "aUk" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/evidence) @@ -25359,37 +25881,45 @@ /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/evidence) "aUJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 +/obj/machinery/button/remote/blast_door{ + id = "xenobiodiv5"; + name = "Divider 5 Blast Doors"; + pixel_x = -30; + pixel_y = 0; + req_access = list(55) }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen5"; + name = "Pen 5 Containment"; + pixel_x = -22; + pixel_y = 8; + req_access = list(55) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen7"; + name = "Pen 7 Containment"; + pixel_x = -22; + pixel_y = -8; + req_access = list(55) }, -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior North"; - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhallway) -"aUK" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 - }, -/obj/structure/closet{ - name = "Evidence Closet" +/obj/machinery/alarm{ + dir = 4; + pixel_x = -35; + pixel_y = 0 }, /turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/evidence) +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aUK" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) "aUL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ icon_state = "intact"; @@ -25832,23 +26362,44 @@ /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) "aVn" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/structure/closet{ - name = "Evidence Closet" +/obj/machinery/button/remote/blast_door{ + id = "xenobiodiv7"; + name = "Divider 7 Blast Doors"; + pixel_x = -30; + pixel_y = -5; + req_access = list(55) }, -/obj/machinery/alarm{ - alarm_id = null; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen9"; + name = "Pen 9 Containment"; + pixel_x = -30; + pixel_y = 8 }, -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior North"; +/obj/machinery/light{ dir = 1 }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/super{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/button/remote/airlock{ + id = "phoroncelldoor9"; + name = "Phoron Cell 9 Doorlock"; + pixel_x = -38; + pixel_y = 0; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 0; + pixel_y = 38 + }, /turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/evidence) +/area/rnd/outpost/xenobiology/outpost_slimepens) "aVo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -25947,12 +26498,27 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) "aVu" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Command Subgrid"; + name_tag = "Command Subgrid" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/interrogation) +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) "aVv" = ( /obj/structure/bed/chair, /turf/simulated/floor/tiled/dark, @@ -26143,15 +26709,19 @@ /turf/simulated/floor, /area/tether/surfacebase/security/interrogation) "aVI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior North"; - dir = 1 +/obj/structure/disposaloutlet{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) +/obj/machinery/camera/network/research/xenobio{ + dir = 9; + icon_state = "camera"; + network = list("Xenobiology") + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) "aVJ" = ( /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) @@ -26289,12 +26859,27 @@ /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) "aVV" = ( -/obj/machinery/vending/hydronutrients, -/obj/machinery/camera/network/security{ +/obj/machinery/door/airlock/maintenance/engi{ + name = "Drone Bay"; + req_access = list(24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) "aVW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -26943,62 +27528,33 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) "aWM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "xeno_phoron_pen_scrubbers" }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/camera/network/research/xenobio{ + dir = 10; + icon_state = "camera"; + network = list("Xenobiology") }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior North"; - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) "aWN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Atmospherics Balcony"; + req_access = list(24) }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/structure/catwalk, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + opacity = 0 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/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/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior West"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhallway) +/turf/simulated/floor/plating, +/area/engineering/atmos) "aWO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ icon_state = "intact"; @@ -27023,13 +27579,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"aWP" = ( -/obj/machinery/camera/network/interrogation{ - icon_state = "camera"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/interrogation) "aWQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -27080,23 +27629,34 @@ }, /turf/simulated/open, /area/maintenance/lower/rnd) -"aXa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"aWV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aWW" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aWX" = ( +/obj/structure/bed/chair/comfy/black, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aWY" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aWZ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhallway) +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "aXb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -27135,39 +27695,361 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) +"aXd" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aXe" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Command Secretary" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/manual/security_space_law, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXg" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/red, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXh" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) "aXi" = ( /obj/effect/floor_decal/chapel{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/chapel/main) +"aXj" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "aXk" = ( /obj/effect/floor_decal/chapel{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/chapel/main) +"aXl" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aXm" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXn" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aXp" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) "aXq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/chapel/main) +"aXr" = ( +/turf/simulated/wall, +/area/maintenance/substation/command) +"aXs" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/power/smes/buildable{ + charge = 0; + output_attempt = 0; + outputting = 0; + RCon_tag = "Substation - Command" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aXt" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) "aXu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/chapel/main) +"aXv" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aXw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aXx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/blue, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) "aXy" = ( /obj/structure/table/bench/padded, /turf/simulated/floor/tiled/dark, /area/chapel/main) +"aXz" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Command Secretary" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aXB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aXC" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aXD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aXE" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aXF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aXG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aXH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aXJ" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) "aXK" = ( /turf/simulated/wall{ can_open = 1 }, /area/maintenance/lower/bar) +"aXL" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aXM" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aXN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aXO" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXP" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXQ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/tether/surfacebase/surface_two_hall) +"aXS" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/tether/surfacebase/surface_two_hall) "aXT" = ( /obj/structure/railing{ dir = 8 @@ -27178,6 +28060,76 @@ /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) +"aXU" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aXV" = ( +/obj/structure/railing, +/obj/structure/lattice, +/turf/simulated/open, +/area/tether/surfacebase/surface_two_hall) +"aXW" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aXX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aXY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aXZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aYa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYb" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aYc" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/small{ + pixel_y = 12 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "aYd" = ( /turf/simulated/wall, /area/chapel/main) @@ -27187,12 +28139,29 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/main) -"aYi" = ( -/obj/structure/table/bench/padded, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) +"aYf" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Command Conf Room" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aYg" = ( +/obj/machinery/door/airlock/engineering{ + name = "Command Substation" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aYh" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "aYj" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -27218,13 +28187,18 @@ }, /turf/simulated/floor/lino, /area/chapel/office) -"aYo" = ( -/obj/structure/morgue/crematorium, -/obj/machinery/camera/network/civilian{ +"aYn" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) +/area/bridge_hallway) "aYp" = ( /turf/simulated/floor/tiled/dark, /area/chapel/chapel_morgue) @@ -27237,6 +28211,42 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/chapel_morgue) +"aYr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -26 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "aYt" = ( /obj/effect/floor_decal/chapel{ dir = 1 @@ -27297,6 +28307,41 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/main) +"aYz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "aYB" = ( /obj/effect/landmark/start{ name = "Chaplain" @@ -27309,10 +28354,6 @@ }, /turf/simulated/floor/lino, /area/chapel/office) -"aYD" = ( -/obj/structure/morgue, -/turf/simulated/floor/tiled/dark, -/area/chapel/chapel_morgue) "aYE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -27345,19 +28386,16 @@ /obj/effect/floor_decal/chapel, /turf/simulated/floor/tiled/dark, /area/chapel/main) -"aYI" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/pen/blue{ - pixel_x = 2; - pixel_y = 1 +"aYJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/item/weapon/paper_bin{ - pixel_x = -2; - pixel_y = 8 +/obj/machinery/light/small, +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/lino, -/area/chapel/office) +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "aYK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 @@ -27370,6 +28408,20 @@ }, /turf/simulated/floor/lino, /area/chapel/office) +"aYL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 2; + frequency = 1473; + name = "Confession Intercom"; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "aYM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27384,6 +28436,22 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/chapel_morgue) +"aYN" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "aYO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -27445,6 +28513,19 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/main) +"aYT" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) "aYU" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -27477,6 +28558,15 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/chapel_morgue) +"aYX" = ( +/obj/machinery/button/windowtint{ + dir = 1; + id = "meetingroom"; + pixel_x = -25; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "aYY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27516,6 +28606,55 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/lino, /area/chapel/office) +"aZd" = ( +/obj/machinery/door/airlock/engineering{ + name = "Command Substation" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aZe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aZf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aZg" = ( +/turf/simulated/wall, +/area/maintenance/commandmaint) +"aZh" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) "aZi" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -27574,6 +28713,22 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/office) +"aZl" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) "aZm" = ( /obj/machinery/power/apc{ dir = 4; @@ -27860,7 +29015,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) "aZP" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -27876,7 +29031,27 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) +/area/tether/surfacebase/surface_two_hall) +"aZQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aZR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "aZS" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -27997,28 +29172,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"bab" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/south) "bac" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ @@ -28309,6 +29462,119 @@ }, /turf/simulated/floor/lino, /area/chapel/office) +"baH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"baI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"baJ" = ( +/obj/structure/cable{ + 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/plating, +/area/maintenance/commandmaint) +"baK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"baL" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"baM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"baN" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "meetingroom" + }, +/turf/simulated/floor, +/area/bridge/meeting_room) +"baO" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WATCH YOUR STEP'."; + name = "\improper WATCH YOUR STEP" + }, +/turf/simulated/wall, +/area/maintenance/commandmaint) +"baP" = ( +/obj/structure/lattice, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/open, +/area/tether/surfacebase/surface_two_hall) +"baU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"baW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "baX" = ( /obj/machinery/light/small{ dir = 4 @@ -28336,13 +29602,26 @@ }, /turf/simulated/floor/tiled/dark, /area/chapel/main) -"bbd" = ( -/obj/machinery/camera/network/civilian{ - icon_state = "camera"; - dir = 10 +"bbl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/chapel/main) +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) (1,1,1) = {" aaa @@ -32709,7 +33988,6 @@ aab aab aab aab -aIX aab aab aab @@ -32721,7 +33999,8 @@ aab aab aab aab -aIX +aab +aUb aab aab aab @@ -32991,19 +34270,19 @@ aab aab aHc aHs -aMn +aIX aIy aIY aHs -aMn +aIX aIy aLs aHs -aMn +aIX aIy aMP -aNu -aOk +aUK +aIX aIy aOJ aHt @@ -33132,7 +34411,7 @@ aab aab aab aHc -aHt +aHO aHt aHt aIY @@ -33151,7 +34430,7 @@ aOJ aHt aNS aKX -aOK +aWM aHc aab aab @@ -33204,7 +34483,7 @@ aac aac acq acq -ako +ajU akd akI akP @@ -33290,7 +34569,7 @@ aHt aKk aKW aOJ -aOw +aHt aNV aKW aOK @@ -33420,15 +34699,15 @@ aHv aHS aIz aIY -aIz +aVI aKl aKX aLs -aIz +aVI aKl aKX aMP -aIz +aVI aKl aKX aHc @@ -33556,7 +34835,7 @@ aab aab aab aab -aGS +aab aHc aHw aHx @@ -33574,7 +34853,7 @@ aNk aNv aND aHc -aHV +aVn aOj aJa aWK @@ -33707,11 +34986,11 @@ aIZ aJB aKm aKZ -aLt +aPb aJB aMi aKZ -aMQ +aUJ aNl aNw aKZ @@ -33850,7 +35129,7 @@ aJC aKo aPB aJa -aJa +aMQ aMj aPB aJa @@ -33984,7 +35263,7 @@ aab aab aab aHc -aHz +aLt aHW aID aJb @@ -33992,7 +35271,7 @@ aJD aKp aMf aMk -aJD +aMR aOA aMf aNU @@ -34134,7 +35413,7 @@ aJE aKq aPB aJa -aJa +aNu aMj aPB aJa @@ -34218,7 +35497,7 @@ ahD als alz alR -amf +aRE alz als ahD @@ -34271,7 +35550,7 @@ aHc aHQ aHU aIE -aJc +aJe aJF aKr aLa @@ -34279,7 +35558,7 @@ aLu aJF aMl aLa -aMR +aPd aJF aNx aLa @@ -34408,7 +35687,7 @@ aab aab aab aab -aGS +aab aHc aHB aHT @@ -34426,7 +35705,7 @@ aNm aNy aNE aNW -aOL +aOk aMj aJa aWL @@ -34556,15 +35835,15 @@ aHv aHY aIG aJd -aIG +aPc aKt aKX aLv -aIG +aPc aKt aKX aMS -aIG +aPc aKt aKX aHc @@ -34710,7 +35989,7 @@ aHt aKu aKW aNX -aON +aHt aKt aKX aOK @@ -34783,12 +36062,12 @@ ahs ahs aho alm -alt +ano alB alS alS amq -amA +ano alm aho aho @@ -34836,7 +36115,7 @@ aab aab aab aHc -aHt +aHO aHt aHt aJd @@ -34855,7 +36134,7 @@ aNX aHt aKu aKW -aOK +aWM aHc aab aab @@ -34936,10 +36215,10 @@ amE aho ajy amH -aii -aii -aii -aii +anp +anp +anp +anp aok aoI apt @@ -34979,19 +36258,19 @@ aab aab aHc aHC -aOo +aJc aIH aJd aHC -aOo +aJc aIH aLv aHC -aOo +aJc aIH aMS aHC -aOo +aJc aIH aNX aHt @@ -35048,7 +36327,7 @@ aac aac abn aal -aaJ +aak aaR abo abA @@ -35078,12 +36357,12 @@ ahq aho ajy abz -aii -ano +anp anD anN +asZ aok -aoJ +atK apu aqe aqO @@ -35190,7 +36469,7 @@ aae aae aae aae -aPg +aat aae aae aae @@ -35220,10 +36499,10 @@ amF amG ajx abz -aii anp anE anO +aMn aok aoK apv @@ -35265,7 +36544,6 @@ aab aab aab aab -aJe aab aab aab @@ -35277,7 +36555,8 @@ aab aab aab aab -aJe +aab +aUj aab aab aab @@ -35327,16 +36606,16 @@ aac aac aac aae -aak -aat -akg -aak -aPb -aPh -aPl -aPn -aPe -aPr +akn +akn +akn +akn +akn +akn +akn +akn +akn +aam aae acW acW @@ -35362,7 +36641,7 @@ ahq aho ajy abz -aii +anp acF anF anP @@ -35469,16 +36748,16 @@ aac aac aac aae +akn +akn +akn +akn +akn +akn +akn +akn +akn aam -aau -aOW -aOY -aPc -aPi -aPe -aPe -aPe -aPr aae acW acW @@ -35506,7 +36785,7 @@ ajy amH amV acF -acN +atC anQ aol aoL @@ -35611,16 +36890,16 @@ aac aac aac aae -aam -aav -aOX -aOZ -aPd -aPj -aPe -aPe -aPp -aPs +akn +akn +akn +akn +akn +akn +akn +akn +akn +akn aae acW acW @@ -35753,16 +37032,16 @@ aac aac aac aae -aak -aaI -aaI -aPa -aPe -aPe -aPe -aPe -aPe -aPt +akn +akn +akn +akn +akn +akn +akn +akn +akn +akn aae acW acW @@ -35899,12 +37178,12 @@ aae aae aae aae -aPf -aPk -aPm -aPo -aPq -aPu +akn +akn +akn +akn +akn +akn aae acW acW @@ -36080,7 +37359,7 @@ aop aoP apz aqj -aqT +avL ary asp asX @@ -36225,7 +37504,7 @@ acF acF acF asq -asZ +axO atA atz atz @@ -36469,7 +37748,7 @@ aUz aUN aVg aVx -aVV +akg aVQ aWe aWo @@ -36504,18 +37783,18 @@ ail anU aor aoR -apB +auK aqk aqU arA ass aqk -atC +aya auo auW avu awj -awV +aAi atB ayC azg @@ -36887,7 +38166,7 @@ aab abE acd aTu -aTM +aPl abE abE aUC @@ -37074,7 +38353,7 @@ aov anX apF aqm -aqY +aqU arE asw aqk @@ -37197,7 +38476,7 @@ ale alh all alq -alv +aoJ ahD alW amh @@ -37319,13 +38598,13 @@ aTz aUF aUN aUW -aVI +ahy aUN aUW -aWM +aPi aUN aUW -aVI +ahy aUN acW acW @@ -37376,7 +38655,7 @@ auk aAT aAT aAT -aCY +aVV aAT aAT aAT @@ -37453,12 +38732,12 @@ aab aab aab abE -aTq +aas aTy aUe aWF aTz -aUJ +afd aUN aUd aVo @@ -37510,16 +38789,16 @@ aut aut aut atJ -axO +aBF auv azl -aAe +aCY aAT aAT aBW aCx aCZ -aDs +aOZ aDJ aAT aAT @@ -37624,7 +38903,7 @@ agZ aha adY ahG -alG +aqq alZ amk adY @@ -37646,7 +38925,7 @@ anZ arF asx atb -atK +awV auu auZ auu @@ -37890,9 +39169,9 @@ aVZ aWw aWC aWD -aWN +ako aWT -aXa +aPf aXb aTr acW @@ -38023,10 +39302,10 @@ aab aab aTs aTE -aUa +aaX aTr aUs -aUs +aPh aUQ aVb aUQ @@ -38081,7 +39360,7 @@ axd axR ayG azp -aAi +aDs aAU aBC aCa @@ -38171,9 +39450,9 @@ aUt aUt aUQ aVc -aVu +ajK aVF -aWP +aVP aWa aWl aUQ @@ -38235,7 +39514,7 @@ aAU aAT azl azl -aFa +aWN azl azl aEp @@ -38315,7 +39594,7 @@ aUQ aVd aVv aVG -aVP +aPj aWb aWm aUQ @@ -38366,7 +39645,7 @@ avA ayH azr aAk -aAW +aHz aAX aAX aAX @@ -38378,7 +39657,7 @@ aAX aAX aER aFb -aFb +aOX azl aEp aEQ @@ -38449,7 +39728,7 @@ aab aab aTs aTH -aUj +aPe aUk aUu aUH @@ -38474,7 +39753,7 @@ age agt agt agt -ahd +agt aiC alM age @@ -38493,10 +39772,10 @@ adY ahY aoX afG -aqq +aqE arb arc -asB +axv atg atO aux @@ -38736,7 +40015,7 @@ aTQ aUp aUk aUw -aVn +afq aUR aVE aUS @@ -39020,7 +40299,7 @@ aTI aTZ aUk aUy -aUK +aPg aUR aVO aUS @@ -39042,7 +40321,7 @@ age agu age agQ -ahf +aTM aiA aly amd @@ -39164,7 +40443,7 @@ aUk aUk aUk aUR -aVE +aPk aUS abD aca @@ -39219,7 +40498,7 @@ ayI azv aAp aBb -aBF +aGS aCd aCB aDd @@ -39300,8 +40579,8 @@ aab aab aab aTt -aTK -aUb +aPm +acN aaS aWG aUq @@ -39323,36 +40602,36 @@ afa afB afV agf -afV +aRV agG afV -ahh +amf ahu ahK ahZ afV -afV +aSU afV ajm afV agG afB ajQ -anc +afV ans agG afV -afV +aRV apd apJ afG -are +arf arK asF ati atT auC -avd +atm avH awx axm @@ -39361,7 +40640,7 @@ ayJ azw aAq aBc -aBG +ave aCe aCC aDe @@ -39372,7 +40651,7 @@ aAX aAX aAX aES -aFw +aFb azl aFK aGa @@ -39494,7 +40773,7 @@ asF atj atU auD -ard +are avI awy axn @@ -39507,7 +40786,7 @@ aBH aCf aCD aDf -aDx +aOW aBc aAX aAX @@ -39630,17 +40909,17 @@ aia ape apM aqw -arf +arh arM asG atk atV auE -ave +avd avJ awz axo -aya +aCI ayL azy aAs @@ -39745,12 +41024,13 @@ aap aap aap adY -afd +alv afE afY agi agv agv +aXR agv agv agv @@ -39764,8 +41044,7 @@ agv agv agv agv -agv -agv +aXR agv agv aoB @@ -39893,6 +41172,7 @@ afY agj agw agw +aXS agw agw agw @@ -39906,22 +41186,21 @@ agw agw agw agw -agw -agw +aXS agw agw aoC apf apN -aqy +aqs arg -arh -arh -atm -arh -arh +aAe +aAe +aBg +aAe +aAe avf -avL +avN awB axq ayb @@ -40012,9 +41291,9 @@ aab aac aNz aPW -aQu +ahh aan -aay +ahd aaN aaU aan @@ -40035,21 +41314,21 @@ afY agj agw agw +aXS agw agw agw agw agw agw -agw -agw -agw -agw -agw -agw -agw -agw -agw +asc +asc +baN +asc +asc +baN +asc +asc agw agw aoC @@ -40177,24 +41456,24 @@ afY agj agw agw +aXS agw agw agw agw agw agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -aoC +asc +asO +aSx +aXd +aYX +aSx +aXW +asc +asc +aXS +aXV apf apN aqs @@ -40315,32 +41594,32 @@ aen aeK afh afG -afY -agj -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw +agk +agl +agl +agl +agl +aob +aob +aob +aob +aob +aob +asc +asP +aWV +aXe +aXm +aXO +aSx +aYc +baN +aXS aoC apf apN aqs -arh +aAe arQ asK atp @@ -40457,32 +41736,32 @@ adY adY afi afG -afY -agj -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw +agk +agl +anz +apV +aXJ +aob +apT +aXU +atu +aOw +aXU +asd +asQ +aWW +aXf +aXn +aXP +aSx +aYf +baN +aXS aoC apf apN aqs -arh +aAe arR asL atq @@ -40599,37 +41878,37 @@ aac adY afj afG -afY -agj -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw +agk +agl +apg +apW +aXL +aob +aXl +aXU +aYz +apS +avq +asf +aYA +aWX +aXg +aXx +aXQ +aXX +aYh +baN +aXS aoC apf apN aqs -arh +aAe arS asK atp atZ -auK +arS avf avK avK @@ -40638,7 +41917,7 @@ avK avK azD aAy -aAW +aOY aAX aAX aAX @@ -40719,7 +41998,7 @@ aab aab aac aaf -aao +acT aao aao aQz @@ -40728,9 +42007,9 @@ aRp aap aap aSr -aSF +aPr aSM -aSU +alt aSr acQ add @@ -40741,28 +42020,28 @@ aac adY afk afG -afY -agj -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -aoC +agk +agl +apl +aXw +aob +aob +aXo +aXY +aqy +aob +aTK +asc +avj +aWY +aXh +aXz +aWY +aXZ +aON +baN +aXS +aXV apf apN aqA @@ -40775,7 +42054,7 @@ arS avf avP awF -axv +aDx avP ayM azE @@ -40883,27 +42162,27 @@ aac adY aff afH -afY -agj -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw +aiW +anx +apU +arp +apQ +apS +aXG +aYa +aYs +aob +aXN +asc +aYN +aWZ +aXj +aXM +aSx +aYb +asc +asc +aXS aoC apf apN @@ -40921,7 +42200,7 @@ axw ayg ayN azF -aAA +aFw azl aBM aCi @@ -41025,28 +42304,28 @@ aac adY afl afG -afY -agj -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -aoC +apB +anK +anK +anK +anK +anK +anK +aYn +aYL +aob +aXN +asc +asc +asc +asc +asc +asc +asc +asc +aXS +aXS +aXV apf apN aqB @@ -41064,7 +42343,7 @@ ayh ayO azG aAB -aBg +aFa aBN aCj aBO @@ -41151,7 +42430,7 @@ aQc aQB aQS aRr -aRE +aPp aSa aSs aSI @@ -41167,26 +42446,26 @@ aad adY afm afG -afY -agj -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw +agk +anK +aoa +apm +aqH +aqH +anK +aOo +aYJ +aob +aZe +aZh +baH +aZg +aXS +aXS +aXS +aXS +aXS +aXS agw aoC apf @@ -41309,31 +42588,31 @@ aeo adY afn afG -afY -agj -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw +agk +anK +aoc +apn +aqI +aXH +asb +aYr +aYT +aob +aXv +aXw +baI +aZg +aXS agw agw agw +aXS +aXS agw aoC apf apN -aqD +aTq adY adY adY @@ -41451,26 +42730,26 @@ aaG adY afo afG -afY -agj -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw +agk +anK +aoe +apo +aqK +amA +anK +aob +aob +aob +aZg +aZf +baI +aZg +baP agw agw agw +adY +aXS agw aoC apf @@ -41491,9 +42770,9 @@ arl azI azI azI -aBP +aRR aCm -aCI +aCK aDi arl aDN @@ -41582,7 +42861,7 @@ aSc aSt aSK aTl -aSZ +aPs aTc aTd aTf @@ -41593,31 +42872,31 @@ aaG adY acU afG -afY -agj +agk +anK +aof +apR +arm +arr +anK +anv +aXs +aVu +aYg +aXt +baI +baO +aXS agw agw agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -aoC +adY +aXS +aXS +aXV apf apN -aqq +aqD adY arW arl @@ -41652,7 +42931,7 @@ arZ aGK avp aHr -aHO +aHV aIp aIO aJq @@ -41713,7 +42992,7 @@ aab aab aab aag -aas +aav aPD aQe aQE @@ -41735,25 +43014,25 @@ aep adY afp afG -afY -agj -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw +agk +anK +aph +apY +apY +aOL +anK +apX +aXE +aZl +aXr +apW +baI +baL +aXS +aXS +aXS +aXS +adY agw agw aoC @@ -41859,12 +43138,12 @@ aaA aPE aQf aQF -aQW +aPt aRu aRJ aao aSu -aSL +ahO aST aTn aaf @@ -41875,27 +43154,27 @@ acy adf aeq adY -afq +alG afI -afY -agj -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw -agw +agk +anK +apk +apZ +arn +asa +anK +aXp +baU +aXF +aZd +aZQ +baJ +baO agw agw agw agw +adY agw agw aoC @@ -41908,7 +43187,7 @@ arY arY arY auN -avi +aAA avU awK axA @@ -42019,25 +43298,25 @@ aer aeL afr afJ -afY agk -agx -agx -agx -agx -agx -agx -agx -agx -agx -agx -agx -agx -agx -agx -agx -agx -agx +anK +anK +anK +anK +anK +anK +aXr +aXr +aXr +aXr +aZg +baK +aZg +adY +adY +adY +adY +adY agx agx aoD @@ -42147,7 +43426,7 @@ aQY aRu aRL aSd -aSb +aPq aad aaY abs @@ -42162,29 +43441,29 @@ aeM afs afK afZ -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -agl -apg -anv +aqJ +aqJ +aqJ +aqJ +aqJ +aqJ +aqJ +aqJ +aqJ +aqJ +aSZ +bbl +baM +aXA +aXA +aXA +aXA +aXA +aXB +aXB +aXB +aXC +aXD aqE adY aac @@ -42281,7 +43560,7 @@ aab aab aab aag -aaE +aay aPH aQi aQI @@ -42314,8 +43593,8 @@ agm agm agm agm -aiW -ajo +aZR +baW ajo ajo ajR @@ -42446,11 +43725,11 @@ adY afu afM afM -afM +aqG agz agH agR -ahi +anc afM ahN aib @@ -42462,14 +43741,14 @@ aZN aZP ajC ajI -ajK +asB afG anu afM afM aiE apP -aqG +aSL adY aZx aZz @@ -42569,7 +43848,7 @@ aaF aPI aQj aQJ -aRa +aPn aah aRN aao @@ -42736,8 +44015,8 @@ adu agT adu ahv -ahO -ahO +aau +aau ahR adu ajp @@ -42884,7 +44163,7 @@ ain adu ajp aYd -aYi +aqT aYu aYH aYS @@ -43036,7 +44315,7 @@ aro aXq aZX aYd -bab +avi arZ aFR avp @@ -43133,7 +44412,7 @@ aab aab aab aah -aaX +aaE aPM aQn aQN @@ -43161,14 +44440,14 @@ adu adu agV adu -ahy +aSF aju aju ais adu ajb aYd -aXy +aQW aYv aXy aro @@ -43176,7 +44455,7 @@ anh aro aXy aZK -aXy +aRa aYd bac arZ @@ -43417,7 +44696,7 @@ aab aab aab aah -acT +aaI aPN aQp aQO @@ -43565,7 +44844,7 @@ aQq aQP aRg aah -aRR +aPo aSi aSy aad @@ -43744,7 +45023,7 @@ aZi aZr aZG aro -bbd +aro aYd avp avp @@ -44164,7 +45443,7 @@ ait aiG aih aYB -aYI +aPT aZW aZp api @@ -44412,14 +45691,14 @@ aab aab aac aKv -aPT +aaJ aQs aQs aRk aRB aRU aSo -aSB +aPa aad aad aad @@ -44446,7 +45725,7 @@ aiL aiL aiL aoE -ajU +aqY anf aYK amL @@ -44701,7 +45980,7 @@ aQt aQR aRl aRC -aRV +ahi aSp aSE aKv @@ -44730,8 +46009,8 @@ ahP ahP ahP ajT -aYo -aYD +arq +aPu aYY aYZ baZ @@ -45022,7 +46301,7 @@ aZn aZv ajT aiN -aro +aQu aYd apq apq @@ -45443,7 +46722,7 @@ aab aab ajM ajM -ajM +aUa ajM ajM ajM diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 4a462c9118..f705365fb9 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -1,20 +1,23 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( +"aaa" = ( /turf/unsimulated/wall/planetary/virgo3b, /area/tether/surfacebase/outside/outside3) -"ab" = ( +"aab" = ( /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"ac" = ( +"aac" = ( /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) -"ad" = ( -/obj/machinery/camera/network/outside{ +"aad" = ( +/obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"ae" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aae" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/machinery/light{ dir = 8; @@ -23,13 +26,13 @@ }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"af" = ( +"aaf" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/upperhall) -"ag" = ( +"aag" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/triage) -"ah" = ( +"aah" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -38,7 +41,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/triage) -"ai" = ( +"aai" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -47,7 +50,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/breakroom) -"aj" = ( +"aaj" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -67,21 +70,21 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"ak" = ( +"aak" = ( /obj/structure/bed/chair, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"al" = ( +"aal" = ( /obj/structure/bed/chair, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"am" = ( +"aam" = ( /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"an" = ( +"aan" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -98,7 +101,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/upperhall) -"ao" = ( +"aao" = ( /obj/structure/closet/secure_closet/paramedic, /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -108,26 +111,38 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ap" = ( +"aap" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/effect/floor_decal/borderfloorwhite{ - dir = 1 + dir = 4 }, /obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 }, -/obj/machinery/camera/network/medbay, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aq" = ( +"aaq" = ( /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"ar" = ( +"aar" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/open, /area/tether/surfacebase/medical/triage) -"as" = ( +"aas" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 }, @@ -145,10 +160,10 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"at" = ( +"aat" = ( /turf/simulated/open, /area/tether/surfacebase/medical/triage) -"au" = ( +"aau" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -158,7 +173,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/breakroom) -"av" = ( +"aav" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -167,44 +182,44 @@ }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"aw" = ( +"aaw" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"ax" = ( +"aax" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"ay" = ( +"aay" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"az" = ( +"aaz" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/patient_a) -"aA" = ( +"aaA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aB" = ( +"aaB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aC" = ( +"aaC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aD" = ( +"aaD" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -213,10 +228,10 @@ }, /turf/simulated/open, /area/tether/surfacebase/medical/triage) -"aE" = ( +"aaE" = ( /turf/simulated/wall, /area/vacant/vacant_site2) -"aF" = ( +"aaF" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -225,7 +240,7 @@ }, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"aG" = ( +"aaG" = ( /obj/item/device/radio/intercom/department/security{ dir = 4; icon_state = "secintercom"; @@ -240,7 +255,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"aH" = ( +"aaH" = ( /obj/machinery/disposal, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -251,12 +266,12 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aI" = ( +"aaI" = ( /obj/effect/floor_decal/steeldecal/steel_decals10, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aJ" = ( +"aaJ" = ( /obj/machinery/sleeper{ dir = 8 }, @@ -265,14 +280,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aK" = ( +"aaK" = ( /obj/machinery/sleep_console, /obj/effect/floor_decal/corner_steel_grid{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aL" = ( +"aaL" = ( /obj/machinery/light{ dir = 1 }, @@ -284,7 +299,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aM" = ( +"aaM" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -294,18 +309,18 @@ }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"aN" = ( +"aaN" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"aO" = ( +"aaO" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/donut, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"aP" = ( +"aaP" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -314,7 +329,7 @@ }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"aQ" = ( +"aaQ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -327,7 +342,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aR" = ( +"aaR" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 }, @@ -337,20 +352,20 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aS" = ( +"aaS" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aT" = ( +"aaT" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aU" = ( +"aaU" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -368,7 +383,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aV" = ( +"aaV" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -384,7 +399,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"aW" = ( +"aaW" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 4 @@ -400,10 +415,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"aX" = ( +"aaX" = ( /turf/simulated/open, /area/tether/surfacebase/security/upperhall) -"aY" = ( +"aaY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -412,14 +427,14 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"aZ" = ( +"aaZ" = ( /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ba" = ( +"aba" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"bb" = ( +"abb" = ( /obj/machinery/bodyscanner{ dir = 8 }, @@ -428,14 +443,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"bc" = ( +"abc" = ( /obj/machinery/body_scanconsole, /obj/effect/floor_decal/corner_steel_grid{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"bd" = ( +"abd" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -443,10 +458,10 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_a) -"be" = ( +"abe" = ( /turf/simulated/wall, /area/tether/surfacebase/reading_room) -"bf" = ( +"abf" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -455,7 +470,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/reading_room) -"bg" = ( +"abg" = ( /obj/machinery/door/blast/shutters{ id = "hangarsurface"; name = "Engine Repair Bay" @@ -463,10 +478,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"bh" = ( -/turf/simulated/wall/r_wall, -/area/bridge/secondary) -"bi" = ( +"abh" = ( +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/open, +/area/tether/surfacebase/medical/triage) +"abi" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -484,7 +503,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bj" = ( +"abj" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 @@ -497,7 +516,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bk" = ( +"abk" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -509,7 +528,7 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"bl" = ( +"abl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -518,7 +537,7 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"bm" = ( +"abm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -535,14 +554,14 @@ /obj/random/cigarettes, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"bn" = ( +"abn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bo" = ( +"abo" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -552,7 +571,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bp" = ( +"abp" = ( /obj/structure/bed/chair, /obj/machinery/alarm{ pixel_y = 22 @@ -572,12 +591,12 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"bq" = ( +"abq" = ( /obj/structure/disposalpipe/segment, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"br" = ( +"abr" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/borderfloorwhite{ @@ -606,7 +625,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"bs" = ( +"abs" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -630,26 +649,56 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"bt" = ( +"abt" = ( /obj/structure/table/glass, /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"bu" = ( +"abu" = ( /obj/structure/table/glass, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"bv" = ( -/turf/simulated/open, -/area/bridge/secondary) -"bw" = ( -/obj/structure/flora/pottedplant, -/obj/effect/floor_decal/corner/blue/full{ +"abv" = ( +/obj/structure/table/glass, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "surfmed"; + name = "Medical Shutters"; + pixel_x = 0; + pixel_y = -24; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"abw" = ( +/obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"bx" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"abx" = ( /obj/structure/table, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -661,14 +710,26 @@ /obj/random/cigarettes, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"by" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 +"aby" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/computer/security, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"bz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"abz" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/zpipe/down/supply, @@ -679,17 +740,24 @@ icon_state = "32-2" }, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"bA" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() +/area/tether/surfacebase/surface_three_hall) +"abA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/computer/communications, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"bB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"abB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/railing, @@ -700,29 +768,32 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"bC" = ( -/obj/machinery/status_display{ - pixel_y = 32 +/area/tether/surfacebase/surface_three_hall) +"abC" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/borderfloor{ + dir = 10 }, -/obj/machinery/computer/supplycomp, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"bD" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"abD" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"bE" = ( +"abE" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"bF" = ( +"abF" = ( /obj/machinery/status_display{ pixel_x = 32; pixel_y = 0 @@ -735,7 +806,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bG" = ( +"abG" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -746,7 +817,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bH" = ( +"abH" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 4 @@ -760,11 +831,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bI" = ( +"abI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bJ" = ( +"abJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -778,7 +849,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bK" = ( +"abK" = ( /obj/machinery/light{ dir = 1 }, @@ -786,14 +857,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"bL" = ( +"abL" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/taser, /obj/item/weapon/gun/energy/taser, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"bM" = ( +"abM" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/stunrevolver, /obj/machinery/firealarm{ @@ -806,7 +877,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"bN" = ( +"abN" = ( /obj/structure/closet/bombclosetsecurity, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light{ @@ -814,12 +885,12 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"bO" = ( +"abO" = ( /obj/effect/decal/cleanable/dirt, /obj/random/trash, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bP" = ( +"abP" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -829,19 +900,19 @@ /obj/random/junk, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"bQ" = ( +"abQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"bR" = ( +"abR" = ( /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bS" = ( +"abS" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bT" = ( +"abT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /obj/random/maintenance/medical, @@ -851,7 +922,7 @@ /obj/random/toy, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bU" = ( +"abU" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -878,7 +949,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bV" = ( +"abV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 2; @@ -887,11 +958,11 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bW" = ( +"abW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bX" = ( +"abX" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -910,7 +981,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bY" = ( +"abY" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -920,7 +991,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bZ" = ( +"abZ" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 @@ -938,7 +1009,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"ca" = ( +"aca" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -949,7 +1020,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_a) -"cb" = ( +"acb" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -964,7 +1035,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cc" = ( +"acc" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -976,7 +1047,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cd" = ( +"acd" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 }, @@ -988,7 +1059,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ce" = ( +"ace" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -1006,7 +1077,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cf" = ( +"acf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -1028,10 +1099,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"cg" = ( +"acg" = ( /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"ch" = ( +"ach" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -1042,46 +1113,88 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"ci" = ( +"aci" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"cj" = ( +"acj" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_hallway) -"ck" = ( -/obj/structure/flora/pottedplant, -/obj/effect/floor_decal/corner/blue/full{ +"ack" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cl" = ( -/obj/machinery/computer/station_alert/all{ - icon_state = "computer"; +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cm" = ( -/obj/machinery/camera/network/research, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"cn" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"co" = ( +/area/tether/surfacebase/surface_three_hall) +"acl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"acm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"acn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aco" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 @@ -1102,7 +1215,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cp" = ( +"acp" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -1124,10 +1237,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cq" = ( +"acq" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cr" = ( +"acr" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -1147,7 +1260,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cs" = ( +"acs" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -1156,21 +1269,21 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"ct" = ( +"act" = ( /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"cu" = ( +"acu" = ( /obj/structure/table/rack, /obj/random/tetheraid, /obj/random/maintenance/medical, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"cv" = ( +"acv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"cw" = ( +"acw" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -1180,19 +1293,19 @@ }, /turf/simulated/open, /area/vacant/vacant_site2) -"cx" = ( +"acx" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30; pixel_y = 0 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"cy" = ( +"acy" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_mob/vore/aggressive/mimic, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"cz" = ( +"acz" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -1203,7 +1316,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cA" = ( +"acA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -1214,7 +1327,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cB" = ( +"acB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -1228,7 +1341,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cC" = ( +"acC" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -1246,7 +1359,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cD" = ( +"acD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1267,7 +1380,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cE" = ( +"acE" = ( /obj/machinery/door/airlock/glass_security{ name = "Break Room"; req_access = list(1) @@ -1289,7 +1402,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cF" = ( +"acF" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/taser, /obj/item/weapon/gun/energy/taser, @@ -1306,7 +1419,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"cG" = ( +"acG" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -1314,7 +1427,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"cH" = ( +"acH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1337,7 +1450,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cI" = ( +"acI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1352,7 +1465,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cJ" = ( +"acJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1369,7 +1482,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cK" = ( +"acK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1386,7 +1499,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cL" = ( +"acL" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -1407,7 +1520,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cM" = ( +"acM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/cleanable/dirt, @@ -1418,20 +1531,20 @@ }, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"cN" = ( +"acN" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cO" = ( +"acO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cP" = ( +"acP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -1444,14 +1557,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cQ" = ( +"acQ" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cR" = ( +"acR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -1470,60 +1583,86 @@ /obj/machinery/light_switch{ dir = 1; on = 0; - pixel_x = -14; + pixel_x = -10; pixel_y = -24 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"cS" = ( +"acS" = ( /obj/machinery/door/airlock{ name = "Room 1" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tether/surfacebase/reading_room) -"cT" = ( +"acT" = ( /obj/machinery/door/airlock{ name = "Room 2" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tether/surfacebase/reading_room) -"cU" = ( +"acU" = ( /obj/machinery/door/airlock{ name = "Room 3" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tether/surfacebase/reading_room) -"cV" = ( -/obj/structure/bed/chair/office/dark{ +"acV" = ( +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cW" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/power_monitor{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atm{ + pixel_y = 31 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"acW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"acX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"acY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"acZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -1534,8 +1673,8 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"da" = ( +/area/tether/surfacebase/surface_three_hall) +"ada" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -1543,7 +1682,7 @@ }, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"db" = ( +"adb" = ( /obj/machinery/light_switch{ pixel_x = 25 }, @@ -1554,7 +1693,7 @@ }, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"dc" = ( +"adc" = ( /obj/machinery/vending/medical, /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -1564,7 +1703,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dd" = ( +"add" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -1582,7 +1721,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"de" = ( +"ade" = ( /obj/machinery/door/airlock/security{ name = "Equipment Storage" }, @@ -1600,7 +1739,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/armory) -"df" = ( +"adf" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -1608,29 +1747,43 @@ /obj/item/device/retail_scanner/security, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dg" = ( +"adg" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/camera/network/security, -/turf/simulated/open, -/area/tether/surfacebase/security/upperhall) -"dh" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"adh" = ( /obj/machinery/vending/cola, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"di" = ( +"adi" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/light, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"dj" = ( +"adj" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dk" = ( +"adk" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -1641,12 +1794,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dl" = ( +"adl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dm" = ( +"adm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -1666,7 +1819,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dn" = ( +"adn" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -1691,7 +1844,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"do" = ( +"ado" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -1706,7 +1859,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dp" = ( +"adp" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -1715,7 +1868,7 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"dq" = ( +"adq" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -1731,7 +1884,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"dr" = ( +"adr" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/wardrobe/red, /obj/item/device/radio/intercom{ @@ -1740,13 +1893,13 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"ds" = ( +"ads" = ( /obj/structure/closet, /obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"dt" = ( +"adt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -1757,7 +1910,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"du" = ( +"adu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -1776,7 +1929,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"dv" = ( +"adv" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -1797,7 +1950,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"dw" = ( +"adw" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 }, @@ -1806,32 +1959,20 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dx" = ( -/obj/machinery/camera/network/medbay{ +"adx" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/evidence, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/border{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"dy" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"ady" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -1844,24 +1985,19 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dz" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "surfmed"; - name = "Medical Shutters"; - pixel_x = -24; - pixel_y = 0; - req_access = list(5) +"adz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + id = "SurfMedbayFoyer"; + name = "Medbay Doors Control"; + pixel_x = 20; + pixel_y = -26 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dA" = ( +"adA" = ( /obj/structure/table/glass, /obj/item/weapon/storage/firstaid/regular, /obj/effect/floor_decal/borderfloorwhite{ @@ -1879,7 +2015,7 @@ /obj/random/tetheraid, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dB" = ( +"adB" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -1888,7 +2024,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"dC" = ( +"adC" = ( /obj/structure/table/glass, /obj/item/weapon/book/codex, /obj/machinery/recharger, @@ -1897,13 +2033,13 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"dD" = ( +"adD" = ( /obj/machinery/light_switch{ pixel_y = 25 }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"dE" = ( +"adE" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -1916,7 +2052,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"dF" = ( +"adF" = ( /obj/structure/table/glass, /obj/machinery/photocopier/faxmachine{ department = "Reading Room" @@ -1925,53 +2061,59 @@ /obj/machinery/status_display{ pixel_y = 30 }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"dG" = ( +"adG" = ( /obj/structure/catwalk, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"dH" = ( +"adH" = ( /obj/effect/floor_decal/corner_oldtile/green/full{ dir = 8 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"dI" = ( +"adI" = ( /obj/effect/floor_decal/corner_oldtile/green{ dir = 5 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"dJ" = ( +"adJ" = ( /obj/effect/floor_decal/corner_oldtile/green/full{ dir = 1 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"dK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"adK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 1; + d1 = 4; d2 = 8; - icon_state = "1-8" + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"dL" = ( +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"adL" = ( /obj/structure/ladder, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"dM" = ( +"adM" = ( /obj/structure/table/glass, /obj/item/weapon/reagent_containers/spray/cleaner{ pixel_x = -1; @@ -1990,23 +2132,23 @@ /obj/item/device/defib_kit/loaded, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dN" = ( +"adN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dO" = ( +"adO" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/armory) -"dP" = ( +"adP" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/common) -"dQ" = ( +"adQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/tether/surfacebase/security/upperhall) -"dR" = ( +"adR" = ( /obj/machinery/door/airlock/glass_security{ id_tag = "SurfaceBrigAccess"; layer = 2.8; @@ -2018,7 +2160,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dS" = ( +"adS" = ( /obj/machinery/door/airlock/glass_security{ id_tag = "SurfaceBrigAccess"; layer = 2.8; @@ -2034,38 +2176,38 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dT" = ( +"adT" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/breakroom) -"dU" = ( +"adU" = ( /obj/structure/table/reinforced, /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dV" = ( +"adV" = ( /obj/item/weapon/tool/screwdriver, /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"dW" = ( +"adW" = ( /turf/simulated/wall, /area/tether/surfacebase/security/processing) -"dX" = ( +"adX" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/security, /obj/item/device/holowarrant, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dY" = ( +"adY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dZ" = ( +"adZ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -2077,10 +2219,8 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"ea" = ( +"aea" = ( /obj/structure/table/glass, -/obj/item/bodybag/cryobag, -/obj/item/bodybag/cryobag, /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -2091,7 +2231,6 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 8 }, -/obj/item/device/sleevemate, /obj/item/device/radio/intercom/department/medbay{ dir = 8; pixel_x = -24 @@ -2100,7 +2239,7 @@ /obj/item/weapon/tool/screwdriver, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"eb" = ( +"aeb" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -2108,15 +2247,36 @@ /obj/item/device/retail_scanner/security, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"ec" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals6, +"aec" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Medical Department"; + departmentType = 3; + name = "Medical RC"; + pixel_x = -30; + pixel_y = 0 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/device/sleevemate, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ed" = ( +"aed" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/patient_b) -"ee" = ( +"aee" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -2143,13 +2303,19 @@ dir = 8 }, /area/tether/surfacebase/medical/triage) -"ef" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 +"aef" = ( +/obj/machinery/papershredder, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/reading_room) -"eg" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/frontdesk) +"aeg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -2163,7 +2329,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eh" = ( +"aeh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2177,7 +2343,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"ei" = ( +"aei" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2191,7 +2357,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"ej" = ( +"aej" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, @@ -2203,7 +2369,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"ek" = ( +"aek" = ( /obj/structure/table/glass, /obj/item/weapon/pen, /obj/machinery/alarm{ @@ -2219,34 +2385,37 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"el" = ( +"ael" = ( /obj/effect/floor_decal/corner_oldtile/green{ dir = 9 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"em" = ( +"aem" = ( /obj/structure/railing, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"en" = ( +"aen" = ( /obj/effect/floor_decal/corner_oldtile/green{ dir = 6 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"eo" = ( -/obj/structure/bed/chair/office/dark{ +"aeo" = ( +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"ep" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aep" = ( /turf/simulated/wall/r_wall, /area/vacant/vacant_site2) -"eq" = ( +"aeq" = ( /obj/structure/table/steel, /obj/item/weapon/folder/red{ pixel_x = 2; @@ -2266,7 +2435,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"er" = ( +"aer" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -2282,7 +2451,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"es" = ( +"aes" = ( /obj/structure/table/steel, /obj/item/device/flashlight/lamp, /obj/effect/floor_decal/borderfloor{ @@ -2298,7 +2467,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"et" = ( +"aet" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -2315,7 +2484,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"eu" = ( +"aeu" = ( /obj/structure/cable/green{ icon_state = "0-2" }, @@ -2335,7 +2504,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"ev" = ( +"aev" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -2357,7 +2526,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"ew" = ( +"aew" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, @@ -2369,7 +2538,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"ex" = ( +"aex" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2384,12 +2553,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"ey" = ( +"aey" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"ez" = ( +"aez" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -2398,40 +2567,41 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"eA" = ( -/obj/machinery/vending/snack, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/obj/machinery/camera/network/security{ +"aeA" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"eB" = ( -/obj/structure/table/steel, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aeB" = ( /obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 + dir = 4 }, /obj/effect/floor_decal/corner/red/border{ - dir = 1 + dir = 4 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"eC" = ( +/area/tether/surfacebase/security/common) +"aeC" = ( /obj/machinery/light_switch{ dir = 8; pixel_x = 28 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"eD" = ( +"aeD" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -2440,7 +2610,7 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"eE" = ( +"aeE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -2455,7 +2625,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"eF" = ( +"aeF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2467,10 +2637,10 @@ /obj/random/junk, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"eG" = ( +"aeG" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/lobby) -"eH" = ( +"aeH" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -2486,14 +2656,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"eI" = ( +"aeI" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/security, /obj/item/device/holowarrant, /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"eJ" = ( +"aeJ" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -2513,7 +2683,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"eK" = ( +"aeK" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/airlock{ id = "SurfaceFoyer"; @@ -2536,7 +2706,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"eL" = ( +"aeL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -2552,7 +2722,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"eM" = ( +"aeM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2564,7 +2734,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"eN" = ( +"aeN" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -2591,14 +2761,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"eO" = ( +"aeO" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eP" = ( +"aeP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -2612,20 +2782,20 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eQ" = ( +"aeQ" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eR" = ( +"aeR" = ( /obj/structure/bookcase, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eS" = ( +"aeS" = ( /obj/structure/bookcase, /obj/machinery/light/small, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eT" = ( +"aeT" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /obj/item/device/radio/intercom{ @@ -2634,7 +2804,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eU" = ( +"aeU" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2655,8 +2825,8 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"eV" = ( +/area/tether/surfacebase/surface_three_hall) +"aeV" = ( /obj/structure/table/glass, /obj/item/device/flashlight/lamp/green, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -2664,7 +2834,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eW" = ( +"aeW" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -2673,7 +2843,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/reading_room) -"eX" = ( +"aeX" = ( /obj/structure/railing{ dir = 4 }, @@ -2682,7 +2852,7 @@ }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"eY" = ( +"aeY" = ( /obj/structure/railing{ dir = 8 }, @@ -2691,7 +2861,7 @@ }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"eZ" = ( +"aeZ" = ( /obj/effect/floor_decal/techfloor/corner, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -2712,7 +2882,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"fa" = ( +"afa" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access"; req_access = list(5) @@ -2731,7 +2901,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/tether/surfacebase/medical/triage) -"fb" = ( +"afb" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -2756,10 +2926,10 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"fc" = ( +"afc" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/processing) -"fd" = ( +"afd" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -2781,8 +2951,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"fe" = ( +/area/tether/surfacebase/surface_three_hall) +"afe" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -2790,8 +2960,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ff" = ( +/area/tether/surfacebase/surface_three_hall) +"aff" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -2807,7 +2977,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"fg" = ( +"afg" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -2817,21 +2987,21 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"fh" = ( +/area/tether/surfacebase/surface_three_hall) +"afh" = ( /turf/simulated/wall/r_wall, /area/rnd/research_storage) -"fi" = ( +"afi" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) -"fj" = ( +"afj" = ( /turf/simulated/wall, /area/crew_quarters/recreation_area_restroom) -"fk" = ( +"afk" = ( /obj/structure/cable{ icon_state = "32-4" }, @@ -2845,22 +3015,22 @@ dir = 4 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"fl" = ( +/area/tether/surfacebase/surface_three_hall) +"afl" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 30; pixel_y = -4 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"fm" = ( +"afm" = ( /obj/random/maintenance/security, /obj/random/maintenance/security, /obj/random/maintenance/security, /mob/living/simple_mob/vore/aggressive/mimic, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"fn" = ( +"afn" = ( /obj/structure/table/steel, /obj/item/device/camera, /obj/effect/floor_decal/borderfloor{ @@ -2880,7 +3050,7 @@ /obj/item/device/retail_scanner/security, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fo" = ( +"afo" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -2889,14 +3059,14 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fp" = ( +"afp" = ( /obj/structure/table/steel, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fq" = ( +"afq" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -2905,7 +3075,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fr" = ( +"afr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -2916,7 +3086,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fs" = ( +"afs" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2936,7 +3106,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"ft" = ( +"aft" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2955,7 +3125,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"fu" = ( +"afu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2969,7 +3139,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"fv" = ( +"afv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2983,7 +3153,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"fw" = ( +"afw" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "2-8" @@ -2995,7 +3165,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"fx" = ( +"afx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -3017,7 +3187,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"fy" = ( +"afy" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -3025,7 +3195,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_b) -"fz" = ( +"afz" = ( /obj/structure/bed/chair/office/light, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/landmark/start{ @@ -3033,7 +3203,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"fA" = ( +"afA" = ( /obj/structure/bed/chair, /obj/machinery/alarm{ pixel_y = 22 @@ -3053,16 +3223,16 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"fB" = ( +"afB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"fC" = ( +"afC" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"fD" = ( +"afD" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/borderfloorwhite{ @@ -3091,7 +3261,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"fE" = ( +"afE" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -3115,19 +3285,33 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"fF" = ( -/obj/machinery/camera/network/outside{ - dir = 8 +"afF" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"fG" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"afG" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/tether/surfacebase/reading_room) -"fH" = ( +"afH" = ( /obj/machinery/door/airlock{ name = "Reading Room" }, @@ -3142,14 +3326,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel_grid, /area/tether/surfacebase/reading_room) -"fI" = ( +"afI" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/reading_room) -"fJ" = ( +"afJ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -3159,10 +3343,10 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/reading_room) -"fK" = ( +"afK" = ( /turf/simulated/wall, /area/rnd/staircase/thirdfloor) -"fL" = ( +"afL" = ( /obj/machinery/atmospherics/pipe/zpipe/up, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, /obj/machinery/atmospherics/pipe/zpipe/up/supply, @@ -3182,10 +3366,10 @@ }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"fM" = ( +"afM" = ( /turf/simulated/wall, /area/rnd/research_storage) -"fN" = ( +"afN" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -3193,35 +3377,40 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"fO" = ( +/area/tether/surfacebase/surface_three_hall) +"afO" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"fP" = ( +"afP" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"fQ" = ( +"afQ" = ( /obj/machinery/door/airlock{ name = "Unit 3" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"fR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/secure_closet/security, -/obj/item/device/holowarrant, -/obj/machinery/camera/network/security{ +"afR" = ( +/obj/effect/floor_decal/borderfloor{ dir = 8 }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "Drunk Tank"; + pixel_x = -28; + pixel_y = 0 + }, /turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/armory) -"fS" = ( +/area/tether/surfacebase/security/common) +"afS" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -3233,7 +3422,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fT" = ( +"afT" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -3254,7 +3443,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fU" = ( +"afU" = ( /obj/machinery/door/airlock/security{ name = "Security Processing"; req_access = list(1) @@ -3273,13 +3462,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel_grid, /area/tether/surfacebase/security/processing) -"fV" = ( +"afV" = ( /obj/structure/table/reinforced, /obj/item/device/radio/headset/headset_sec, /obj/item/device/radio/headset/headset_sec, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"fW" = ( +"afW" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -3290,7 +3479,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"fX" = ( +"afX" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3304,7 +3493,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"fY" = ( +"afY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -3313,7 +3502,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"fZ" = ( +"afZ" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -3325,7 +3514,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"ga" = ( +"aga" = ( /obj/structure/table/glass, /obj/item/weapon/backup_implanter{ pixel_y = 8 @@ -3349,7 +3538,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"gb" = ( +"agb" = ( /obj/structure/table/reinforced, /obj/item/weapon/cell/device/weapon, /obj/item/weapon/cell/device/weapon, @@ -3361,13 +3550,13 @@ /obj/item/clothing/accessory/badge/holo/cord, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"gc" = ( +"agc" = ( /obj/structure/table/reinforced, /obj/item/device/radio/headset/headset_sec/alt, /obj/item/device/radio/headset/headset_sec/alt, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"gd" = ( +"agd" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -3388,10 +3577,10 @@ /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"ge" = ( +"age" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"gf" = ( +"agf" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -3404,9 +3593,13 @@ /obj/effect/floor_decal/corner/red/bordercorner2{ dir = 8 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gg" = ( +"agg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3414,13 +3607,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gh" = ( +"agh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gi" = ( +"agi" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -3431,7 +3624,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_b) -"gj" = ( +"agj" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -3441,7 +3634,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gk" = ( +"agk" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -3455,7 +3648,7 @@ /obj/item/weapon/backup_implanter, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gl" = ( +"agl" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -3469,7 +3662,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gm" = ( +"agm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -3478,7 +3671,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gn" = ( +"agn" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -3490,7 +3683,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/triage) -"go" = ( +"ago" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -3499,7 +3692,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"gp" = ( +"agp" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -3516,8 +3709,8 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"gq" = ( +/area/tether/surfacebase/surface_three_hall) +"agq" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3533,8 +3726,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"gr" = ( +/area/tether/surfacebase/surface_three_hall) +"agr" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -3551,8 +3744,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"gs" = ( +/area/tether/surfacebase/surface_three_hall) +"ags" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -3560,15 +3753,15 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"gt" = ( +/area/tether/surfacebase/surface_three_hall) +"agt" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 }, /obj/effect/floor_decal/corner_oldtile/green/full, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"gu" = ( +"agu" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 }, @@ -3577,7 +3770,7 @@ }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"gv" = ( +"agv" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 }, @@ -3586,10 +3779,10 @@ }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"gw" = ( +"agw" = ( /turf/simulated/wall, -/area/tether/surfacebase/atrium_three) -"gx" = ( +/area/tether/surfacebase/surface_three_hall) +"agx" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ icon_state = "4-8" @@ -3599,8 +3792,8 @@ }, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"gy" = ( +/area/tether/surfacebase/surface_three_hall) +"agy" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible, @@ -3611,7 +3804,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/rnd/research_storage) -"gz" = ( +"agz" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -3632,8 +3825,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"gA" = ( +/area/tether/surfacebase/surface_three_hall) +"agA" = ( /obj/structure/extinguisher_cabinet{ dir = 4; icon_state = "extinguisher_closed"; @@ -3653,27 +3846,26 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"gB" = ( -/obj/machinery/camera/network/tether{ +/area/tether/surfacebase/surface_three_hall) +"agB" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"gC" = ( +/area/tether/surfacebase/security/lobby) +"agC" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/zpipe/down{ dir = 1 @@ -3691,7 +3883,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/rnd/research_storage) -"gD" = ( +"agD" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/steel, /obj/item/weapon/storage/bag/circuits/basic, @@ -3705,7 +3897,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/rnd/research_storage) -"gE" = ( +"agE" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -3724,18 +3916,18 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"gF" = ( +/area/tether/surfacebase/surface_three_hall) +"agF" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"gG" = ( +"agG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gH" = ( +"agH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3744,20 +3936,23 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gI" = ( -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior West"; - dir = 8 - }, +"agI" = ( /obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/common) -"gJ" = ( +/area/tether/surfacebase/surface_three_hall) +"agJ" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -3774,7 +3969,7 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"gK" = ( +"agK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3789,7 +3984,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"gL" = ( +"agL" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -3804,7 +3999,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"gM" = ( +"agM" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, @@ -3813,29 +4008,19 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"gN" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/syringes, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 +"agN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Medical Department"; - departmentType = 3; - name = "Medical RC"; - pixel_x = -30; - pixel_y = 0 +/obj/machinery/camera/network/tether{ + dir = 9 }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"gO" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"agO" = ( /obj/structure/table/steel, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -3844,7 +4029,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"gP" = ( +"agP" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -3859,7 +4044,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"gQ" = ( +"agQ" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -3869,12 +4054,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"gR" = ( +"agR" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"gS" = ( +"agS" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -3884,7 +4069,7 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"gT" = ( +"agT" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -3900,21 +4085,21 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gU" = ( +"agU" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/machinery/light, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gV" = ( +"agV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gW" = ( +"agW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3928,17 +4113,17 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gX" = ( +"agX" = ( /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gY" = ( +"agY" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; dir = 2 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gZ" = ( +"agZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -3957,7 +4142,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ha" = ( +"aha" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -3971,8 +4156,8 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hb" = ( +/area/tether/surfacebase/surface_three_hall) +"ahb" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3982,8 +4167,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hc" = ( +/area/tether/surfacebase/surface_three_hall) +"ahc" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -3997,14 +4182,14 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hd" = ( +/area/tether/surfacebase/surface_three_hall) +"ahd" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_three) -"he" = ( +/area/tether/surfacebase/surface_three_hall) +"ahe" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, @@ -4019,21 +4204,21 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hf" = ( +/area/tether/surfacebase/surface_three_hall) +"ahf" = ( /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"hg" = ( +"ahg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/structure/railing, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/rnd/research_storage) -"hh" = ( +"ahh" = ( /turf/simulated/wall, /area/rnd/workshop) -"hi" = ( +"ahi" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 4; @@ -4054,7 +4239,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"hj" = ( +"ahj" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -4063,7 +4248,7 @@ }, /turf/simulated/floor/plating, /area/rnd/workshop) -"hk" = ( +"ahk" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/steel, /obj/random/tech_supply, @@ -4078,7 +4263,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/rnd/research_storage) -"hl" = ( +"ahl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -4090,8 +4275,8 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hm" = ( +/area/tether/surfacebase/surface_three_hall) +"ahm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4100,7 +4285,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/rnd/research_storage) -"hn" = ( +"ahn" = ( /obj/machinery/door/airlock/maintenance/rnd{ name = "Elavator Maintenance Access" }, @@ -4111,7 +4296,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/rnd/research_storage) -"ho" = ( +"aho" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 8; @@ -4119,7 +4304,7 @@ }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"hp" = ( +"ahp" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -4128,23 +4313,22 @@ }, /turf/simulated/floor/plating, /area/rnd/workshop) -"hq" = ( -/obj/machinery/light{ - dir = 4 +"ahq" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"hr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"ahr" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/techfloor{ dir = 9 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"hs" = ( +"ahs" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4162,21 +4346,13 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ht" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Secondary Bridge"; - departmentType = 5; - name = "Secondary Bridge RC"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/book/codex, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"hu" = ( +/area/tether/surfacebase/surface_three_hall) +"aht" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ahu" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -4186,7 +4362,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"hv" = ( +"ahv" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -4199,7 +4375,7 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"hw" = ( +"ahw" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -4218,10 +4394,10 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/processing) -"hx" = ( +"ahx" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/frontdesk) -"hy" = ( +"ahy" = ( /obj/machinery/door/airlock/glass_security{ name = "Front Desk"; req_access = list(1) @@ -4232,7 +4408,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"hz" = ( +"ahz" = ( /obj/structure/table/steel, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -4252,7 +4428,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"hA" = ( +"ahA" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -4280,23 +4456,28 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"hB" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/evidence, +"ahB" = ( /obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/red/border{ dir = 8 }, -/obj/machinery/camera/network/security{ - dir = 4 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"hC" = ( +/area/tether/surfacebase/surface_three_hall) +"ahC" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -4308,7 +4489,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"hD" = ( +"ahD" = ( /obj/structure/closet/crate, /obj/random/maintenance/medical, /obj/random/maintenance/medical, @@ -4325,7 +4506,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"hE" = ( +"ahE" = ( /obj/machinery/light/small{ dir = 4; pixel_y = 0 @@ -4339,7 +4520,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"hF" = ( +"ahF" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -4351,7 +4532,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"hG" = ( +"ahG" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -4370,7 +4551,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"hH" = ( +"ahH" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -4386,7 +4567,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"hI" = ( +"ahI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/hologram/holopad, @@ -4396,7 +4577,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"hJ" = ( +"ahJ" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -4417,7 +4598,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"hK" = ( +"ahK" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -4425,7 +4606,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"hL" = ( +"ahL" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -4439,18 +4620,18 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"hM" = ( +"ahM" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"hN" = ( +"ahN" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"hO" = ( +"ahO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -4469,7 +4650,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"hP" = ( +"ahP" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -4488,8 +4669,8 @@ pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hQ" = ( +/area/tether/surfacebase/surface_three_hall) +"ahQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -4500,8 +4681,8 @@ /obj/structure/disposalpipe/segment, /obj/item/device/radio/beacon, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hR" = ( +/area/tether/surfacebase/surface_three_hall) +"ahR" = ( /obj/structure/extinguisher_cabinet{ dir = 8; icon_state = "extinguisher_closed"; @@ -4520,19 +4701,19 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hS" = ( +/area/tether/surfacebase/surface_three_hall) +"ahS" = ( /obj/structure/grille, /obj/structure/railing, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_three) -"hT" = ( +/area/tether/surfacebase/surface_three_hall) +"ahT" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"hU" = ( +"ahU" = ( /obj/machinery/media/jukebox, /obj/machinery/firealarm{ dir = 2; @@ -4545,7 +4726,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"hV" = ( +"ahV" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -4565,38 +4746,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"hW" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"hX" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/item/weapon/storage/box/donut, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/frontdesk) -"hY" = ( +"ahW" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -4612,8 +4762,38 @@ req_access = list() }, /turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"hZ" = ( +/area/tether/surfacebase/medical/lobby) +"ahX" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/item/weapon/storage/box/donut, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/frontdesk) +"ahY" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"ahZ" = ( /obj/structure/cable/green{ icon_state = "1-4" }, @@ -4622,7 +4802,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"ia" = ( +"aia" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -4638,30 +4818,18 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"ib" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/machinery/camera/network/medbay, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"ic" = ( +"aib" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"aic" = ( /obj/random/trash_pile, /obj/effect/floor_decal/techfloor{ dir = 10 }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"id" = ( +"aid" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/techfloor/corner{ @@ -4672,7 +4840,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"ie" = ( +"aie" = ( /obj/structure/closet, /obj/random/maintenance/medical, /obj/random/maintenance/clean, @@ -4680,7 +4848,7 @@ /obj/random/maintenance/medical, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"if" = ( +"aif" = ( /obj/effect/floor_decal/techfloor{ dir = 5 }, @@ -4690,7 +4858,7 @@ /obj/random/maintenance/medical, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"ig" = ( +"aig" = ( /obj/structure/bed/chair/office/light, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/landmark/start{ @@ -4706,7 +4874,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"ih" = ( +"aih" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -4725,12 +4893,12 @@ /obj/machinery/light_switch{ dir = 1; on = 0; - pixel_x = -14; + pixel_x = -10; pixel_y = -24 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"ii" = ( +"aii" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -4740,11 +4908,11 @@ dir = 4 }, /area/tether/surfacebase/medical/lobby) -"ij" = ( +"aij" = ( /obj/structure/sign/greencross, /turf/simulated/wall, /area/tether/surfacebase/medical/lobby) -"ik" = ( +"aik" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -4752,8 +4920,8 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"il" = ( +/area/tether/surfacebase/surface_three_hall) +"ail" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -4775,8 +4943,8 @@ pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"im" = ( +/area/tether/surfacebase/surface_three_hall) +"aim" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -4790,8 +4958,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"in" = ( +/area/tether/surfacebase/surface_three_hall) +"ain" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -4811,11 +4979,11 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"io" = ( +/area/tether/surfacebase/surface_three_hall) +"aio" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/panic_shelter) -"ip" = ( +"aip" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -4834,8 +5002,8 @@ dir = 8 }, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/atrium_three) -"iq" = ( +/area/tether/surfacebase/surface_three_hall) +"aiq" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -4844,8 +5012,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ir" = ( +/area/tether/surfacebase/surface_three_hall) +"air" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4857,8 +5025,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"is" = ( +/area/tether/surfacebase/surface_three_hall) +"ais" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4876,8 +5044,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"it" = ( +/area/tether/surfacebase/surface_three_hall) +"ait" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4892,8 +5060,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iu" = ( +/area/tether/surfacebase/surface_three_hall) +"aiu" = ( /obj/structure/table/steel, /obj/item/device/integrated_electronics/debugger{ pixel_x = -5; @@ -4909,14 +5077,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"iv" = ( +"aiv" = ( /obj/random/junk, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"iw" = ( +/area/tether/surfacebase/surface_three_hall) +"aiw" = ( /obj/structure/table/steel, /obj/item/device/integrated_circuit_printer, /obj/effect/floor_decal/techfloor{ @@ -4924,7 +5092,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"ix" = ( +"aix" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4936,8 +5104,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iy" = ( +/area/tether/surfacebase/surface_three_hall) +"aiy" = ( /obj/structure/table/steel, /obj/item/device/electronic_assembly/large/default, /obj/machinery/light{ @@ -4949,7 +5117,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"iz" = ( +"aiz" = ( /obj/structure/disposalpipe/segment, /obj/machinery/firealarm{ dir = 8; @@ -4960,7 +5128,7 @@ /obj/machinery/vending/assist, /turf/simulated/floor/plating, /area/rnd/research_storage) -"iA" = ( +"aiA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -4971,7 +5139,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/rnd/research_storage) -"iB" = ( +"aiB" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -4991,8 +5159,8 @@ req_access = list(5) }, /turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"iC" = ( +/area/tether/surfacebase/medical/lobby) +"aiC" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; dir = 4 @@ -5010,8 +5178,8 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iD" = ( +/area/tether/surfacebase/surface_three_hall) +"aiD" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -5026,12 +5194,15 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner2{ dir = 9 }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iE" = ( +/area/tether/surfacebase/surface_three_hall) +"aiE" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"iF" = ( +"aiF" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/device/radio/intercom{ dir = 8; @@ -5039,7 +5210,7 @@ }, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"iG" = ( +"aiG" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -5052,8 +5223,8 @@ /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/lightgrey/bordercorner2, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iH" = ( +/area/tether/surfacebase/surface_three_hall) +"aiH" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, @@ -5067,7 +5238,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/recreation_area_restroom) -"iI" = ( +"aiI" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -5080,37 +5251,23 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"iJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Secondary Command Office" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"iK" = ( -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +"aiJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aiK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iL" = ( +/area/crew_quarters/pool) +"aiL" = ( /turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/atrium_three) -"iM" = ( +/area/tether/surfacebase/surface_three_hall) +"aiM" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -5119,13 +5276,13 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"iN" = ( +"aiN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"iO" = ( +"aiO" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -5146,7 +5303,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"iP" = ( +"aiP" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -5160,7 +5317,7 @@ /obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"iQ" = ( +"aiQ" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -5169,7 +5326,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iR" = ( +"aiR" = ( /obj/structure/cable/green{ icon_state = "1-8" }, @@ -5180,7 +5337,7 @@ /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iS" = ( +"aiS" = ( /obj/structure/table/reinforced, /obj/item/device/radio{ pixel_x = 4; @@ -5209,7 +5366,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iT" = ( +"aiT" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -5235,7 +5392,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iU" = ( +"aiU" = ( /obj/machinery/computer/security{ dir = 4 }, @@ -5243,14 +5400,14 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iV" = ( +"aiV" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iW" = ( +/area/tether/surfacebase/surface_three_hall) +"aiW" = ( /obj/structure/bed/chair/office/dark, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5262,7 +5419,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iX" = ( +"aiX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -5277,7 +5434,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"iY" = ( +"aiY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -5286,7 +5443,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"iZ" = ( +"aiZ" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -5295,7 +5452,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"ja" = ( +"aja" = ( /obj/machinery/computer/crew{ dir = 4 }, @@ -5315,27 +5472,23 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"jb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/photocopier, +"ajb" = ( /obj/effect/floor_decal/borderfloor{ - dir = 4 + dir = 8 }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 + dir = 6 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 + dir = 5 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/bridge/secondary) -"jc" = ( -/obj/machinery/camera/network/tether, +/area/tether/surfacebase/surface_three_hall) +"ajc" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5350,8 +5503,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jd" = ( +/area/tether/surfacebase/surface_three_hall) +"ajd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5366,8 +5519,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"je" = ( +/area/tether/surfacebase/surface_three_hall) +"aje" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5385,14 +5538,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jf" = ( +/area/tether/surfacebase/surface_three_hall) +"ajf" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jg" = ( +/area/tether/surfacebase/surface_three_hall) +"ajg" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5410,8 +5563,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jh" = ( +/area/tether/surfacebase/surface_three_hall) +"ajh" = ( /obj/machinery/light{ dir = 1 }, @@ -5426,8 +5579,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ji" = ( +/area/tether/surfacebase/surface_three_hall) +"aji" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5442,8 +5595,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jj" = ( +/area/tether/surfacebase/surface_three_hall) +"ajj" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5457,8 +5610,8 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jk" = ( +/area/tether/surfacebase/surface_three_hall) +"ajk" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, @@ -5472,8 +5625,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jl" = ( +/area/tether/surfacebase/surface_three_hall) +"ajl" = ( /obj/structure/bed/padded, /obj/effect/floor_decal/techfloor{ dir = 9 @@ -5487,7 +5640,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jm" = ( +"ajm" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -5496,7 +5649,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jn" = ( +"ajn" = ( /obj/machinery/light/small{ dir = 1 }, @@ -5510,7 +5663,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jo" = ( +"ajo" = ( /obj/structure/sign/nosmoking_2{ pixel_y = 29 }, @@ -5519,14 +5672,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jp" = ( +"ajp" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/effect/floor_decal/techfloor{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jq" = ( +"ajq" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -5537,7 +5690,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jr" = ( +"ajr" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -5558,14 +5711,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"js" = ( +"ajs" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, /obj/effect/floor_decal/techfloor{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jt" = ( +"ajt" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -5580,8 +5733,8 @@ }, /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/atrium_three) -"ju" = ( +/area/tether/surfacebase/surface_three_hall) +"aju" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -5589,27 +5742,27 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jv" = ( +/area/tether/surfacebase/surface_three_hall) +"ajv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jw" = ( +/area/tether/surfacebase/surface_three_hall) +"ajw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jx" = ( +/area/tether/surfacebase/surface_three_hall) +"ajx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jy" = ( +/area/tether/surfacebase/surface_three_hall) +"ajy" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -5621,11 +5774,11 @@ /obj/item/device/gps/science, /turf/simulated/floor/plating, /area/rnd/research_storage) -"jz" = ( +"ajz" = ( /obj/structure/flora/tree/sif, /turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/atrium_three) -"jA" = ( +/area/tether/surfacebase/surface_three_hall) +"ajA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5639,60 +5792,50 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jB" = ( +/area/tether/surfacebase/surface_three_hall) +"ajB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"ajC" = ( +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +/area/tether/surfacebase/surface_three_hall) +"ajD" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/device/radio/intercom{ dir = 4; - icon_state = "pipe-c" + pixel_x = 24 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jE" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"ajE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5709,7 +5852,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/research_storage) -"jF" = ( +"ajF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -5718,31 +5861,18 @@ pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jG" = ( +/area/tether/surfacebase/surface_three_hall) +"ajG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "Drunk Tank"; - pixel_x = -28; - pixel_y = 0 - }, +/area/tether/surfacebase/surface_three_hall) +"ajH" = ( +/obj/machinery/computer/secure_data, /turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/common) -"jI" = ( +/area/bridge) +"ajI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/up{ dir = 8 @@ -5753,13 +5883,13 @@ }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"jJ" = ( +"ajJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"jK" = ( +"ajK" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -5768,7 +5898,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"jL" = ( +"ajL" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -5788,7 +5918,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"jM" = ( +"ajM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5796,8 +5926,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jN" = ( +/area/tether/surfacebase/surface_three_hall) +"ajN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -5809,7 +5939,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"jO" = ( +"ajO" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -5828,7 +5958,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"jP" = ( +"ajP" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -5849,7 +5979,7 @@ /obj/machinery/vending/security, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"jQ" = ( +"ajQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5872,7 +6002,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"jR" = ( +"ajR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5883,8 +6013,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jS" = ( +/area/tether/surfacebase/surface_three_hall) +"ajS" = ( /obj/structure/bed/chair/office/dark, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -5893,10 +6023,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"jT" = ( +"ajT" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/lobby) -"jU" = ( +"ajU" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -5904,8 +6034,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jV" = ( +/area/tether/surfacebase/surface_three_hall) +"ajV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5913,8 +6043,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jW" = ( +/area/tether/surfacebase/surface_three_hall) +"ajW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5922,20 +6052,20 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jX" = ( +/area/tether/surfacebase/surface_three_hall) +"ajX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jY" = ( +/area/tether/surfacebase/surface_three_hall) +"ajY" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jZ" = ( +/area/tether/surfacebase/surface_three_hall) +"ajZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -5948,8 +6078,8 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ka" = ( +/area/tether/surfacebase/surface_three_hall) +"aka" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5960,8 +6090,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kb" = ( +/area/tether/surfacebase/surface_three_hall) +"akb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5974,8 +6104,8 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kc" = ( +/area/tether/surfacebase/surface_three_hall) +"akc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -5992,8 +6122,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kd" = ( +/area/tether/surfacebase/surface_three_hall) +"akd" = ( /obj/machinery/status_display{ pixel_x = 32; pixel_y = 0 @@ -6011,26 +6141,26 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ke" = ( +/area/tether/surfacebase/surface_three_hall) +"ake" = ( /obj/structure/bed/padded, /obj/effect/floor_decal/techfloor{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kf" = ( +"akf" = ( /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kg" = ( +"akg" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kh" = ( +"akh" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"ki" = ( +"aki" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, @@ -6041,7 +6171,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kj" = ( +"akj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -6053,13 +6183,21 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kk" = ( -/obj/machinery/camera/network/outside{ +"akk" = ( +/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 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"kl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"akl" = ( /obj/machinery/vending/cola, /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -6078,8 +6216,8 @@ dir = 8 }, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/atrium_three) -"km" = ( +/area/tether/surfacebase/surface_three_hall) +"akm" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -6091,8 +6229,8 @@ }, /obj/machinery/light, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kn" = ( +/area/tether/surfacebase/surface_three_hall) +"akn" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6102,22 +6240,19 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ko" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/area/tether/surfacebase/surface_three_hall) +"ako" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kp" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/bar) +"akp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -6133,14 +6268,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kq" = ( +/area/tether/surfacebase/surface_three_hall) +"akq" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kr" = ( +/area/tether/surfacebase/surface_three_hall) +"akr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals6, @@ -6150,8 +6285,8 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ks" = ( +/area/tether/surfacebase/surface_three_hall) +"aks" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -6166,20 +6301,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kt" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/area/tether/surfacebase/surface_three_hall) +"akt" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5; + pixel_y = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/item/device/integrated_electronics/wirer{ + pixel_x = 5; + pixel_y = 0 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ku" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"aku" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6193,8 +6329,8 @@ pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kv" = ( +/area/tether/surfacebase/surface_three_hall) +"akv" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -6205,8 +6341,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kw" = ( +/area/tether/surfacebase/surface_three_hall) +"akw" = ( /obj/machinery/computer/security{ dir = 8 }, @@ -6216,9 +6352,13 @@ /obj/effect/floor_decal/corner/red/border{ dir = 6 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"kx" = ( +"akx" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6228,8 +6368,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ky" = ( +/area/tether/surfacebase/surface_three_hall) +"aky" = ( /obj/machinery/light{ dir = 1 }, @@ -6238,7 +6378,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"kz" = ( +"akz" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -6256,7 +6396,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"kA" = ( +"akA" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -6271,7 +6411,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/frontdesk) -"kB" = ( +"akB" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/eastleft{ dir = 1 @@ -6294,7 +6434,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"kC" = ( +"akC" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6306,8 +6446,8 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kD" = ( +/area/tether/surfacebase/surface_three_hall) +"akD" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -6321,14 +6461,14 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kE" = ( +/area/tether/surfacebase/surface_three_hall) +"akE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kF" = ( +/area/tether/surfacebase/surface_three_hall) +"akF" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced{ @@ -6350,25 +6490,25 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"kG" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +"akG" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/obj/structure/window/basic, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kH" = ( +/area/tether/surfacebase/surface_three_hall) +"akH" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kI" = ( +/area/tether/surfacebase/surface_three_hall) +"akI" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6383,8 +6523,8 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kJ" = ( +/area/tether/surfacebase/surface_three_hall) +"akJ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6401,8 +6541,8 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kK" = ( +/area/tether/surfacebase/surface_three_hall) +"akK" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6417,8 +6557,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kL" = ( +/area/tether/surfacebase/surface_three_hall) +"akL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -6433,20 +6573,15 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kM" = ( -/obj/machinery/camera/network/tether{ - dir = 9 +/area/tether/surfacebase/surface_three_hall) +"akM" = ( +/obj/machinery/door/window/southleft{ + name = "Library Desk Door"; + req_access = list(37) }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kN" = ( +/turf/simulated/floor/carpet, +/area/library) +"akN" = ( /obj/structure/closet, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, @@ -6457,19 +6592,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kO" = ( +"akO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kP" = ( +"akP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kQ" = ( +"akQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -6480,7 +6615,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kR" = ( +"akR" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -6499,16 +6634,16 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kS" = ( +"akS" = ( /turf/simulated/wall, /area/crew_quarters/pool) -"kT" = ( +"akT" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/pool) -"kU" = ( +"akU" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Pool" }, @@ -6520,7 +6655,7 @@ dir = 8 }, /area/crew_quarters/pool) -"kV" = ( +"akV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -6536,7 +6671,7 @@ dir = 4 }, /area/crew_quarters/pool) -"kW" = ( +"akW" = ( /obj/structure/sign/biohazard{ pixel_y = 32 }, @@ -6547,23 +6682,30 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"kX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/pool) -"kY" = ( +"akX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"akY" = ( /turf/simulated/wall, /area/crew_quarters/recreation_area) -"kZ" = ( +"akZ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/recreation_area) -"la" = ( +"ala" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -6574,8 +6716,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lb" = ( +/area/tether/surfacebase/surface_three_hall) +"alb" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -6589,16 +6731,16 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lc" = ( +/area/tether/surfacebase/surface_three_hall) +"alc" = ( /turf/simulated/wall, /area/tether/surfacebase/north_stairs_three) -"ld" = ( +"ald" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"le" = ( +"ale" = ( /obj/structure/sign/directions/engineering{ dir = 10; icon_state = "direction_eng"; @@ -6606,7 +6748,7 @@ }, /turf/simulated/wall, /area/tether/surfacebase/north_stairs_three) -"lf" = ( +"alf" = ( /obj/structure/sign/directions/medical{ dir = 4; pixel_y = 8 @@ -6623,7 +6765,7 @@ }, /turf/simulated/wall, /area/tether/surfacebase/north_stairs_three) -"lg" = ( +"alg" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -6646,14 +6788,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lh" = ( +/area/tether/surfacebase/surface_three_hall) +"alh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"li" = ( +/area/tether/surfacebase/surface_three_hall) +"ali" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -6666,80 +6808,85 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 10 }, -/obj/structure/window/basic{ - dir = 4 +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"alj" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/captain) +"alk" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lj" = ( -/obj/structure/railing{ - dir = 8 +/area/tether/surfacebase/surface_three_hall) +"all" = ( +/obj/machinery/shower{ + pixel_y = 8 }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"lk" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"ll" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"lm" = ( +/obj/item/weapon/soap/deluxe, +/obj/structure/curtain/open/shower, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"alm" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/structure/window/basic{ +/obj/effect/floor_decal/corner/blue/border{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ln" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/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{ +/obj/effect/floor_decal/borderfloor/corner2{ dir = 10 }, -/obj/machinery/camera/network/tether{ - dir = 9 +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/machinery/computer/id_restorer{ + dir = 4; + icon_state = "restorer"; + pixel_x = -30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lo" = ( +/area/tether/surfacebase/surface_three_hall) +"aln" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/northleft{ + dir = 4; + icon_state = "right"; + name = "Reception Window" + }, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 8; + name = "Head of Personnel's Desk"; + req_access = list(57) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "hop_office_desk"; + layer = 3.1; + name = "HoP's Shutters" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"alo" = ( /turf/simulated/wall/r_wall, -/area/tether/surfacebase/atrium_three) -"lp" = ( +/area/tether/surfacebase/surface_three_hall) +"alp" = ( /obj/machinery/vending/coffee, /obj/machinery/alarm{ dir = 4; @@ -6748,30 +6895,33 @@ pixel_y = 0 }, /turf/simulated/floor/wood, -/area/tether/surfacebase/atrium_three) -"lq" = ( +/area/tether/surfacebase/surface_three_hall) +"alq" = ( /turf/simulated/floor/wood, -/area/tether/surfacebase/atrium_three) -"lr" = ( +/area/tether/surfacebase/surface_three_hall) +"alr" = ( /obj/structure/bed/chair/wood{ dir = 8 }, /turf/simulated/floor/wood, -/area/tether/surfacebase/atrium_three) -"ls" = ( +/area/tether/surfacebase/surface_three_hall) +"als" = ( /obj/machinery/washing_machine, /obj/effect/floor_decal/techfloor{ dir = 8 }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"lt" = ( +"alt" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"lu" = ( +"alu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -6783,7 +6933,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"lv" = ( +"alv" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -6792,7 +6942,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"lw" = ( +"alw" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -6801,7 +6951,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/pool) -"lx" = ( +"alx" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -6809,7 +6959,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"ly" = ( +"aly" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -6819,16 +6969,28 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"alz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"lA" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"alA" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6838,9 +7000,10 @@ icon_state = "cabinet_closed"; name = "Clothing Storage" }, +/obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lB" = ( +"alB" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6852,7 +7015,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lC" = ( +"alC" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6861,7 +7024,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lD" = ( +"alD" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6877,13 +7040,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lE" = ( +"alE" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lF" = ( +"alF" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6892,7 +7055,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lG" = ( +"alG" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6908,7 +7071,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lH" = ( +"alH" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -6918,38 +7081,52 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"lI" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 +"alI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"lJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"alJ" = ( /obj/machinery/vending/fitness, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"lK" = ( +"alK" = ( /obj/structure/closet/athletic_mixed, /obj/machinery/status_display{ pixel_y = 30 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"lL" = ( +"alL" = ( /obj/machinery/fitness/punching_bag/clown, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"lM" = ( -/obj/machinery/camera/network/civilian, +"alM" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, /turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"lN" = ( +/area/crew_quarters/bar) +"alN" = ( /obj/machinery/fitness/heavy/lifter, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"lO" = ( +"alO" = ( /obj/structure/closet/athletic_mixed, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -6960,14 +7137,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"lP" = ( +"alP" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"lQ" = ( +/area/tether/surfacebase/surface_three_hall) +"alQ" = ( /obj/machinery/light_switch{ pixel_y = 25 }, @@ -6981,7 +7158,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"lR" = ( +"alR" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -6990,7 +7167,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"lS" = ( +"alS" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -6999,17 +7176,17 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"lT" = ( +"alT" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"lU" = ( +"alU" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"lV" = ( +"alV" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, @@ -7021,28 +7198,28 @@ dir = 1 }, /area/tether/surfacebase/north_stairs_three) -"lW" = ( +"alW" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lX" = ( +/area/tether/surfacebase/surface_three_hall) +"alX" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"lY" = ( +/area/tether/surfacebase/surface_three_hall) +"alY" = ( /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"lZ" = ( +/area/tether/surfacebase/surface_three_hall) +"alZ" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"ma" = ( +/area/tether/surfacebase/surface_three_hall) +"ama" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -7061,18 +7238,18 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"mb" = ( +/area/tether/surfacebase/surface_three_hall) +"amb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"mc" = ( +/area/tether/surfacebase/surface_three_hall) +"amc" = ( /obj/machinery/vending/cigarette, /turf/simulated/floor/wood, -/area/tether/surfacebase/atrium_three) -"md" = ( +/area/tether/surfacebase/surface_three_hall) +"amd" = ( /obj/structure/table/glass, /obj/item/weapon/material/ashtray/plastic, /obj/item/device/radio/intercom{ @@ -7080,33 +7257,43 @@ pixel_x = 24 }, /turf/simulated/floor/wood, -/area/tether/surfacebase/atrium_three) -"me" = ( +/area/tether/surfacebase/surface_three_hall) +"ame" = ( /obj/machinery/washing_machine, /obj/effect/floor_decal/techfloor{ dir = 10 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mf" = ( +"amf" = ( /obj/structure/ladder, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mg" = ( +"amg" = ( /obj/machinery/light/small, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mh" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/techfloor, -/obj/machinery/camera/network/civilian{ +"amh" = ( +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"mi" = ( +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"ami" = ( /obj/machinery/space_heater, /obj/effect/floor_decal/techfloor, /obj/machinery/firealarm{ @@ -7116,13 +7303,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mj" = ( +"amj" = ( /obj/machinery/space_heater, /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor/hole/right, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mk" = ( +"amk" = ( /obj/effect/floor_decal/techfloor/corner, /obj/effect/floor_decal/techfloor/corner{ dir = 8 @@ -7136,7 +7323,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"ml" = ( +"aml" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, @@ -7146,7 +7333,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mm" = ( +"amm" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, @@ -7155,13 +7342,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mn" = ( +"amn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mo" = ( +"amo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -7170,7 +7357,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mp" = ( +"amp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7179,7 +7366,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mq" = ( +"amq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7193,7 +7380,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mr" = ( +"amr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7207,7 +7394,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"ms" = ( +"ams" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -7222,7 +7409,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mt" = ( +"amt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -7236,29 +7423,34 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mu" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 +"amu" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"mv" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"amv" = ( /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"mw" = ( +"amw" = ( /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"mx" = ( +"amx" = ( /obj/machinery/light_switch{ pixel_x = 25 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"my" = ( +"amy" = ( /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/north_stairs_three) -"mz" = ( +"amz" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -7267,7 +7459,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/north_stairs_three) -"mA" = ( +"amA" = ( /obj/structure/cable{ icon_state = "0-4" }, @@ -7278,7 +7470,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"mB" = ( +"amB" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -7293,8 +7485,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"mC" = ( -/obj/machinery/light/small, +"amC" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable{ icon_state = "4-8" @@ -7306,9 +7497,12 @@ dir = 2; pixel_y = -24 }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"mD" = ( +"amD" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ icon_state = "4-8" @@ -7321,7 +7515,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"mE" = ( +"amE" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ icon_state = "4-8" @@ -7337,7 +7531,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"mF" = ( +"amF" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, @@ -7358,7 +7552,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central1, /turf/simulated/floor/tiled/monofloor, /area/tether/surfacebase/north_stairs_three) -"mG" = ( +"amG" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -7372,8 +7566,8 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"mH" = ( +/area/tether/surfacebase/surface_three_hall) +"amH" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -7387,8 +7581,8 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"mI" = ( +/area/tether/surfacebase/surface_three_hall) +"amI" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -7417,8 +7611,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"mJ" = ( +/area/tether/surfacebase/surface_three_hall) +"amJ" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/int{ name = "Fire/Phoron Shelter"; @@ -7426,12 +7620,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mK" = ( +"amK" = ( /obj/effect/wingrille_spawn/reinforced_phoron, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/crew_quarters/panic_shelter) -"mL" = ( +"amL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, @@ -7446,40 +7640,40 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/panic_shelter) -"mM" = ( +"amM" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mN" = ( +"amN" = ( /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mO" = ( +"amO" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 }, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"mP" = ( +"amP" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"mQ" = ( +"amQ" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"mR" = ( +"amR" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 }, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"mS" = ( +"amS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -7493,25 +7687,16 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mT" = ( -/obj/effect/floor_decal/spline/plain{ +"amT" = ( +/obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner/mauve/bordercorner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"mU" = ( +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"amU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7525,24 +7710,32 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"mV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"amV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, -/obj/machinery/camera/network/civilian{ - dir = 9 +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"mW" = ( +/area/rnd/research/researchdivision) +"amW" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -7559,7 +7752,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/recreation_area) -"mX" = ( +"amX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7568,7 +7761,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"mY" = ( +"amY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -7582,7 +7775,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"mZ" = ( +"amZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7591,7 +7784,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"na" = ( +"ana" = ( /obj/structure/table/woodentable, /obj/item/clothing/glasses/threedglasses, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -7599,7 +7792,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"nb" = ( +"anb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -7608,7 +7801,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/recreation_area) -"nc" = ( +"anc" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock{ name = "Secondary Janitorial Closet"; @@ -7616,46 +7809,57 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/tether/surfacebase/north_stairs_three) -"nd" = ( -/obj/machinery/camera/network/tether{ +"and" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"ane" = ( /turf/simulated/open, /area/tether/surfacebase/north_stairs_three) -"ne" = ( -/turf/simulated/open, -/area/tether/surfacebase/north_stairs_three) -"nf" = ( +"anf" = ( /obj/structure/sign/directions/evac{ dir = 8 }, /turf/simulated/wall, /area/tether/surfacebase/north_stairs_three) -"ng" = ( -/obj/machinery/camera/network/tether{ +"ang" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/item/device/radio/intercom{ + pixel_y = -24 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nh" = ( +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"anh" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -7663,8 +7867,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ni" = ( +/area/tether/surfacebase/surface_three_hall) +"ani" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -7673,8 +7877,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nj" = ( +/area/tether/surfacebase/surface_three_hall) +"anj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -7699,8 +7903,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nk" = ( +/area/tether/surfacebase/surface_three_hall) +"ank" = ( /obj/machinery/door/airlock/maintenance/int{ name = "Fire/Phoron Shelter"; req_one_access = list() @@ -7719,7 +7923,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/panic_shelter) -"nl" = ( +"anl" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7739,7 +7943,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nm" = ( +"anm" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7754,7 +7958,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nn" = ( +"ann" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 29 }, @@ -7772,7 +7976,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"no" = ( +"ano" = ( /obj/machinery/light/small{ dir = 1 }, @@ -7782,7 +7986,7 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"np" = ( +"anp" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7790,7 +7994,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nq" = ( +"anq" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7798,7 +8002,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nr" = ( +"anr" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7808,7 +8012,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"ns" = ( +"ans" = ( /obj/machinery/computer/area_atmos{ range = 8 }, @@ -7817,7 +8021,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nt" = ( +"ant" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 1 }, @@ -7833,7 +8037,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nu" = ( +"anu" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -7843,7 +8047,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nv" = ( +"anv" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -7857,25 +8061,25 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"nw" = ( +"anw" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"nx" = ( +"anx" = ( /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"ny" = ( +"any" = ( /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"nz" = ( +"anz" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"nA" = ( +"anA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -7885,21 +8089,21 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"nB" = ( +"anB" = ( /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"nC" = ( +"anC" = ( /obj/machinery/door/airlock/glass{ name = "Recreation Area" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/recreation_area) -"nD" = ( +"anD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/hologram/holopad, @@ -7910,13 +8114,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"nE" = ( +"anE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"nF" = ( +"anF" = ( /obj/structure/table/woodentable, /obj/item/weapon/coin/silver, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -7925,15 +8129,15 @@ /obj/machinery/recharger, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"nG" = ( +"anG" = ( /obj/structure/flora/tree/sif, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/north_stairs_three) -"nH" = ( +"anH" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"nI" = ( +"anI" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 }, @@ -7942,11 +8146,11 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"nJ" = ( +"anJ" = ( /obj/structure/sign/directions/evac, /turf/simulated/wall, /area/tether/surfacebase/north_stairs_three) -"nK" = ( +"anK" = ( /obj/machinery/computer/guestpass{ dir = 4; pixel_x = -28; @@ -7965,12 +8169,12 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nL" = ( +/area/tether/surfacebase/surface_three_hall) +"anL" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nM" = ( +/area/tether/surfacebase/surface_three_hall) +"anM" = ( /obj/structure/sign/fire{ name = "\improper PHORON/FIRE SHELTER"; pixel_x = 33 @@ -7990,8 +8194,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nN" = ( +/area/tether/surfacebase/surface_three_hall) +"anN" = ( /obj/machinery/light/small{ dir = 8; pixel_x = 0 @@ -8005,7 +8209,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nO" = ( +"anO" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/firealarm{ dir = 1; @@ -8018,7 +8222,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nP" = ( +"anP" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/green{ d1 = 2; @@ -8036,7 +8240,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nQ" = ( +"anQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -8055,7 +8259,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/panic_shelter) -"nR" = ( +"anR" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -8070,7 +8274,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nS" = ( +"anS" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8083,7 +8287,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nT" = ( +"anT" = ( /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor/hole/right, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8102,7 +8306,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nU" = ( +"anU" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/shower{ dir = 1 @@ -8123,7 +8327,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nV" = ( +"anV" = ( /obj/machinery/door/airlock/hatch{ name = "Fire/Phoron Shelter Secure Hatch"; req_one_access = list() @@ -8142,7 +8346,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/panic_shelter) -"nW" = ( +"anW" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -31 }, @@ -8161,7 +8365,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nX" = ( +"anX" = ( /obj/machinery/light/small, /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -8169,7 +8373,7 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nY" = ( +"anY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -8184,7 +8388,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nZ" = ( +"anZ" = ( /obj/structure/table/glass, /obj/item/weapon/inflatable_duck, /obj/effect/floor_decal/spline/plain{ @@ -8198,11 +8402,11 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"oa" = ( +"aoa" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"ob" = ( +"aob" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; dir = 8; @@ -8212,7 +8416,7 @@ /obj/structure/cable/green, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"oc" = ( +"aoc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -8222,7 +8426,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"od" = ( +"aod" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -8232,7 +8436,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"oe" = ( +"aoe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -8244,7 +8448,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"of" = ( +"aof" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -8255,10 +8459,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"og" = ( +"aog" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"oh" = ( +"aoh" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -8266,7 +8470,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"oi" = ( +"aoi" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -8284,15 +8488,15 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oj" = ( +/area/tether/surfacebase/surface_three_hall) +"aoj" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ok" = ( +/area/tether/surfacebase/surface_three_hall) +"aok" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -8311,11 +8515,11 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ol" = ( +/area/tether/surfacebase/surface_three_hall) +"aol" = ( /turf/simulated/wall/r_wall, /area/vacant/vacant_shop) -"om" = ( +"aom" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass, @@ -8329,10 +8533,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_shop) -"on" = ( +"aon" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/freezer) -"oo" = ( +"aoo" = ( /obj/machinery/door/airlock/maintenance/common{ name = "Freezer Maintenance Access"; req_access = list(28) @@ -8340,10 +8544,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/freezer) -"op" = ( +"aop" = ( /turf/simulated/wall/r_wall, /area/hydroponics/cafegarden) -"oq" = ( +"aoq" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -8352,20 +8556,20 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"or" = ( +"aor" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 }, /obj/item/weapon/beach_ball, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"os" = ( +"aos" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"ot" = ( +"aot" = ( /obj/structure/table/glass, /obj/machinery/light{ dir = 4; @@ -8374,7 +8578,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"ou" = ( +"aou" = ( /obj/structure/reagent_dispensers/water_cooler/full, /obj/item/device/radio/intercom{ dir = 2; @@ -8387,7 +8591,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"ov" = ( +"aov" = ( /obj/machinery/scale, /obj/structure/disposalpipe/segment{ dir = 4 @@ -8398,14 +8602,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"ow" = ( +"aow" = ( /obj/machinery/scale, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"ox" = ( +"aox" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -8419,11 +8623,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"oy" = ( +"aoy" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/staircase/thirdfloor) -"oz" = ( +"aoz" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -8437,8 +8641,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oA" = ( +/area/tether/surfacebase/surface_three_hall) +"aoA" = ( /obj/machinery/light_switch{ pixel_y = -25 }, @@ -8447,14 +8651,14 @@ /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"oB" = ( +"aoB" = ( /obj/machinery/light/small, /obj/structure/mopbucket, /obj/item/weapon/reagent_containers/glass/bucket, /obj/item/weapon/mop, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"oC" = ( +"aoC" = ( /obj/machinery/status_display{ pixel_x = -32 }, @@ -8471,8 +8675,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oD" = ( +/area/tether/surfacebase/surface_three_hall) +"aoD" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -8487,14 +8691,14 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oE" = ( +/area/tether/surfacebase/surface_three_hall) +"aoE" = ( /obj/structure/sign/directions/evac{ dir = 1 }, /turf/simulated/wall/r_wall, /area/vacant/vacant_shop) -"oF" = ( +"aoF" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, @@ -8505,8 +8709,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oG" = ( +/area/tether/surfacebase/surface_three_hall) +"aoG" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -8516,8 +8720,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oH" = ( +/area/tether/surfacebase/surface_three_hall) +"aoH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -8527,7 +8731,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"oI" = ( +"aoI" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -8545,19 +8749,29 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oJ" = ( +/area/tether/surfacebase/surface_three_hall) +"aoJ" = ( /turf/simulated/wall, /area/crew_quarters/freezer) -"oK" = ( +"aoK" = ( /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"oL" = ( -/obj/structure/closet/crate/freezer, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"oM" = ( +"aoL" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aoM" = ( /obj/structure/kitchenspike, /obj/machinery/alarm{ pixel_y = 22; @@ -8565,25 +8779,32 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"oN" = ( +"aoN" = ( /obj/structure/kitchenspike, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"oO" = ( +"aoO" = ( /obj/structure/flora/ausbushes/grassybush, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"oP" = ( +"aoP" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"oQ" = ( -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"oR" = ( +"aoQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aoR" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -8592,24 +8813,24 @@ }, /turf/simulated/floor/plating, /area/hydroponics/cafegarden) -"oS" = ( +"aoS" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"oT" = ( +"aoT" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"oU" = ( +"aoU" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"oV" = ( +"aoV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -8624,7 +8845,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/recreation_area) -"oW" = ( +"aoW" = ( /obj/machinery/alarm{ pixel_y = 20 }, @@ -8633,12 +8854,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"oX" = ( +"aoX" = ( /turf/simulated/wall, /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"oY" = ( +"aoY" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; dir = 8; @@ -8661,8 +8882,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oZ" = ( +/area/tether/surfacebase/surface_three_hall) +"aoZ" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -8673,15 +8894,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pa" = ( +/area/tether/surfacebase/surface_three_hall) +"apa" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pb" = ( +/area/tether/surfacebase/surface_three_hall) +"apb" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -8702,11 +8923,11 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pc" = ( +/area/tether/surfacebase/surface_three_hall) +"apc" = ( /turf/simulated/wall, /area/vacant/vacant_shop) -"pd" = ( +"apd" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -8723,8 +8944,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pe" = ( +/area/tether/surfacebase/surface_three_hall) +"ape" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -8740,8 +8961,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pf" = ( +/area/tether/surfacebase/surface_three_hall) +"apf" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -8761,8 +8982,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pg" = ( +/area/tether/surfacebase/surface_three_hall) +"apg" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -8786,20 +9007,20 @@ /obj/random/maintenance/clean, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"ph" = ( +"aph" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"pi" = ( +"api" = ( /obj/machinery/light_switch{ pixel_x = 25 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"pj" = ( +"apj" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -8808,14 +9029,14 @@ }, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"pk" = ( +"apk" = ( /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"pl" = ( +"apl" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"pm" = ( +"apm" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, @@ -8825,14 +9046,14 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"pn" = ( +"apn" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"po" = ( +"apo" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -8847,8 +9068,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pp" = ( +/area/tether/surfacebase/surface_three_hall) +"app" = ( /obj/machinery/atm{ pixel_y = 31 }, @@ -8869,8 +9090,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pq" = ( +/area/tether/surfacebase/surface_three_hall) +"apq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -8886,8 +9107,8 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pr" = ( +/area/tether/surfacebase/surface_three_hall) +"apr" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -8905,8 +9126,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ps" = ( +/area/tether/surfacebase/surface_three_hall) +"aps" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -8928,8 +9149,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pt" = ( +/area/tether/surfacebase/surface_three_hall) +"apt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -8945,8 +9166,8 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/machinery/vending/nifsoft_shop, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pu" = ( +/area/tether/surfacebase/surface_three_hall) +"apu" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -8958,8 +9179,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pv" = ( +/area/tether/surfacebase/surface_three_hall) +"apv" = ( /obj/machinery/shower{ dir = 4; icon_state = "shower"; @@ -8971,12 +9192,12 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"pw" = ( +"apw" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"px" = ( +"apx" = ( /obj/machinery/light_switch{ pixel_y = 25 }, @@ -8984,7 +9205,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"py" = ( +"apy" = ( /obj/machinery/shower{ dir = 8; icon_state = "shower"; @@ -8996,15 +9217,15 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"pz" = ( +"apz" = ( /obj/structure/table/rack, /obj/random/maintenance/research, /obj/random/maintenance/medical, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"pA" = ( +/area/tether/surfacebase/surface_three_hall) +"apA" = ( /obj/structure/table/steel, /obj/fiftyspawner/steel, /obj/effect/floor_decal/techfloor{ @@ -9012,7 +9233,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"pB" = ( +"apB" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -9026,8 +9247,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pC" = ( +/area/tether/surfacebase/surface_three_hall) +"apC" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -9049,8 +9270,8 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pD" = ( +/area/tether/surfacebase/surface_three_hall) +"apD" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -9066,8 +9287,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pE" = ( +/area/tether/surfacebase/surface_three_hall) +"apE" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -9089,48 +9310,56 @@ sortType = "Library" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pF" = ( +/area/tether/surfacebase/surface_three_hall) +"apF" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"pG" = ( +"apG" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"pH" = ( +"apH" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"pI" = ( +"apI" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"pJ" = ( +"apJ" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"pK" = ( -/obj/effect/floor_decal/spline/plain{ +"apK" = ( +/obj/structure/sign/department/robo{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; +/obj/effect/floor_decal/corner/mauve/border{ dir = 4 }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"pL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"apL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -9139,7 +9368,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"pM" = ( +"apM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9155,7 +9384,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"pN" = ( +"apN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9171,7 +9400,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/pool) -"pO" = ( +"apO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9188,8 +9417,8 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pP" = ( +/area/tether/surfacebase/surface_three_hall) +"apP" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 }, @@ -9207,7 +9436,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"pQ" = ( +"apQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9223,8 +9452,8 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pR" = ( +/area/tether/surfacebase/surface_three_hall) +"apR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -9238,11 +9467,11 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pS" = ( +/area/tether/surfacebase/surface_three_hall) +"apS" = ( /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pT" = ( +/area/tether/surfacebase/surface_three_hall) +"apT" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -9262,8 +9491,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pU" = ( +/area/tether/surfacebase/surface_three_hall) +"apU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -9281,7 +9510,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"pV" = ( +"apV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9289,7 +9518,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"pW" = ( +"apW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -9297,7 +9526,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"pX" = ( +"apX" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -9310,8 +9539,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pY" = ( +/area/tether/surfacebase/surface_three_hall) +"apY" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -9325,8 +9554,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pZ" = ( +/area/tether/surfacebase/surface_three_hall) +"apZ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -9341,8 +9570,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qa" = ( +/area/tether/surfacebase/surface_three_hall) +"aqa" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -9360,8 +9589,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qb" = ( +/area/tether/surfacebase/surface_three_hall) +"aqb" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -9372,60 +9601,29 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qc" = ( -/obj/effect/floor_decal/borderfloor{ +/area/tether/surfacebase/surface_three_hall) +"aqc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"aqd" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ 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/structure/window/basic{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qe" = ( +/area/tether/surfacebase/surface_three_hall) +"aqe" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qf" = ( +/area/tether/surfacebase/surface_three_hall) +"aqf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9442,8 +9640,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qg" = ( +/area/tether/surfacebase/surface_three_hall) +"aqg" = ( /obj/structure/grille, /obj/structure/railing{ dir = 8 @@ -9452,8 +9650,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_three) -"qh" = ( +/area/tether/surfacebase/surface_three_hall) +"aqh" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" }, @@ -9461,8 +9659,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_three) -"qi" = ( +/area/tether/surfacebase/surface_three_hall) +"aqi" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment{ @@ -9470,7 +9668,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/vacant/vacant_shop) -"qj" = ( +"aqj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -9490,7 +9688,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"qk" = ( +"aqk" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -9512,7 +9710,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"ql" = ( +"aql" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; dir = 8; @@ -9530,7 +9728,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qm" = ( +"aqm" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/green{ d1 = 4; @@ -9539,7 +9737,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qn" = ( +"aqn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/green{ d1 = 2; @@ -9548,11 +9746,11 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qo" = ( +"aqo" = ( /obj/machinery/gibber, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qp" = ( +"aqp" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; dir = 8; @@ -9564,7 +9762,7 @@ }, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"qq" = ( +"aqq" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -9572,7 +9770,7 @@ }, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"qr" = ( +"aqr" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -9589,27 +9787,27 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"qs" = ( +"aqs" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 }, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"qt" = ( +"aqt" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"qu" = ( +"aqu" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"qv" = ( +"aqv" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 }, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"qw" = ( +"aqw" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_research{ frequency = 1392; @@ -9632,7 +9830,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"qx" = ( +"aqx" = ( /obj/machinery/alarm{ pixel_y = 20 }, @@ -9641,7 +9839,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"qy" = ( +"aqy" = ( /obj/machinery/light{ dir = 1 }, @@ -9659,14 +9857,18 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"qz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/civilian{ - dir = 9 +"aqz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"qA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/research{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aqA" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -9678,7 +9880,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"qB" = ( +"aqB" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -9695,8 +9897,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qC" = ( +/area/tether/surfacebase/surface_three_hall) +"aqC" = ( /obj/item/device/radio/intercom{ dir = 1; pixel_y = 24; @@ -9710,7 +9912,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"qD" = ( +"aqD" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -9722,7 +9924,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"qE" = ( +"aqE" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -9736,8 +9938,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qF" = ( +/area/tether/surfacebase/surface_three_hall) +"aqF" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -9752,7 +9954,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"qG" = ( +"aqG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -9766,8 +9968,8 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qH" = ( +/area/tether/surfacebase/surface_three_hall) +"aqH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9780,8 +9982,8 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qI" = ( +/area/tether/surfacebase/surface_three_hall) +"aqI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9798,8 +10000,8 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qJ" = ( +/area/tether/surfacebase/surface_three_hall) +"aqJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9819,7 +10021,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"qK" = ( +"aqK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -9841,7 +10043,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"qL" = ( +"aqL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9849,7 +10051,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"qM" = ( +"aqM" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -9862,52 +10064,27 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"qN" = ( +"aqN" = ( /obj/structure/closet/crate, /obj/random/maintenance/engineering, /obj/random/maintenance/research, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"qO" = ( +/area/tether/surfacebase/surface_three_hall) +"aqO" = ( /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"qP" = ( +/area/tether/surfacebase/surface_three_hall) +"aqP" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"qQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, +/area/tether/surfacebase/surface_three_hall) +"aqQ" = ( /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/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -9916,30 +10093,40 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/structure/window/basic{ +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qS" = ( -/obj/machinery/camera/network/tether{ - dir = 9 - }, +/area/tether/surfacebase/surface_three_hall) +"aqR" = ( /obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 + dir = 5 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qT" = ( +/area/tether/surfacebase/surface_three_hall) +"aqS" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aqT" = ( /obj/structure/sign/directions/medical{ dir = 1; icon_state = "direction_med"; @@ -9961,8 +10148,8 @@ pixel_y = -10 }, /turf/simulated/wall, -/area/tether/surfacebase/atrium_three) -"qU" = ( +/area/tether/surfacebase/surface_three_hall) +"aqU" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -9979,19 +10166,19 @@ pixel_x = 25 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qV" = ( +/area/tether/surfacebase/surface_three_hall) +"aqV" = ( /obj/structure/closet/secure_closet/freezer/meat, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qW" = ( +"aqW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /obj/machinery/icecream_vat, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qX" = ( +"aqX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -10003,16 +10190,16 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qY" = ( +"aqY" = ( /obj/machinery/chem_master/condimaster, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qZ" = ( +"aqZ" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"ra" = ( +"ara" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -10020,11 +10207,11 @@ }, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"rb" = ( +"arb" = ( /obj/structure/flora/ausbushes/pointybush, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"rc" = ( +"arc" = ( /obj/structure/table/glass, /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -10036,44 +10223,44 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rd" = ( +"ard" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"re" = ( +"are" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rf" = ( +"arf" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rg" = ( +"arg" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rh" = ( +"arh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"ri" = ( +"ari" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"rj" = ( +"arj" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -10096,7 +10283,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"rk" = ( +"ark" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -10119,14 +10306,14 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rl" = ( +/area/tether/surfacebase/surface_three_hall) +"arl" = ( /obj/item/weapon/bikehorn/rubberducky, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"rm" = ( +"arm" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -10135,23 +10322,23 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"rn" = ( +"arn" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) -"ro" = ( -/obj/machinery/camera/network/civilian{ +"aro" = ( +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/obj/machinery/door/window/southleft{ - name = "Library Desk Door"; - req_access = list(37) +/obj/effect/floor_decal/spline/plain{ + dir = 8 }, -/turf/simulated/floor/carpet, -/area/library) -"rp" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"arp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, @@ -10165,7 +10352,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"rq" = ( +"arq" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -10179,7 +10366,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/freezer) -"rr" = ( +"arr" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10194,13 +10381,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"rs" = ( +"ars" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"rt" = ( +"art" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -10213,10 +10400,10 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"ru" = ( +"aru" = ( /turf/simulated/wall, /area/crew_quarters/kitchen) -"rv" = ( +"arv" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -10225,56 +10412,57 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rw" = ( +"arw" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rx" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"ry" = ( +"arx" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"ary" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/light, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rz" = ( +"arz" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rA" = ( +"arA" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 }, /obj/structure/undies_wardrobe, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rB" = ( +"arB" = ( /obj/structure/closet/lasertag/red, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"rC" = ( +"arC" = ( /obj/structure/closet/lasertag/blue, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"rD" = ( +"arD" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -26 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"rE" = ( +"arE" = ( /obj/machinery/vending/cola, /obj/effect/floor_decal/corner/lightgrey{ dir = 9 @@ -10293,8 +10481,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/atrium_three) -"rF" = ( +/area/tether/surfacebase/surface_three_hall) +"arF" = ( /obj/machinery/vending/fitness, /obj/effect/floor_decal/corner/lightgrey{ dir = 9 @@ -10313,8 +10501,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/atrium_three) -"rG" = ( +/area/tether/surfacebase/surface_three_hall) +"arG" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -10325,8 +10513,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rH" = ( +/area/tether/surfacebase/surface_three_hall) +"arH" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -10337,8 +10525,8 @@ dir = 2 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rI" = ( +/area/tether/surfacebase/surface_three_hall) +"arI" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -10360,11 +10548,11 @@ pixel_y = 26 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rJ" = ( +/area/tether/surfacebase/surface_three_hall) +"arJ" = ( /turf/simulated/wall, /area/crew_quarters/bar) -"rK" = ( +"arK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -10385,7 +10573,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"rL" = ( +"arL" = ( /obj/structure/table/bench/wooden, /obj/machinery/firealarm{ dir = 2; @@ -10395,14 +10583,17 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"rM" = ( +"arM" = ( /obj/structure/table/bench/wooden, /obj/machinery/alarm{ pixel_y = 22 }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"rN" = ( +"arN" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/closet/chefcloset, /obj/item/glass_jar, @@ -10420,7 +10611,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rO" = ( +"arO" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10431,7 +10622,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rP" = ( +"arP" = ( /obj/structure/table/standard, /obj/machinery/microwave, /obj/machinery/newscaster{ @@ -10440,7 +10631,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rQ" = ( +"arQ" = ( /obj/structure/table/standard, /obj/machinery/microwave, /obj/effect/floor_decal/corner/grey/diagonal, @@ -10452,13 +10643,13 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rR" = ( +"arR" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rS" = ( +"arS" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -10467,7 +10658,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rT" = ( +"arT" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/closet/secure_closet/freezer/meat, /obj/machinery/alarm{ @@ -10477,7 +10668,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rU" = ( +"arU" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -10487,17 +10678,17 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/pool) -"rV" = ( +"arV" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/pool) -"rW" = ( +"arW" = ( /turf/simulated/wall, /area/tether/surfacebase/public_garden_three) -"rX" = ( +"arX" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -10515,8 +10706,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rY" = ( +/area/tether/surfacebase/surface_three_hall) +"arY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -10534,8 +10725,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rZ" = ( +/area/tether/surfacebase/surface_three_hall) +"arZ" = ( /obj/machinery/newscaster{ pixel_x = 0; pixel_y = 30 @@ -10557,28 +10748,20 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sa" = ( -/obj/machinery/camera/network/tether, +/area/tether/surfacebase/surface_three_hall) +"asa" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 8 + }, /obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sb" = ( +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"asb" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10589,7 +10772,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"sc" = ( +"asc" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -10604,8 +10787,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sd" = ( +/area/tether/surfacebase/surface_three_hall) +"asd" = ( /obj/machinery/light{ dir = 1 }, @@ -10614,14 +10797,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"se" = ( +"ase" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) -"sf" = ( +"asf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -10630,19 +10813,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"sg" = ( +"asg" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"sh" = ( +"ash" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"si" = ( +/area/tether/surfacebase/surface_three_hall) +"asi" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -10660,8 +10843,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sj" = ( +/area/tether/surfacebase/surface_three_hall) +"asj" = ( /obj/machinery/atm{ pixel_x = -30 }, @@ -10676,28 +10859,21 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sk" = ( +"ask" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sl" = ( -/obj/structure/table/woodentable, -/obj/machinery/camera/network/civilian{ - dir = 9 +"asl" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"sm" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"asm" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/extinguisher_cabinet{ @@ -10707,7 +10883,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sn" = ( +"asn" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10726,7 +10902,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"so" = ( +"aso" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -10735,7 +10911,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sp" = ( +"asp" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -10745,7 +10921,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sq" = ( +"asq" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -10754,19 +10930,13 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sr" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/machinery/camera/network/civilian{ - dir = 9 +"asr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"ss" = ( +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"ass" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -10783,8 +10953,8 @@ pixel_x = -32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"st" = ( +/area/tether/surfacebase/surface_three_hall) +"ast" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -10796,8 +10966,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"su" = ( +/area/tether/surfacebase/surface_three_hall) +"asu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -10809,8 +10979,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sv" = ( +/area/tether/surfacebase/surface_three_hall) +"asv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -10818,8 +10988,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sw" = ( +/area/tether/surfacebase/surface_three_hall) +"asw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -10827,8 +10997,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sx" = ( +/area/tether/surfacebase/surface_three_hall) +"asx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -10839,8 +11009,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sy" = ( +/area/tether/surfacebase/surface_three_hall) +"asy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -10853,8 +11023,8 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sz" = ( +/area/tether/surfacebase/surface_three_hall) +"asz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -10863,27 +11033,32 @@ }, /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, +/area/tether/surfacebase/surface_three_hall) +"asA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 1; + on = 0; + pixel_x = -10; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/patient_c) +"asB" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; icon_state = "pipe-j1s"; @@ -10894,8 +11069,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sC" = ( +/area/tether/surfacebase/surface_three_hall) +"asC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10903,8 +11078,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sD" = ( +/area/tether/surfacebase/surface_three_hall) +"asD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10915,8 +11090,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sE" = ( +/area/tether/surfacebase/surface_three_hall) +"asE" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -10943,8 +11118,8 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sF" = ( +/area/tether/surfacebase/surface_three_hall) +"asF" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -10953,7 +11128,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"sG" = ( +"asG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -10966,14 +11141,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sH" = ( +"asH" = ( /obj/structure/table/bench/wooden, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sI" = ( +"asI" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -10988,7 +11163,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"sJ" = ( +"asJ" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 }, @@ -11005,7 +11180,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sK" = ( +"asK" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -11021,7 +11196,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sL" = ( +"asL" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/book/manual/chef_recipes, @@ -11033,7 +11208,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sM" = ( +"asM" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/reagent_containers/food/condiment/enzyme{ @@ -11045,7 +11220,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sN" = ( +"asN" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ @@ -11054,18 +11229,18 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sO" = ( +"asO" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sP" = ( +"asP" = ( /obj/machinery/cooker/grill, /obj/effect/floor_decal/industrial/warning/dust{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sQ" = ( +"asQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -11074,7 +11249,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"sR" = ( +"asR" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -11086,8 +11261,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sS" = ( +/area/tether/surfacebase/surface_three_hall) +"asS" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -11101,37 +11276,23 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sT" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/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, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sU" = ( +/area/tether/surfacebase/surface_three_hall) +"asT" = ( +/turf/simulated/wall/r_wall, +/area/bridge) +"asU" = ( /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sV" = ( +/area/tether/surfacebase/surface_three_hall) +"asV" = ( /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/bar) -"sW" = ( +"asW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -11141,10 +11302,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sX" = ( +"asX" = ( /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sY" = ( +"asY" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -11156,14 +11317,14 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"sZ" = ( +"asZ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/table/standard, /obj/item/weapon/material/kitchen/rollingpin, /obj/item/weapon/material/knife/butch, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"ta" = ( +"ata" = ( /obj/structure/table/standard, /obj/machinery/reagentgrinder, /obj/machinery/light{ @@ -11173,7 +11334,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tb" = ( +"atb" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/light{ @@ -11183,20 +11344,20 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tc" = ( +"atc" = ( /obj/machinery/cooker/candy, /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"td" = ( +"atd" = ( /obj/structure/disposalpipe/junction{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"te" = ( +/area/tether/surfacebase/surface_three_hall) +"ate" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11204,8 +11365,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tf" = ( +/area/tether/surfacebase/surface_three_hall) +"atf" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -11228,8 +11389,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tg" = ( +/area/tether/surfacebase/surface_three_hall) +"atg" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -11239,26 +11400,26 @@ /obj/structure/sign/department/bar, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"th" = ( +"ath" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"ti" = ( +"ati" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"tj" = ( +"atj" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/vending/dinnerware, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tk" = ( +"atk" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -11274,7 +11435,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tl" = ( +"atl" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/packageWrap, @@ -11283,14 +11444,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tm" = ( +"atm" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/sink/kitchen{ pixel_y = 28 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tn" = ( +"atn" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/reagent_containers/food/snacks/mint, @@ -11303,31 +11464,31 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"to" = ( +"ato" = ( /obj/machinery/cooker/cereal, /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tp" = ( +"atp" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Scientist" }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tq" = ( +"atq" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tr" = ( +"atr" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"ts" = ( +"ats" = ( /turf/simulated/wall, /area/hallway/lower/third_south) -"tt" = ( +"att" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -11345,16 +11506,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tu" = ( +/area/tether/surfacebase/surface_three_hall) +"atu" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tv" = ( +/area/tether/surfacebase/surface_three_hall) +"atv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11364,8 +11525,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tw" = ( +/area/tether/surfacebase/surface_three_hall) +"atw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11376,8 +11537,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tx" = ( +/area/tether/surfacebase/surface_three_hall) +"atx" = ( /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -11387,7 +11548,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/bar) -"ty" = ( +"aty" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -11402,24 +11563,24 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"tz" = ( +"atz" = ( /obj/machinery/smartfridge{ req_access = list(28) }, /turf/simulated/wall, /area/crew_quarters/kitchen) -"tA" = ( +"atA" = ( /obj/machinery/cooker/fryer, /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tB" = ( +"atB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tC" = ( +"atC" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -11428,7 +11589,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tD" = ( +"atD" = ( /obj/structure/table/steel, /obj/fiftyspawner/steel, /obj/effect/floor_decal/techfloor{ @@ -11436,11 +11597,11 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tE" = ( +"atE" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/rnd/research_storage) -"tF" = ( +"atF" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -11454,36 +11615,25 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/rnd/research_storage) -"tG" = ( +"atG" = ( /turf/simulated/wall/r_wall, /area/hallway/lower/third_south) -"tH" = ( +"atH" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, /area/hallway/lower/third_south) -"tI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ +"atI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/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/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tJ" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"atJ" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; icon_state = "pipe-j1s"; @@ -11494,8 +11644,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tK" = ( +/area/tether/surfacebase/surface_three_hall) +"atK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -11508,8 +11658,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tL" = ( +/area/tether/surfacebase/surface_three_hall) +"atL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11520,8 +11670,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tM" = ( +/area/tether/surfacebase/surface_three_hall) +"atM" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -11548,8 +11698,8 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tN" = ( +/area/tether/surfacebase/surface_three_hall) +"atN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -11567,7 +11717,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"tO" = ( +"atO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -11581,7 +11731,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"tP" = ( +"atP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -11600,7 +11750,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tQ" = ( +"atQ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -11621,7 +11771,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tR" = ( +"atR" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -11642,22 +11792,25 @@ /obj/structure/cable/green{ icon_state = "0-8" }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tS" = ( +"atS" = ( /obj/machinery/cooker/oven, /obj/effect/floor_decal/industrial/warning/dust{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tT" = ( +"atT" = ( /turf/simulated/wall/r_wall, /area/rnd/research) -"tU" = ( +"atU" = ( /turf/simulated/wall, /area/rnd/research) -"tV" = ( +"atV" = ( /obj/structure/table/steel, /obj/item/device/electronic_assembly/large/default, /obj/machinery/light, @@ -11666,7 +11819,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tW" = ( +"atW" = ( /obj/structure/table/steel, /obj/item/device/integrated_circuit_printer, /obj/item/device/radio/intercom{ @@ -11676,23 +11829,24 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tX" = ( -/obj/structure/table/steel, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5; - pixel_y = 0 +"atX" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/device/integrated_electronics/wirer{ - pixel_x = 5; - pixel_y = 0 +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 }, /obj/machinery/camera/network/research{ - dir = 1 + icon_state = "camera"; + dir = 8 }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"tY" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"atY" = ( /obj/structure/table/steel, /obj/machinery/recharger{ pixel_y = 0 @@ -11707,10 +11861,10 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tZ" = ( +"atZ" = ( /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"ua" = ( +"aua" = ( /obj/structure/cable/green{ icon_state = "0-4" }, @@ -11728,7 +11882,7 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"ub" = ( +"aub" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11748,29 +11902,35 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"uc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"auc" = ( +/obj/structure/table/glass, +/obj/machinery/recharger{ + pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/mauve/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, -/obj/effect/floor_decal/techfloor{ - dir = 6 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"ud" = ( +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"aud" = ( /turf/simulated/shuttle/wall/voidcraft/green{ hard_corner = 1 }, /area/tether/elevator) -"ue" = ( +"aue" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -11779,38 +11939,30 @@ }, /turf/simulated/floor/plating, /area/hallway/lower/third_south) -"uf" = ( +"auf" = ( /obj/structure/grille, /obj/structure/railing, /turf/simulated/floor/tiled/techmaint, /area/hallway/lower/third_south) -"ug" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ +"aug" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uh" = ( +/area/tether/surfacebase/shuttle_pad) +"auh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ui" = ( +/area/tether/surfacebase/surface_three_hall) +"aui" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -11828,8 +11980,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uj" = ( +/area/tether/surfacebase/surface_three_hall) +"auj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/computer/guestpass{ @@ -11840,18 +11992,21 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"uk" = ( +"auk" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"ul" = ( -/obj/structure/table/bench/wooden, -/obj/machinery/camera/network/civilian{ - dir = 9 +"aul" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"um" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aum" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/blast/shutters{ dir = 2; @@ -11862,7 +12017,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"un" = ( +"aun" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/chemical_dispenser/bar_soft/full, @@ -11875,7 +12030,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"uo" = ( +"auo" = ( /obj/machinery/door/blast/shutters{ dir = 2; id = "kitchen"; @@ -11886,7 +12041,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"up" = ( +"aup" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/blast/shutters{ @@ -11898,7 +12053,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"uq" = ( +"auq" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -11918,7 +12073,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"ur" = ( +"aur" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/matter_bin, /obj/item/weapon/stock_parts/matter_bin, @@ -11934,9 +12089,10 @@ /obj/effect/floor_decal/corner/mauve/border{ dir = 9 }, +/obj/machinery/camera/network/research, /turf/simulated/floor/tiled, /area/rnd/research) -"us" = ( +"aus" = ( /obj/structure/cable/green{ icon_state = "0-2" }, @@ -11957,20 +12113,28 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"ut" = ( -/obj/machinery/camera/network/research, -/obj/effect/floor_decal/borderfloor/corner{ +"aut" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/power/smes/buildable{ + charge = 0; + output_attempt = 0; + outputting = 0; + RCon_tag = "Substation - Surface Civilian" + }, +/obj/machinery/camera/network/engineering{ dir = 4 }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"uu" = ( +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"auu" = ( /turf/simulated/open, /area/rnd/staircase/thirdfloor) -"uv" = ( +"auv" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -11985,7 +12149,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"uw" = ( +"auw" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -12006,10 +12170,10 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"ux" = ( +"aux" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/tether/elevator) -"uy" = ( +"auy" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -12028,26 +12192,27 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uz" = ( -/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/machinery/camera/network/tether, +"auz" = ( /obj/item/device/radio/intercom{ dir = 1; pixel_y = 24; req_access = list() }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"uA" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/wardrobe/science_white, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"auA" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -12060,7 +12225,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uB" = ( +"auB" = ( /obj/machinery/light{ dir = 1 }, @@ -12076,7 +12241,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uC" = ( +"auC" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -12095,7 +12260,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uD" = ( +"auD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -12111,7 +12276,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uE" = ( +"auE" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -12128,7 +12293,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uF" = ( +"auF" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -12143,8 +12308,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uG" = ( +/area/tether/surfacebase/surface_three_hall) +"auG" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -12152,26 +12317,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uH" = ( +/area/tether/surfacebase/surface_three_hall) +"auH" = ( /obj/structure/railing{ dir = 8 }, /obj/structure/railing, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"uI" = ( +/area/tether/surfacebase/surface_three_hall) +"auI" = ( /obj/structure/railing, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"uJ" = ( +/area/tether/surfacebase/surface_three_hall) +"auJ" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"uK" = ( +/area/tether/surfacebase/surface_three_hall) +"auK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12183,16 +12348,16 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uL" = ( +/area/tether/surfacebase/surface_three_hall) +"auL" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uM" = ( +/area/tether/surfacebase/surface_three_hall) +"auM" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -12204,8 +12369,8 @@ }, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uN" = ( +/area/tether/surfacebase/surface_three_hall) +"auN" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -12221,14 +12386,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"uO" = ( +"auO" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"uP" = ( +"auP" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ pixel_x = 3 @@ -12239,18 +12404,19 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"uQ" = ( +"auQ" = ( /obj/structure/table/marble, /obj/effect/floor_decal/spline/plain{ dir = 8 }, /obj/machinery/recharger, +/obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"uR" = ( +"auR" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"uS" = ( +"auS" = ( /obj/machinery/computer/security/telescreen/entertainment{ icon_state = "frame"; pixel_x = 0; @@ -12258,24 +12424,24 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"uT" = ( +"auT" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"uU" = ( +"auU" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"uV" = ( +"auV" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/rnd/staircase/thirdfloor) -"uW" = ( +"auW" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -12294,7 +12460,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"uX" = ( +"auX" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/item/weapon/cell/high{ @@ -12322,31 +12488,31 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"uY" = ( +"auY" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/research) -"uZ" = ( +"auZ" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"va" = ( +"ava" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vb" = ( +"avb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vc" = ( +"avc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -12358,7 +12524,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vd" = ( +"avd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12370,7 +12536,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"ve" = ( +"ave" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12382,7 +12548,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vf" = ( +"avf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12398,7 +12564,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vg" = ( +"avg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12410,8 +12576,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vh" = ( +/area/tether/surfacebase/surface_three_hall) +"avh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -12423,27 +12589,24 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 +/area/tether/surfacebase/surface_three_hall) +"avi" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 + dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vj" = ( +/area/tether/surfacebase/surface_three_hall) +"avj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -12458,53 +12621,56 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/tether/surfacebase/surface_three_hall) +"avk" = ( +/obj/structure/disposalpipe/segment, /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/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vm" = ( +/area/tether/surfacebase/surface_three_hall) +"avl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"avm" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vn" = ( +/area/tether/surfacebase/surface_three_hall) +"avn" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12523,45 +12689,44 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vo" = ( +/area/tether/surfacebase/surface_three_hall) +"avo" = ( /obj/structure/sign/directions/evac{ dir = 8 }, /turf/simulated/wall, /area/crew_quarters/bar) -"vp" = ( +"avp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"vq" = ( +"avq" = ( /obj/structure/table/marble, /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"vr" = ( +"avr" = ( /obj/structure/table/marble, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"vs" = ( -/obj/structure/table/marble, -/obj/machinery/camera/network/civilian{ - dir = 9 +"avs" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 0 +/obj/effect/floor_decal/industrial/danger{ + dir = 1 }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"vt" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"avt" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/micro_laser, /obj/item/weapon/stock_parts/micro_laser, @@ -12577,7 +12742,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"vu" = ( +"avu" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12588,27 +12753,27 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"vv" = ( +"avv" = ( /obj/machinery/r_n_d/destructive_analyzer, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"vw" = ( +"avw" = ( /obj/machinery/computer/rdconsole/core, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"vx" = ( +"avx" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"vy" = ( +"avy" = ( /obj/structure/disposalpipe/segment, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vz" = ( +"avz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -12617,7 +12782,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vA" = ( +"avA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -12628,7 +12793,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vB" = ( +"avB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -12637,20 +12802,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vC" = ( +"avC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vD" = ( +"avD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vE" = ( +"avE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -12662,14 +12827,14 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vF" = ( +/area/tether/surfacebase/surface_three_hall) +"avF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"vG" = ( +"avG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12680,8 +12845,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vH" = ( +/area/tether/surfacebase/surface_three_hall) +"avH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12695,16 +12860,16 @@ sortType = "Hydroponics" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vI" = ( +/area/tether/surfacebase/surface_three_hall) +"avI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vJ" = ( +/area/tether/surfacebase/surface_three_hall) +"avJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -12717,28 +12882,28 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vK" = ( +/area/tether/surfacebase/surface_three_hall) +"avK" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"vL" = ( +"avL" = ( /obj/structure/table/bench/wooden, /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"vM" = ( +"avM" = ( /obj/structure/table/bench/wooden, /obj/machinery/status_display{ pixel_y = 30 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"vN" = ( +"avN" = ( /obj/effect/floor_decal/corner/beige{ dir = 9 }, @@ -12748,11 +12913,11 @@ /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"vO" = ( +"avO" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"vP" = ( +"avP" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -12761,7 +12926,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"vQ" = ( +"avQ" = ( /obj/structure/table/standard, /obj/machinery/recharger{ pixel_y = 0 @@ -12774,7 +12939,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"vR" = ( +"avR" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -12786,7 +12951,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vS" = ( +"avS" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/scanning_module{ pixel_x = 2; @@ -12811,7 +12976,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"vT" = ( +"avT" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -12826,13 +12991,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"vU" = ( +"avU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"vV" = ( +"avV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12842,7 +13007,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"vW" = ( +"avW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12852,7 +13017,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"vX" = ( +"avX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12867,30 +13032,30 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"vY" = ( +"avY" = ( /obj/structure/sign/deck/third, /turf/simulated/shuttle/wall/voidcraft/green{ hard_corner = 1 }, /area/tether/elevator) -"vZ" = ( +"avZ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wa" = ( +"awa" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wb" = ( +"awb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"wc" = ( +"awc" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, @@ -12902,7 +13067,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wd" = ( +"awd" = ( /obj/machinery/librarycomp{ pixel_y = 0 }, @@ -12913,7 +13078,7 @@ /obj/structure/table/woodentable, /turf/simulated/floor/carpet, /area/library) -"we" = ( +"awe" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -12928,7 +13093,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wf" = ( +"awf" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -12939,7 +13104,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wg" = ( +"awg" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -12954,7 +13119,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wh" = ( +"awh" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/structure/cable/green{ d1 = 4; @@ -12969,24 +13134,58 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"wi" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/carry, -/area/shuttle/tether/surface) -"wm" = ( +"awi" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awj" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awl" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awm" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"wo" = ( +"awn" = ( +/turf/simulated/wall/r_wall, +/area/bridge_hallway) +"awo" = ( /obj/machinery/light_switch{ pixel_x = 25 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"wp" = ( +"awp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -12996,8 +13195,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wq" = ( +/area/tether/surfacebase/surface_three_hall) +"awq" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, @@ -13008,8 +13207,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wr" = ( +/area/tether/surfacebase/surface_three_hall) +"awr" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, @@ -13020,8 +13219,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ws" = ( +/area/tether/surfacebase/surface_three_hall) +"aws" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -13035,19 +13234,19 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wt" = ( +/area/tether/surfacebase/surface_three_hall) +"awt" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wu" = ( +/area/tether/surfacebase/surface_three_hall) +"awu" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"wv" = ( +"awv" = ( /obj/effect/floor_decal/corner/beige{ dir = 10 }, @@ -13059,14 +13258,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"ww" = ( +"aww" = ( /obj/effect/floor_decal/corner/beige{ dir = 10 }, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"wx" = ( +"awx" = ( /obj/structure/disposalpipe/segment, /obj/machinery/vending/fitness, /obj/effect/floor_decal/borderfloor{ @@ -13086,7 +13285,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"wy" = ( +"awy" = ( /obj/structure/table/reinforced, /obj/structure/disposalpipe/segment{ dir = 4 @@ -13105,7 +13304,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/research) -"wz" = ( +"awz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13125,7 +13324,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wA" = ( +"awA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -13152,7 +13351,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"wB" = ( +"awB" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -13168,7 +13367,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"wC" = ( +"awC" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -13184,7 +13383,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wD" = ( +"awD" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 2; @@ -13210,7 +13409,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"wE" = ( +"awE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13232,7 +13431,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"wF" = ( +"awF" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -13244,7 +13443,7 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wG" = ( +"awG" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -13260,7 +13459,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wH" = ( +"awH" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -13276,10 +13475,33 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wJ" = ( +"awI" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/command{ + req_access = list(19) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/bridge_hallway) +"awJ" = ( /turf/simulated/wall, /area/maintenance/lower/atrium) -"wK" = ( +"awK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13302,14 +13524,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"wL" = ( +"awL" = ( /obj/machinery/light/small{ dir = 4 }, /obj/machinery/recharge_station, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"wM" = ( +"awM" = ( /obj/machinery/light/small{ dir = 4 }, @@ -13318,7 +13540,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"wN" = ( +"awN" = ( /obj/structure/sign/directions/medical{ dir = 4; pixel_y = 8 @@ -13337,7 +13559,7 @@ }, /turf/simulated/wall, /area/maintenance/lower/atrium) -"wO" = ( +"awO" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -13352,23 +13574,23 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"wP" = ( +"awP" = ( /turf/simulated/wall, /area/hydroponics) -"wQ" = ( +"awQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/hydroponics) -"wR" = ( +"awR" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"wS" = ( +"awS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -13385,13 +13607,13 @@ /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wT" = ( +"awT" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wU" = ( +"awU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13413,7 +13635,7 @@ /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wV" = ( +"awV" = ( /obj/structure/table/bench/wooden, /obj/machinery/light{ dir = 8; @@ -13422,7 +13644,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"wW" = ( +"awW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; @@ -13446,7 +13668,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"wX" = ( +"awX" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -13467,17 +13689,17 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"wY" = ( +"awY" = ( /obj/machinery/r_n_d/circuit_imprinter, /obj/item/weapon/reagent_containers/glass/beaker/sulphuric, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"wZ" = ( +"awZ" = ( /obj/machinery/hologram/holopad, /obj/machinery/r_n_d/protolathe, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"xa" = ( +"axa" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -13486,7 +13708,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"xb" = ( +"axb" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -13498,7 +13720,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xc" = ( +"axc" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -13516,14 +13738,14 @@ /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xd" = ( +"axd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xe" = ( +"axe" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -13541,23 +13763,34 @@ /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xg" = ( +"axf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Private Restroom"; + req_access = newlist(); + req_one_access = newlist() + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"axg" = ( /turf/simulated/wall, /area/library) -"xh" = ( +"axh" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; dir = 2 }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"xi" = ( +"axi" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/library) -"xj" = ( +"axj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -13569,11 +13802,11 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"xk" = ( +"axk" = ( /obj/structure/sign/department/biblio, /turf/simulated/wall, /area/library) -"xl" = ( +"axl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -13586,7 +13819,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"xm" = ( +"axm" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -13599,7 +13832,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"xn" = ( +"axn" = ( /obj/machinery/floodlight, /obj/machinery/alarm{ dir = 8; @@ -13615,7 +13848,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"xo" = ( +"axo" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -13625,7 +13858,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xp" = ( +"axp" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -13636,7 +13869,7 @@ /obj/machinery/smartfridge, /turf/simulated/floor/tiled, /area/hydroponics) -"xq" = ( +"axq" = ( /obj/machinery/honey_extractor, /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -13646,7 +13879,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xr" = ( +"axr" = ( /obj/machinery/smartfridge/drying_rack, /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -13656,7 +13889,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xs" = ( +"axs" = ( /obj/item/bee_pack, /obj/item/honey_frame, /obj/item/honey_frame, @@ -13678,7 +13911,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xt" = ( +"axt" = ( /obj/machinery/vending/hydronutrients, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -13688,13 +13921,13 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xu" = ( +"axu" = ( /obj/structure/sign/directions/evac{ dir = 1 }, /turf/simulated/wall, /area/hydroponics) -"xv" = ( +"axv" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -13709,7 +13942,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xw" = ( +"axw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13729,11 +13962,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xx" = ( +"axx" = ( /obj/structure/flora/pottedplant, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"xy" = ( +"axy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -13755,7 +13988,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xz" = ( +"axz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -13765,25 +13998,19 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"xA" = ( +"axA" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"xB" = ( -/obj/machinery/camera/network/research{ - dir = 8 +"axB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"xC" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"axC" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil, /obj/item/stack/cable_coil{ @@ -13806,7 +14033,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"xD" = ( +"axD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -13831,7 +14058,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"xE" = ( +"axE" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 8 }, @@ -13840,14 +14067,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"xF" = ( +"axF" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1" }, /turf/simulated/open, /area/rnd/staircase/thirdfloor) -"xG" = ( +"axG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ dir = 8; @@ -13869,7 +14096,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"xH" = ( +"axH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13897,7 +14124,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"xI" = ( +"axI" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -13910,7 +14137,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"xJ" = ( +"axJ" = ( /obj/structure/table/standard, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = 2; @@ -13931,7 +14158,7 @@ /obj/effect/floor_decal/corner/mauve/bordercorner2, /turf/simulated/floor/tiled, /area/rnd/research) -"xK" = ( +"axK" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 @@ -13947,7 +14174,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xL" = ( +"axL" = ( /obj/structure/table/standard, /obj/structure/reagent_dispensers/acid{ density = 0; @@ -13965,7 +14192,7 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled, /area/rnd/research) -"xM" = ( +"axM" = ( /obj/structure/table/standard, /obj/item/weapon/disk/tech_disk{ pixel_x = 0; @@ -13991,7 +14218,7 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled, /area/rnd/research) -"xN" = ( +"axN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -14004,45 +14231,29 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"xO" = ( +"axO" = ( /obj/structure/railing, /turf/simulated/open, /area/rnd/staircase/thirdfloor) -"xP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/mauve/border{ +"axP" = ( +/obj/machinery/holoplant, +/obj/effect/floor_decal/borderfloorblack{ dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/camera/network/research{ + icon_state = "camera"; dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"xQ" = ( +/area/rnd/outpost/xenobiology/outpost_hallway) +"axQ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xR" = ( +"axR" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -14058,7 +14269,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xS" = ( +"axS" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Library" }, @@ -14072,7 +14283,7 @@ dir = 8 }, /area/library) -"xT" = ( +"axT" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ dir = 4 @@ -14082,7 +14293,7 @@ dir = 4 }, /area/library) -"xU" = ( +"axU" = ( /obj/structure/bookcase{ desc = "There appears to be a shrine to WGW at the back..."; name = "Forbidden Knowledge" @@ -14091,7 +14302,7 @@ /obj/item/weapon/book/manual/nuclear, /turf/simulated/floor/carpet, /area/tether/surfacebase/library/study) -"xV" = ( +"axV" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -14103,7 +14314,7 @@ /obj/item/weapon/pen/invisible, /turf/simulated/floor/carpet, /area/tether/surfacebase/library/study) -"xW" = ( +"axW" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -14118,7 +14329,7 @@ }, /turf/simulated/floor/carpet, /area/tether/surfacebase/library/study) -"xX" = ( +"axX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ icon_state = "1-8" @@ -14133,7 +14344,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"xY" = ( +"axY" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -14157,20 +14368,20 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xZ" = ( +"axZ" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hydroponics) -"ya" = ( +"aya" = ( /turf/simulated/floor/tiled, /area/hydroponics) -"yb" = ( +"ayb" = ( /obj/effect/landmark/start{ name = "Gardener" }, /turf/simulated/floor/tiled, /area/hydroponics) -"yc" = ( +"ayc" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -14179,14 +14390,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"yd" = ( +"ayd" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"ye" = ( +"aye" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14209,7 +14420,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"yf" = ( +"ayf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -14217,27 +14428,27 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yg" = ( +"ayg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yh" = ( +"ayh" = ( /obj/structure/table/bench/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yi" = ( +"ayi" = ( /obj/structure/disposalpipe/sortjunction{ name = "Research"; sortType = "Research" }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"yj" = ( +"ayj" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -14246,14 +14457,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"yk" = ( +"ayk" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/rnd/staircase/thirdfloor) -"yl" = ( +"ayl" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -14278,19 +14489,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"ym" = ( +"aym" = ( /obj/machinery/autolathe{ hacked = 1 }, /turf/simulated/floor/holofloor/tiled/dark, /area/rnd/research) -"yn" = ( +"ayn" = ( /obj/structure/sign/directions/evac{ dir = 1 }, /turf/simulated/wall, /area/rnd/research) -"yo" = ( +"ayo" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_research{ name = "Research and Development"; @@ -14298,7 +14509,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"yp" = ( +"ayp" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/surgery, /obj/item/weapon/paper{ @@ -14310,13 +14521,13 @@ /obj/item/device/robotanalyzer, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"yq" = ( +"ayq" = ( /obj/machinery/optable{ name = "Robotics Operating Table" }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"yr" = ( +"ayr" = ( /obj/structure/extinguisher_cabinet{ dir = 4; icon_state = "extinguisher_closed"; @@ -14344,7 +14555,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"ys" = ( +"ays" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 }, @@ -14353,7 +14564,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yt" = ( +"ayt" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -14378,7 +14589,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yu" = ( +"ayu" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -14403,7 +14614,7 @@ /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yv" = ( +"ayv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14417,47 +14628,40 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/tether{ - dir = 9 +"ayw" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"yy" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"ayx" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/heads/hop) +"ayy" = ( /obj/structure/table/woodentable, -/obj/item/device/camera_film, -/obj/item/device/camera_film, +/obj/machinery/libraryscanner, /turf/simulated/floor/carpet, /area/library) -"yz" = ( +"ayz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) -"yA" = ( +"ayA" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/library) -"yB" = ( +"ayB" = ( /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"yC" = ( +"ayC" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -14470,7 +14674,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"yD" = ( +"ayD" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/green{ @@ -14481,7 +14685,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"yE" = ( +"ayE" = ( /obj/effect/floor_decal/corner/green{ dir = 5 }, @@ -14490,7 +14694,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"yF" = ( +"ayF" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/green{ dir = 10 @@ -14500,10 +14704,10 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"yG" = ( +"ayG" = ( /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"yH" = ( +"ayH" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -14528,7 +14732,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yI" = ( +"ayI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -14536,20 +14740,20 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yJ" = ( +"ayJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yK" = ( +"ayK" = ( /obj/structure/table/bench/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yL" = ( +"ayL" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -14563,7 +14767,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yM" = ( +"ayM" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ icon_state = "frame"; @@ -14572,16 +14776,20 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yN" = ( +"ayN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"yO" = ( +"ayO" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -14604,16 +14812,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yP" = ( +"ayP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"yQ" = ( +"ayQ" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -14632,7 +14843,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yR" = ( +"ayR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14656,7 +14867,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yS" = ( +"ayS" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -14674,13 +14885,16 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yT" = ( +"ayT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"yU" = ( +"ayU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14697,7 +14911,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yV" = ( +"ayV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14719,7 +14933,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yW" = ( +"ayW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14740,7 +14954,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yX" = ( +"ayX" = ( /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 @@ -14771,7 +14985,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"yY" = ( +"ayY" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -14789,7 +15003,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"yZ" = ( +"ayZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 @@ -14811,7 +15025,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"za" = ( +"aza" = ( /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 @@ -14835,7 +15049,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zb" = ( +"azb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14853,7 +15067,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zc" = ( +"azc" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -14862,7 +15076,7 @@ }, /turf/simulated/floor/plating, /area/rnd/research) -"zd" = ( +"azd" = ( /obj/machinery/disposal, /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -14883,7 +15097,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"ze" = ( +"aze" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14894,7 +15108,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zf" = ( +"azf" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/mauve/bordercorner, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -14905,7 +15119,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zg" = ( +"azg" = ( /obj/machinery/newscaster{ pixel_x = 25 }, @@ -14924,7 +15138,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"zh" = ( +"azh" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -14935,7 +15149,7 @@ }, /turf/simulated/floor/wood, /area/library) -"zi" = ( +"azi" = ( /obj/structure/bed/chair/comfy/brown, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -14954,7 +15168,7 @@ }, /turf/simulated/floor/carpet, /area/tether/surfacebase/library/study) -"zj" = ( +"azj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -14965,7 +15179,7 @@ }, /turf/simulated/floor/carpet, /area/tether/surfacebase/library/study) -"zk" = ( +"azk" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, @@ -14980,14 +15194,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"zl" = ( +"azl" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, /obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"zm" = ( +"azm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15001,7 +15218,7 @@ }, /turf/simulated/floor/carpet, /area/tether/surfacebase/library/study) -"zn" = ( +"azn" = ( /obj/random/tech_supply, /obj/structure/table/steel, /obj/random/maintenance/engineering, @@ -15014,10 +15231,10 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"zo" = ( +"azo" = ( /turf/simulated/wall, /area/rnd/research/researchdivision) -"zp" = ( +"azp" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -15031,7 +15248,7 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"zq" = ( +"azq" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -15048,24 +15265,21 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/camera/network/civilian{ +"azr" = ( +/obj/structure/bed/chair/wood{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/hydroponics) -"zs" = ( +/area/rnd/outpost/xenobiology/outpost_breakroom) +"azs" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -15080,41 +15294,29 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"zt" = ( +"azt" = ( /obj/structure/sign/botany, /turf/simulated/wall, /area/hydroponics) -"zu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"azu" = ( +/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/lime/border{ - dir = 8 +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ - dir = 10 - }, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"zv" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"azv" = ( /obj/structure/sign/double/barsign{ dir = 8 }, /turf/simulated/wall, /area/crew_quarters/bar) -"zw" = ( +"azw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15130,7 +15332,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zx" = ( +"azx" = ( /obj/structure/table/bench/wooden, /obj/machinery/light{ dir = 4; @@ -15143,7 +15345,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"zy" = ( +"azy" = ( /obj/structure/closet/firecloset, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -15164,7 +15366,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zz" = ( +"azz" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -15192,7 +15394,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zA" = ( +"azA" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /obj/machinery/light, @@ -15207,10 +15409,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zB" = ( +"azB" = ( /turf/simulated/wall, /area/rnd/research_foyer) -"zC" = ( +"azC" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -15235,13 +15437,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zD" = ( +"azD" = ( /turf/simulated/wall, /area/assembly/chargebay) -"zE" = ( +"azE" = ( /turf/simulated/wall, /area/assembly/robotics) -"zF" = ( +"azF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -15251,14 +15453,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"zG" = ( +"azG" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_research{ name = "Research Staircase" }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"zH" = ( +"azH" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -15267,7 +15472,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"zI" = ( +"azI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -15282,7 +15487,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"zJ" = ( +"azJ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15296,7 +15501,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zK" = ( +"azK" = ( /obj/structure/cable/green{ icon_state = "0-8" }, @@ -15319,10 +15524,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zL" = ( +"azL" = ( /turf/simulated/wall/r_wall, /area/rnd/research/testingrange) -"zM" = ( +"azM" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -15349,14 +15554,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zN" = ( +"azN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"zO" = ( +"azO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -15379,7 +15584,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"zP" = ( +"azP" = ( /obj/machinery/door/morgue{ dir = 2; name = "Private Study"; @@ -15399,7 +15604,7 @@ }, /turf/simulated/floor/carpet, /area/library) -"zQ" = ( +"azQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15413,7 +15618,7 @@ }, /turf/simulated/floor/carpet, /area/library) -"zR" = ( +"azR" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -15436,7 +15641,7 @@ }, /turf/simulated/floor/carpet, /area/library) -"zS" = ( +"azS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -15450,32 +15655,25 @@ }, /turf/simulated/floor/wood, /area/library) -"zT" = ( +"azT" = ( /turf/simulated/floor/wood, /area/library) -"zU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +"azU" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 0; + pixel_y = -28 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/camera/network/research, /turf/simulated/floor/tiled, -/area/rnd/research_foyer) -"zV" = ( -/obj/machinery/libraryscanner, -/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"azV" = ( +/obj/structure/table/woodentable, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/taperecorder, +/turf/simulated/floor/carpet, /area/library) -"zW" = ( +"azW" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -15483,7 +15681,7 @@ }, /turf/simulated/floor/wood, /area/library) -"zX" = ( +"azX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -15506,7 +15704,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"zY" = ( +"azY" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -15519,7 +15717,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"zZ" = ( +"azZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -15531,11 +15729,11 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Aa" = ( +"aAa" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hydroponics) -"Ab" = ( +"aAb" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, @@ -15547,7 +15745,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Ac" = ( +"aAc" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -15561,7 +15759,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/hydroponics) -"Ad" = ( +"aAd" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15575,7 +15773,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ae" = ( +"aAe" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15583,7 +15781,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Af" = ( +"aAf" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -15606,9 +15804,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ag" = ( +"aAg" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -15628,7 +15829,7 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"Ah" = ( +"aAh" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -15641,7 +15842,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Ai" = ( +"aAi" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -15654,18 +15855,23 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Aj" = ( +"aAj" = ( /obj/machinery/light/flamp, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Ak" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 +"aAk" = ( +/obj/structure/flora/pottedplant/unusual, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/machinery/camera/network/research{ + dir = 1 }, -/obj/structure/flora/pottedplant, /turf/simulated/floor/wood, -/area/crew_quarters/bar) -"Al" = ( +/area/rnd/outpost/xenobiology/outpost_office) +"aAl" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15675,7 +15881,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Am" = ( +"aAm" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -15684,31 +15890,39 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"An" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"aAn" = ( +/obj/effect/floor_decal/borderfloor{ + 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/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 }, /obj/structure/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 + dir = 1 }, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"Ao" = ( +/area/tether/surfacebase/surface_three_hall) +"aAo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Ap" = ( +"aAp" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -15730,7 +15944,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Aq" = ( +"aAq" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -15748,31 +15962,30 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ar" = ( -/obj/structure/disposalpipe/segment, +"aAr" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 }, +/obj/structure/disposalpipe/sortjunction{ + name = "Xenobiology"; + sortType = "Xenobiology" + }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"As" = ( +"aAs" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"At" = ( -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"Au" = ( +"aAt" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/paperplane, +/obj/machinery/camera/network/research, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aAu" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -15793,7 +16006,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Av" = ( +"aAv" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -15809,7 +16022,7 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner2, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Aw" = ( +"aAw" = ( /obj/structure/table/woodentable, /obj/item/device/taperecorder{ pixel_y = 0 @@ -15828,7 +16041,7 @@ /obj/item/device/tape, /turf/simulated/floor/carpet, /area/tether/surfacebase/library/study) -"Ax" = ( +"aAx" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -15845,7 +16058,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ay" = ( +"aAy" = ( /obj/structure/table/woodentable, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -15855,10 +16068,10 @@ /obj/machinery/light/small, /turf/simulated/floor/carpet, /area/tether/surfacebase/library/study) -"Az" = ( +"aAz" = ( /turf/simulated/floor/carpet, /area/library) -"AA" = ( +"aAA" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -15866,12 +16079,12 @@ }, /turf/simulated/floor/carpet, /area/library) -"AB" = ( +"aAB" = ( /turf/simulated/wall, /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"AC" = ( +"aAC" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -15891,7 +16104,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"AD" = ( +"aAD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15901,7 +16114,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"AE" = ( +"aAE" = ( /obj/machinery/door/airlock/maintenance/common{ name = "Hydroponics Maintenance"; req_access = list(35) @@ -15926,7 +16139,7 @@ }, /turf/simulated/floor/plating, /area/hydroponics) -"AF" = ( +"aAF" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -15946,7 +16159,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AG" = ( +"aAG" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/structure/cable/green{ d1 = 4; @@ -15968,7 +16181,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AH" = ( +"aAH" = ( /obj/effect/floor_decal/corner/green{ dir = 5 }, @@ -15988,7 +16201,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AI" = ( +"aAI" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/structure/cable/green{ d1 = 4; @@ -16009,7 +16222,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AJ" = ( +"aAJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16023,7 +16236,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AK" = ( +"aAK" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -16049,7 +16262,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AL" = ( +"aAL" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -16080,7 +16293,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"AM" = ( +"aAM" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -16094,23 +16307,19 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"AN" = ( +"aAN" = ( /turf/simulated/open, /area/hallway/lower/third_south) -"AO" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"AP" = ( +"aAO" = ( +/obj/machinery/recharge_station, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aAP" = ( /obj/structure/bed/chair/wood, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"AQ" = ( +"aAQ" = ( /obj/machinery/newscaster{ pixel_x = 0; pixel_y = 30 @@ -16118,11 +16327,14 @@ /obj/structure/table/bench/wooden, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"AR" = ( +"aAR" = ( /obj/machinery/computer/arcade, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"AS" = ( +"aAS" = ( /obj/machinery/light{ dir = 1 }, @@ -16140,23 +16352,21 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"AT" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 +"aAT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"AU" = ( +/area/rnd/staircase/thirdfloor) +"aAU" = ( /obj/structure/bed/chair, /obj/machinery/firealarm{ dir = 2; @@ -16174,7 +16384,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"AV" = ( +"aAV" = ( /obj/structure/closet{ name = "materials" }, @@ -16203,7 +16413,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"AW" = ( +"aAW" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -16224,7 +16434,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"AX" = ( +"aAX" = ( /obj/structure/closet{ name = "mechanical equipment" }, @@ -16267,7 +16477,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"AY" = ( +"aAY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -16292,7 +16502,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"AZ" = ( +"aAZ" = ( /obj/structure/closet{ name = "robotics parts" }, @@ -16363,20 +16573,26 @@ /obj/effect/floor_decal/corner/mauve/bordercorner2{ dir = 5 }, +/obj/machinery/camera/network/research, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ba" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera/network/research, -/obj/effect/floor_decal/borderfloor{ - dir = 9 +"aBa" = ( +/obj/structure/table/standard, +/obj/item/device/lightreplacer, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/apc; + dir = 8; + name = "west bump"; + pixel_x = -28 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "0-4" }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"Bb" = ( +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aBb" = ( /obj/structure/table/reinforced, /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -16392,7 +16608,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Bc" = ( +"aBc" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; pixel_y = 28 @@ -16413,7 +16629,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Bd" = ( +"aBd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -16421,7 +16637,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Be" = ( +"aBe" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -16441,33 +16657,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"Bf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/research, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"Bg" = ( +"aBf" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aBg" = ( /obj/structure/cable/green{ icon_state = "0-4" }, @@ -16492,7 +16687,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"Bh" = ( +"aBh" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16503,7 +16698,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"Bi" = ( +"aBi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16522,20 +16717,18 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Bj" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +"aBj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Research Staircase" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"Bk" = ( +"aBk" = ( /obj/structure/extinguisher_cabinet{ dir = 8; icon_state = "extinguisher_closed"; @@ -16556,23 +16749,40 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Bl" = ( +"aBl" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"Bm" = ( +"aBm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"Bn" = ( +"aBn" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"Bp" = ( +"aBo" = ( +/obj/machinery/door/airlock/command{ + id_tag = "captaindoor"; + name = "Colony Director's Office"; + req_access = list(20) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aBp" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16594,80 +16804,66 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Bq" = ( -/obj/structure/table/woodentable, -/obj/item/device/taperecorder, -/turf/simulated/floor/carpet, +"aBq" = ( +/obj/item/device/radio/intercom{ + pixel_x = 0; + pixel_y = -28 + }, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/wood, /area/library) -"Br" = ( +"aBr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) -"Bs" = ( +"aBs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"Bt" = ( +"aBt" = ( /obj/structure/bed/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/wood, /area/library) -"Bu" = ( -/obj/structure/table/glass, -/obj/machinery/recharger{ - pixel_y = 0 +"aBu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/mauve/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"Bv" = ( +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aBv" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/wood, /area/library) -"Bw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +"aBw" = ( +/obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 2; + icon_state = "1-2" }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_research{ + name = "Research Staircase" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"Bx" = ( +/area/rnd/staircase/thirdfloor) +"aBx" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -16686,20 +16882,20 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"By" = ( +"aBy" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/hydroponics) -"Bz" = ( +"aBz" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/hydroponics) -"BA" = ( +"aBA" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass{ name = "Hydroponics"; @@ -16708,7 +16904,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/hydroponics) -"BB" = ( +"aBB" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 1 }, @@ -16717,16 +16913,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"BC" = ( +"aBC" = ( /obj/structure/table/gamblingtable, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"BD" = ( +"aBD" = ( /obj/structure/table/gamblingtable, /obj/item/weapon/storage/pill_bottle/dice, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"BE" = ( +"aBE" = ( /obj/structure/bed/chair/wood{ dir = 8 }, @@ -16737,7 +16933,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"BF" = ( +"aBF" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -16751,11 +16947,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"BG" = ( +"aBG" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"BH" = ( +"aBH" = ( /obj/structure/table/glass, /obj/machinery/recharger{ pixel_y = 0 @@ -16773,7 +16969,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"BI" = ( +"aBI" = ( /obj/structure/table/reinforced, /obj/structure/cable/green{ d2 = 8; @@ -16795,19 +16991,21 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"BJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/machinery/camera/network/research, -/obj/effect/floor_decal/borderfloor{ - dir = 5 +"aBJ" = ( +/obj/machinery/shower{ + dir = 4; + icon_state = "shower"; + pixel_x = 5; + pixel_y = 0 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 +/obj/structure/curtain/open/shower, +/obj/machinery/camera/network/research{ + dir = 1; + icon_state = "camera" }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"BK" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aBK" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/borderfloorblack, /obj/machinery/door/airlock/glass_research{ @@ -16839,35 +17037,22 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"BL" = ( +"aBL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"BM" = ( +"aBM" = ( +/obj/machinery/hologram/holopad, /obj/machinery/camera/network/research{ + icon_state = "camera"; dir = 8 }, -/obj/structure/sign/department/robo{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"BN" = ( +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aBN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16878,13 +17063,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"BO" = ( +"aBO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"BP" = ( +"aBP" = ( /obj/structure/lattice, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -16908,16 +17093,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/open, +/turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"BQ" = ( +"aBQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"BR" = ( +"aBR" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, @@ -16932,7 +17117,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"BS" = ( +"aBS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16955,7 +17140,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"BT" = ( +"aBT" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/ai_status_display{ pixel_y = 30 @@ -16967,7 +17152,7 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"BU" = ( +"aBU" = ( /obj/structure/table/reinforced, /obj/machinery/light{ dir = 8; @@ -16983,7 +17168,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"BV" = ( +"aBV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -16992,10 +17177,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"BW" = ( +"aBW" = ( /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"BX" = ( +"aBX" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -17015,7 +17200,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"BY" = ( +"aBY" = ( /obj/structure/sign/department/sci{ pixel_x = -32; pixel_y = 0 @@ -17034,7 +17219,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"BZ" = ( +"aBZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 2; @@ -17049,12 +17234,12 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Ca" = ( +"aCa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Cb" = ( +"aCb" = ( /obj/structure/table/reinforced, /obj/item/weapon/paper{ desc = ""; @@ -17079,13 +17264,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Cc" = ( +"aCc" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Cd" = ( +"aCd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17116,7 +17301,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"Ce" = ( +"aCe" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -17137,12 +17322,15 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Cf" = ( +"aCf" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/camera/network/research{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Cg" = ( +"aCg" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -17163,7 +17351,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Ch" = ( +"aCh" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -17179,7 +17367,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"Ci" = ( +"aCi" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -17195,7 +17383,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/hydroponics) -"Cj" = ( +"aCj" = ( /obj/machinery/biogenerator, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -17211,7 +17399,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Ck" = ( +"aCk" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -17235,19 +17423,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Cl" = ( +"aCl" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Cm" = ( +"aCm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Cn" = ( +"aCn" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -17268,12 +17456,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Co" = ( +"aCo" = ( /obj/structure/table/gamblingtable, /obj/item/weapon/deck/cards, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Cp" = ( +"aCp" = ( /obj/structure/bed/chair/wood{ dir = 8 }, @@ -17284,7 +17472,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Cq" = ( +"aCq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -17292,7 +17480,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Cr" = ( +"aCr" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -17303,33 +17491,39 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Cs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"aCs" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 9 }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Ct" = ( +"aCt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Cu" = ( +"aCu" = ( /obj/machinery/r_n_d/circuit_imprinter, /obj/item/weapon/reagent_containers/glass/beaker/sulphuric, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Cv" = ( +"aCv" = ( /obj/machinery/pros_fabricator{ dir = 1 }, @@ -17342,7 +17536,7 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Cw" = ( +"aCw" = ( /obj/machinery/autolathe{ hacked = 1 }, @@ -17364,7 +17558,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Cx" = ( +"aCx" = ( /obj/structure/table/reinforced, /obj/machinery/light_switch{ pixel_x = -25 @@ -17379,11 +17573,11 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Cy" = ( +"aCy" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Cz" = ( +"aCz" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -17401,7 +17595,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"CA" = ( +"aCA" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -17416,18 +17610,97 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"CB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, +"aCB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"CC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4, +/area/rnd/research/researchdivision) +"aCC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aCD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aCE" = ( +/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/machinery/camera/network/tether{ + dir = 9 + }, /turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"CD" = ( +/area/hallway/lower/third_south) +"aCF" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/library) +"aCG" = ( +/obj/machinery/bookbinder{ + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/library) +"aCH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/library) +"aCI" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -17441,57 +17714,11 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"CE" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"CF" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/library) -"CG" = ( -/obj/machinery/bookbinder{ - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/library) -"CH" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/library) -"CI" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_research{ - name = "Weapons Testing Range"; - req_access = list(47) - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"CJ" = ( +"aCJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) -"CK" = ( +"aCK" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -17508,7 +17735,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"CL" = ( +"aCL" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Surface Civilian Substation Bypass" }, @@ -17516,7 +17743,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"CM" = ( +"aCM" = ( /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -17533,7 +17760,7 @@ }, /turf/simulated/floor/carpet, /area/tether/surfacebase/library/study) -"CN" = ( +"aCN" = ( /obj/structure/noticeboard{ pixel_y = -26 }, @@ -17552,10 +17779,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"CO" = ( +"aCO" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_stairs) -"CP" = ( +"aCP" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ icon_state = "1-8" @@ -17574,7 +17801,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"CQ" = ( +"aCQ" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -17595,7 +17822,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"CR" = ( +"aCR" = ( /obj/machinery/seed_extractor, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -17605,7 +17832,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"CS" = ( +"aCS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -17624,13 +17851,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"CT" = ( +"aCT" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"CU" = ( +"aCU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17650,7 +17877,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"CV" = ( +"aCV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17668,12 +17895,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"CW" = ( +"aCW" = ( /obj/structure/table/gamblingtable, /obj/item/weapon/storage/pill_bottle/dice_nerd, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"CX" = ( +"aCX" = ( /obj/structure/bed/chair/wood{ dir = 8 }, @@ -17682,7 +17909,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"CY" = ( +"aCY" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -17691,7 +17918,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"CZ" = ( +"aCZ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -17703,11 +17930,11 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"Da" = ( +"aDa" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"Db" = ( +"aDb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -17719,27 +17946,27 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"Dc" = ( +"aDc" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"Dd" = ( +"aDd" = ( /obj/machinery/light{ dir = 1 }, /obj/structure/table/bench/wooden, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"De" = ( +"aDe" = ( /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"Df" = ( +"aDf" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"Dg" = ( +"aDg" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -17749,7 +17976,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dh" = ( +"aDh" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -17758,15 +17985,16 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Di" = ( +"aDi" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 }, /obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/camera/network/civilian, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"Dj" = ( +"aDj" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -17775,7 +18003,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dk" = ( +"aDk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -17794,7 +18022,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dl" = ( +"aDl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17814,7 +18042,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dm" = ( +"aDm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -17826,7 +18054,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dn" = ( +"aDn" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -17835,23 +18063,17 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Do" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 +"aDo" = ( +/obj/structure/table/standard, +/obj/item/device/slime_scanner, +/obj/item/device/slime_scanner, +/obj/item/device/multitool, +/obj/machinery/camera/network/research{ + dir = 1 }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"Dp" = ( +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aDp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -17870,7 +18092,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"Dq" = ( +"aDq" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -17879,7 +18101,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"Dr" = ( +"aDr" = ( /obj/structure/table/woodentable, /obj/random/maintenance/clean, /obj/effect/floor_decal/borderfloor/corner{ @@ -17897,10 +18119,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Ds" = ( +"aDs" = ( /turf/simulated/open, /area/tether/surfacebase/public_garden_three) -"Dt" = ( +"aDt" = ( /obj/structure/table/woodentable, /obj/item/weapon/material/minihoe, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17917,11 +18139,11 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Du" = ( +"aDu" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dv" = ( +"aDv" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -17931,7 +18153,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dw" = ( +"aDw" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -17950,7 +18172,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dx" = ( +"aDx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -17970,7 +18192,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dy" = ( +"aDy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -17995,7 +18217,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/public_garden_three) -"Dz" = ( +"aDz" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -18004,7 +18226,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"DA" = ( +"aDA" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -18013,7 +18235,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DB" = ( +"aDB" = ( /obj/structure/table/woodentable, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -18030,7 +18252,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DC" = ( +"aDC" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/glass/bucket, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -18050,7 +18272,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DD" = ( +"aDD" = ( /obj/structure/table/bench/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -18060,7 +18282,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DE" = ( +"aDE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -18071,7 +18293,7 @@ /obj/effect/floor_decal/corner/lime/bordercorner, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DF" = ( +"aDF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -18083,7 +18305,7 @@ /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DG" = ( +"aDG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -18099,7 +18321,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DH" = ( +"aDH" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/zpipe/down/supply{ @@ -18114,7 +18336,7 @@ }, /turf/simulated/open, /area/tether/surfacebase/public_garden_three) -"DI" = ( +"aDI" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 1 }, @@ -18126,7 +18348,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"DJ" = ( +"aDJ" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -18136,7 +18358,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DK" = ( +"aDK" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -18151,7 +18373,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DL" = ( +"aDL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -18168,7 +18390,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DM" = ( +"aDM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -18176,12 +18398,12 @@ /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DN" = ( +"aDN" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DO" = ( +"aDO" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -18193,16 +18415,19 @@ /obj/effect/floor_decal/corner/lime/border{ dir = 6 }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DP" = ( +"aDP" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"DQ" = ( +"aDQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -18212,7 +18437,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"DR" = ( +"aDR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -18224,7 +18449,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DS" = ( +"aDS" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -18234,16 +18459,21 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"DT" = ( +"aDT" = ( /obj/machinery/light, /obj/structure/table/bench/wooden, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"DU" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"DV" = ( +"aDU" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aDV" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -18260,8 +18490,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"DW" = ( +/area/tether/surfacebase/surface_three_hall) +"aDW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -18274,8 +18504,8 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"DX" = ( +/area/tether/surfacebase/surface_three_hall) +"aDX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18294,7 +18524,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"DY" = ( +"aDY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18308,7 +18538,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"DZ" = ( +"aDZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18316,86 +18546,106 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"Eb" = ( -/obj/structure/railing{ +"aEa" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/structure/railing, -/turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"Ec" = ( -/obj/structure/bed/chair/wood, -/obj/structure/window/basic{ - dir = 8 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/window/basic{ - dir = 1 +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aEc" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = list(57) }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ed" = ( /obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEd" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ee" = ( -/obj/structure/table/woodentable, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/item/weapon/flame/candle, -/obj/effect/floor_decal/corner/lightgrey{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ef" = ( -/obj/machinery/camera/network/outside, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"Eg" = ( -/obj/structure/bed/chair/wood{ +/obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 1 }, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "HoP Office"; + sortType = "HoP Office" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Eh" = ( +/area/tether/surfacebase/surface_three_hall) +"aEe" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/blue, +/obj/item/weapon/pen, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEf" = ( +/obj/machinery/camera/network/research{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aEg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEh" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/landmark/start{ name = "Chef" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"Ei" = ( +"aEi" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -18404,24 +18654,33 @@ }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"Ej" = ( -/obj/structure/bed/chair/wood, -/obj/structure/window/basic{ +"aEj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ek" = ( +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aEk" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"El" = ( +"aEl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -18436,12 +18695,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Em" = ( +"aEm" = ( /obj/structure/table/bench/wooden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"En" = ( +"aEn" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -18449,23 +18708,17 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Eo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"aEo" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/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/floor_decal/steeldecal/steel_decals4{ + dir = 10 }, +/obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ep" = ( +/area/tether/surfacebase/surface_three_hall) +"aEp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18476,8 +18729,8 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Eq" = ( +/area/tether/surfacebase/surface_three_hall) +"aEq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -18489,13 +18742,13 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Er" = ( +/area/tether/surfacebase/surface_three_hall) +"aEr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Es" = ( +"aEs" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Lab"; req_access = list(); @@ -18504,7 +18757,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_stairs) -"Et" = ( +"aEt" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 8; @@ -18519,7 +18772,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Eu" = ( +"aEu" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -18531,21 +18784,38 @@ }, /turf/simulated/floor/wood, /area/library) -"Ew" = ( -/obj/machinery/camera/network/tether{ - dir = 1 +"aEv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/machinery/alarm{ + pixel_y = 22 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aEw" = ( +/obj/structure/flora/pottedplant/subterranean, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + icon_state = "camera"; dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ex" = ( +/area/rnd/outpost/xenobiology/outpost_hallway) +"aEx" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -18556,8 +18826,8 @@ }, /obj/machinery/light, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ey" = ( +/area/tether/surfacebase/surface_three_hall) +"aEy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -18578,7 +18848,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Ez" = ( +"aEz" = ( /obj/structure/table/woodentable, /obj/item/weapon/packageWrap, /obj/item/weapon/paper_bin{ @@ -18587,14 +18857,14 @@ }, /turf/simulated/floor/wood, /area/library) -"EA" = ( +"aEA" = ( /obj/structure/railing{ dir = 1 }, /obj/structure/grille, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_three) -"EB" = ( +/area/tether/surfacebase/surface_three_hall) +"aEB" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -18611,20 +18881,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"EC" = ( +"aEC" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/simulated/floor/wood, /area/library) -"ED" = ( +"aED" = ( /obj/structure/table/woodentable, /obj/machinery/photocopier/faxmachine{ department = "Library Conference Room" }, /turf/simulated/floor/wood, /area/library) -"EE" = ( +"aEE" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -18632,7 +18902,7 @@ }, /turf/simulated/floor/wood, /area/library) -"EF" = ( +"aEF" = ( /obj/structure/table/rack{ dir = 1 }, @@ -18645,26 +18915,26 @@ /obj/item/weapon/storage/briefcase/inflatable, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"EG" = ( +"aEG" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/carpet, /area/library) -"EH" = ( +"aEH" = ( /obj/structure/table/woodentable, /obj/item/weapon/paper, /obj/item/weapon/pen, /obj/item/weapon/book/codex, /turf/simulated/floor/carpet, /area/library) -"EI" = ( +"aEI" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/simulated/floor/carpet, /area/library) -"EJ" = ( +"aEJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -18676,7 +18946,7 @@ }, /turf/simulated/floor/wood, /area/library) -"EK" = ( +"aEK" = ( /obj/structure/table/woodentable, /obj/structure/cable/green{ d1 = 4; @@ -18685,7 +18955,7 @@ }, /turf/simulated/floor/wood, /area/library) -"EL" = ( +"aEL" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/apc; dir = 8; @@ -18701,19 +18971,19 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"EM" = ( +"aEM" = ( /obj/machinery/space_heater, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"EN" = ( +"aEN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"EO" = ( +"aEO" = ( /obj/item/weapon/dice/d20, /obj/item/weapon/dice, /obj/structure/cable/green{ @@ -18724,7 +18994,7 @@ /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/library) -"EP" = ( +"aEP" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, @@ -18733,7 +19003,7 @@ }, /turf/simulated/floor/carpet, /area/library) -"EQ" = ( +"aEQ" = ( /obj/structure/table/woodentable, /obj/machinery/power/apc{ dir = 4; @@ -18746,7 +19016,7 @@ /obj/machinery/recharger, /turf/simulated/floor/wood, /area/library) -"ER" = ( +"aER" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" }, @@ -18765,18 +19035,18 @@ /obj/item/weapon/book/manual/excavation, /turf/simulated/floor/wood, /area/library) -"ES" = ( +"aES" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"ET" = ( +"aET" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"EU" = ( +"aEU" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" }, @@ -18796,27 +19066,27 @@ /obj/item/weapon/book/manual/supermatter_engine, /turf/simulated/floor/wood, /area/library) -"EV" = ( +"aEV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/wood, /area/library) -"EW" = ( +"aEW" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"EX" = ( +"aEX" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"EY" = ( +"aEY" = ( /obj/machinery/firealarm{ pixel_x = -30 }, @@ -18826,18 +19096,18 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"EZ" = ( +"aEZ" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Fa" = ( +"aFa" = ( /obj/effect/landmark{ name = "Observer-Start" }, /obj/machinery/light/flamp, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Fb" = ( +"aFb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -18846,7 +19116,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"Fc" = ( +"aFc" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -18860,7 +19130,7 @@ }, /turf/simulated/floor/wood, /area/library) -"Fd" = ( +"aFd" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -18869,16 +19139,16 @@ /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/library) -"Fe" = ( +"aFe" = ( /obj/structure/table/woodentable, /obj/item/weapon/deck/cards, /turf/simulated/floor/wood, /area/library) -"Ff" = ( +"aFf" = ( /obj/effect/decal/cleanable/blood, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) -"Fg" = ( +"aFg" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -18889,12 +19159,12 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"Fh" = ( +"aFh" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/remains/deer, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) -"Fi" = ( +"aFi" = ( /obj/structure/table/glass, /obj/machinery/cell_charger, /obj/effect/floor_decal/borderfloor{ @@ -18914,7 +19184,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"Fj" = ( +"aFj" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -18934,7 +19204,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Fk" = ( +"aFk" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/medical, @@ -18943,21 +19213,22 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"Fl" = ( -/obj/machinery/door/firedoor/glass, +"aFl" = ( /obj/structure/cable/green{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 4; + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_research{ - name = "Research Staircase" +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"Fm" = ( +/area/rnd/research/testingrange) +"aFm" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -18980,7 +19251,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Fn" = ( +"aFn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -18992,7 +19263,7 @@ }, /turf/simulated/floor/wood, /area/library) -"Fo" = ( +"aFo" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -19026,7 +19297,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"Fp" = ( +"aFp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19039,13 +19310,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"Fq" = ( +"aFq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/wood, /area/library) -"Fr" = ( +"aFr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19053,13 +19324,13 @@ }, /turf/simulated/floor/wood, /area/library) -"Fs" = ( +"aFs" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/wood, /area/library) -"Ft" = ( +"aFt" = ( /obj/structure/bookcase{ name = "bookcase (Fiction)" }, @@ -19069,32 +19340,31 @@ }, /turf/simulated/floor/wood, /area/library) -"Fu" = ( +"aFu" = ( /obj/structure/bookcase{ name = "bookcase (Fiction)" }, /turf/simulated/floor/wood, /area/library) -"Fv" = ( +"aFv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/library) -"Fw" = ( -/obj/structure/cable/green{ - icon_state = "0-2" +"aFw" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/structure/window/reinforced, +/obj/machinery/camera/network/research{ + icon_state = "camera"; + dir = 5 }, -/obj/structure/cable, -/obj/machinery/power/smes/buildable{ - charge = 0; - output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - Surface Civilian" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"Fx" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aFx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, /obj/machinery/power/terminal{ @@ -19108,7 +19378,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"Fy" = ( +"aFy" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -19130,7 +19400,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Fz" = ( +"aFz" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -19147,13 +19417,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"FA" = ( +"aFA" = ( /obj/structure/bed/chair/wood{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FB" = ( +"aFB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -19168,7 +19438,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FC" = ( +"aFC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19186,7 +19456,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FD" = ( +"aFD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19203,7 +19473,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FE" = ( +"aFE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19221,32 +19491,28 @@ /obj/machinery/light/flamp, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FF" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"aFF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + icon_state = "1-4" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"FG" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aFG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -19264,7 +19530,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FH" = ( +"aFH" = ( /obj/machinery/light, /obj/item/device/radio/intercom{ dir = 2; @@ -19273,7 +19539,7 @@ /obj/structure/table/bench/wooden, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FI" = ( +"aFI" = ( /obj/structure/table/woodentable, /obj/machinery/alarm{ dir = 1; @@ -19281,7 +19547,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FJ" = ( +"aFJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -19296,7 +19562,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"FK" = ( +"aFK" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -19308,7 +19574,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"FL" = ( +"aFL" = ( /obj/structure/window/reinforced/full, /obj/structure/grille, /obj/machinery/door/firedoor/glass, @@ -19325,7 +19591,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"FM" = ( +"aFM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19342,7 +19608,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"FN" = ( +"aFN" = ( /obj/structure/table/reinforced, /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -19360,7 +19626,7 @@ /obj/item/weapon/storage/bag/trash, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"FO" = ( +"aFO" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19378,7 +19644,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"FP" = ( +"aFP" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19393,22 +19659,38 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"FQ" = ( +"aFQ" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"FR" = ( +"aFR" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19420,7 +19702,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"FS" = ( +"aFS" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19434,7 +19716,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"FT" = ( +"aFT" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, @@ -19455,13 +19737,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"FU" = ( +"aFU" = ( /obj/structure/bookcase{ name = "bookcase (Religious)" }, /turf/simulated/floor/wood, /area/library) -"FV" = ( +"aFV" = ( /obj/structure/cable/green, /obj/structure/cable/green{ d2 = 4; @@ -19480,7 +19762,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"FW" = ( +"aFW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 2; @@ -19495,7 +19777,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"FX" = ( +"aFX" = ( /obj/random/tech_supply, /obj/structure/table/steel, /obj/random/maintenance/engineering, @@ -19503,7 +19785,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"FY" = ( +"aFY" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -19513,7 +19795,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"FZ" = ( +"aFZ" = ( /obj/machinery/disposal, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, @@ -19522,14 +19804,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Ga" = ( +"aGa" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/hydroponics) -"Gb" = ( +"aGb" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -19539,7 +19821,7 @@ /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/hydroponics) -"Gc" = ( +"aGc" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -19551,7 +19833,7 @@ /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/hydroponics) -"Gd" = ( +"aGd" = ( /obj/machinery/seed_storage/garden, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -19561,7 +19843,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Ge" = ( +"aGe" = ( /obj/structure/extinguisher_cabinet{ dir = 4; icon_state = "extinguisher_closed"; @@ -19583,7 +19865,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Gf" = ( +"aGf" = ( /obj/machinery/status_display{ pixel_x = 32; pixel_y = 0 @@ -19607,7 +19889,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Gg" = ( +"aGg" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -19618,13 +19900,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Gh" = ( +"aGh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Gi" = ( +"aGi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19636,7 +19918,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Gj" = ( +"aGj" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -19654,7 +19936,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Gk" = ( +"aGk" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, @@ -19669,29 +19951,18 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"Gl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, +"aGl" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/goggles, +/obj/structure/window/reinforced, /obj/machinery/camera/network/research{ - dir = 1 + icon_state = "camera"; + dir = 8 }, -/obj/effect/floor_decal/borderfloorblack, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"Gm" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aGm" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -19712,7 +19983,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"Gn" = ( +"aGn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -19727,7 +19998,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"Go" = ( +"aGo" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/research{ autoclose = 0; @@ -19749,7 +20020,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Gp" = ( +"aGp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/effect/floor_decal/borderfloorblack{ dir = 6 @@ -19764,7 +20035,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"Gq" = ( +"aGq" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -19780,7 +20051,7 @@ /obj/effect/floor_decal/corner/mauve/bordercorner, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Gr" = ( +"aGr" = ( /obj/machinery/door/firedoor/glass/hidden{ icon_state = "door_open"; dir = 2 @@ -19793,7 +20064,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Gs" = ( +"aGs" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/research{ autoclose = 0; @@ -19816,7 +20087,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Gt" = ( +"aGt" = ( /obj/machinery/door/firedoor/glass/hidden{ icon_state = "door_open"; dir = 2 @@ -19826,7 +20097,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Gu" = ( +"aGu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19847,7 +20118,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Gv" = ( +"aGv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19865,14 +20136,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Gw" = ( +"aGw" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" }, /obj/item/weapon/book/codex/lore/robutt, /turf/simulated/floor/wood, /area/library) -"Gx" = ( +"aGx" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -19883,12 +20154,12 @@ }, /turf/simulated/floor/wood, /area/library) -"Gy" = ( +"aGy" = ( /obj/structure/railing, /obj/structure/grille, /turf/simulated/floor/tiled/techmaint, /area/hallway/lower/third_south) -"Gz" = ( +"aGz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -19903,7 +20174,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"GA" = ( +"aGA" = ( /obj/structure/sign/directions/medical{ dir = 4; pixel_y = 8 @@ -19922,7 +20193,7 @@ }, /turf/simulated/wall, /area/hydroponics) -"GB" = ( +"aGB" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -19940,7 +20211,7 @@ /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GC" = ( +"aGC" = ( /obj/machinery/computer/timeclock/premade/east, /obj/structure/cable/green{ d1 = 1; @@ -19970,7 +20241,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GD" = ( +"aGD" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -19984,7 +20255,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"GE" = ( +"aGE" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 }, @@ -19993,7 +20264,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"GF" = ( +"aGF" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -20005,20 +20276,20 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"GG" = ( +"aGG" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"GH" = ( +"aGH" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"GI" = ( +"aGI" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -20038,24 +20309,24 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"GJ" = ( +"aGJ" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"GK" = ( +"aGK" = ( /turf/simulated/wall, /area/crew_quarters/barrestroom) -"GL" = ( +"aGL" = ( /obj/item/device/radio/intercom{ dir = 8; pixel_x = 10 }, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_hallway) -"GM" = ( +"aGM" = ( /obj/machinery/door/firedoor/glass/hidden{ icon_state = "door_open"; dir = 2 @@ -20065,13 +20336,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"GN" = ( +"aGN" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/structure/window/basic, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"GO" = ( +"aGO" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/structure/window/basic{ @@ -20079,14 +20350,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"GP" = ( +"aGP" = ( /obj/structure/sign/nanotrasen, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"GQ" = ( +"aGQ" = ( /turf/simulated/wall/r_wall, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"GR" = ( +"aGR" = ( /obj/structure/disposalpipe/segment, /obj/structure/extinguisher_cabinet{ dir = 4; @@ -20109,7 +20380,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"GS" = ( +"aGS" = ( /obj/machinery/transhuman/resleever, /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -20125,7 +20396,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"GT" = ( +"aGT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20141,7 +20412,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"GU" = ( +"aGU" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -20170,7 +20441,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GV" = ( +"aGV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -20183,7 +20454,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GW" = ( +"aGW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20199,7 +20470,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GX" = ( +"aGX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20215,13 +20486,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GY" = ( +"aGY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"GZ" = ( +"aGZ" = ( /obj/machinery/newscaster{ pixel_x = 0; pixel_y = 30 @@ -20241,7 +20512,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ha" = ( +"aHa" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -20263,7 +20534,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hb" = ( +"aHb" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -20282,27 +20553,27 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hc" = ( +"aHc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"Hd" = ( +"aHd" = ( /obj/machinery/newscaster{ pixel_x = 0; pixel_y = 28 }, /turf/simulated/floor/wood, /area/library) -"He" = ( +"aHe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/wood, /area/library) -"Hf" = ( +"aHf" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -20318,13 +20589,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hg" = ( +"aHg" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" }, /turf/simulated/floor/wood, /area/library) -"Hh" = ( +"aHh" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -20345,7 +20616,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hi" = ( +"aHi" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -20371,24 +20642,35 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hj" = ( -/obj/machinery/camera/network/tether, +"aHj" = ( +/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ - dir = 1 + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 10 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/camera/network/research{ + icon_state = "camera"; + dir = 5 }, /turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"Hk" = ( +/area/rnd/research/researchdivision) +"aHk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20410,7 +20692,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hl" = ( +"aHl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -20429,7 +20711,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hm" = ( +"aHm" = ( /obj/machinery/light{ dir = 1 }, @@ -20446,7 +20728,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hn" = ( +"aHn" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, @@ -20462,7 +20744,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ho" = ( +"aHo" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -20475,7 +20757,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hp" = ( +"aHp" = ( /obj/machinery/newscaster{ pixel_x = 0; pixel_y = 30 @@ -20501,7 +20783,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hq" = ( +"aHq" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -20526,7 +20808,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hr" = ( +"aHr" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, @@ -20545,13 +20827,13 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hs" = ( +"aHs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ht" = ( +"aHt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20562,7 +20844,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hu" = ( +"aHu" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ dir = 1 @@ -20571,7 +20853,7 @@ dir = 1 }, /area/crew_quarters/bar) -"Hv" = ( +"aHv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20580,7 +20862,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Hw" = ( +"aHw" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -20589,7 +20871,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Hx" = ( +"aHx" = ( /obj/structure/table/marble, /obj/machinery/door/blast/shutters{ dir = 8; @@ -20604,7 +20886,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Hy" = ( +"aHy" = ( /obj/structure/table/marble, /obj/item/weapon/reagent_containers/food/drinks/glass2/pint, /obj/machinery/door/blast/shutters{ @@ -20615,7 +20897,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Hz" = ( +"aHz" = ( /obj/structure/table/marble, /obj/machinery/door/blast/shutters{ dir = 1; @@ -20625,7 +20907,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"HA" = ( +"aHA" = ( /obj/structure/table/marble, /obj/item/weapon/reagent_containers/food/drinks/glass2/shot, /obj/machinery/door/blast/shutters{ @@ -20636,7 +20918,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"HB" = ( +"aHB" = ( /obj/structure/extinguisher_cabinet{ dir = 8; icon_state = "extinguisher_closed"; @@ -20648,7 +20930,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"HC" = ( +"aHC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -20658,7 +20940,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"HD" = ( +"aHD" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -20670,7 +20952,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"HE" = ( +"aHE" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/structure/window/basic{ @@ -20678,7 +20960,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_hallway) -"HF" = ( +"aHF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -20692,30 +20974,14 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"HG" = ( +"aHG" = ( +/obj/machinery/cryopod/robot, /obj/machinery/camera/network/research{ - dir = 8 + dir = 1 }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/closet/wardrobe/science_white, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"HH" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"aHH" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -20736,7 +21002,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"HI" = ( +"aHI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; @@ -20763,7 +21029,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"HJ" = ( +"aHJ" = ( /obj/machinery/transhuman/synthprinter, /obj/machinery/light{ dir = 8; @@ -20779,7 +21045,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HK" = ( +"aHK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20789,14 +21055,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HL" = ( +"aHL" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HM" = ( +"aHM" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -20811,7 +21077,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"HN" = ( +"aHN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20820,7 +21086,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HO" = ( +"aHO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20830,7 +21096,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HP" = ( +"aHP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20843,7 +21109,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HQ" = ( +"aHQ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -20856,7 +21122,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HR" = ( +"aHR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -20870,14 +21136,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HS" = ( +"aHS" = ( /obj/machinery/light{ dir = 4 }, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"HT" = ( +"aHT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -20894,7 +21160,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HU" = ( +"aHU" = ( /obj/machinery/firealarm{ dir = 4; layer = 3.3; @@ -20906,7 +21172,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"HV" = ( +"aHV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -20925,7 +21191,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HW" = ( +"aHW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20939,7 +21205,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HX" = ( +"aHX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -20958,7 +21224,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HY" = ( +"aHY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -20975,7 +21241,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HZ" = ( +"aHZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -20987,7 +21253,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ia" = ( +"aIa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21001,7 +21267,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ib" = ( +"aIb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -21020,7 +21286,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ic" = ( +"aIc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -21034,7 +21300,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Id" = ( +"aId" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -21045,7 +21311,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ie" = ( +"aIe" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -21056,7 +21322,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"If" = ( +"aIf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -21072,7 +21338,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ig" = ( +"aIg" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 1; name = "Bar" @@ -21086,7 +21352,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central1, /turf/simulated/floor/tiled/monofloor, /area/crew_quarters/bar) -"Ih" = ( +"aIh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -21100,7 +21366,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Ii" = ( +"aIi" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -21108,7 +21374,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Ij" = ( +"aIj" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -21126,7 +21392,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Ik" = ( +"aIk" = ( /obj/structure/table/marble, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21152,7 +21418,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Il" = ( +"aIl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -21166,17 +21432,17 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Im" = ( +"aIm" = ( /turf/simulated/floor/lino, /area/crew_quarters/bar) -"In" = ( +"aIn" = ( /obj/machinery/computer/guestpass{ dir = 8; pixel_x = 25 }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Io" = ( +"aIo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/alarm{ @@ -21192,24 +21458,34 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Ip" = ( +"aIp" = ( /obj/structure/flora/pottedplant/unusual, /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Iq" = ( -/obj/structure/flora/pottedplant/subterranean, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack{ +"aIq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/research, /turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"Ir" = ( +/area/rnd/research/researchdivision) +"aIr" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/research{ autoclose = 0; @@ -21232,7 +21508,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Is" = ( +"aIs" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/research{ autoclose = 0; @@ -21255,31 +21531,21 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"It" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 +"aIt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ +/obj/machinery/camera/network/security{ + icon_state = "camera"; dir = 10 }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"Iu" = ( +/area/tether/surfacebase/security/common) +"aIu" = ( /obj/machinery/computer/transhuman/resleeving{ dir = 4 }, @@ -21301,27 +21567,27 @@ /obj/item/weapon/storage/box/backup_kit, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Iv" = ( +"aIv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Iw" = ( +"aIw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ix" = ( +"aIx" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/sign/department/robo{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Iy" = ( +"aIy" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21335,7 +21601,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Iz" = ( +"aIz" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21346,7 +21612,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IA" = ( +"aIA" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -21358,7 +21624,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IB" = ( +"aIB" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21367,16 +21633,14 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, +/obj/machinery/light, /obj/machinery/alarm{ dir = 1; - pixel_y = -25 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 + pixel_y = -22 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IC" = ( +"aIC" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21390,7 +21654,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"ID" = ( +"aID" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21408,33 +21672,23 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IE" = ( -/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{ +"aIE" = ( +/obj/machinery/light/small{ dir = 1 }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"IF" = ( -/obj/machinery/camera/network/tether{ - dir = 1 +/turf/simulated/floor/wood, +/area/library) +"aIF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/security, +/obj/item/device/holowarrant, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 }, -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"IG" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/armory) +"aIG" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21448,45 +21702,39 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IH" = ( +"aIH" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"II" = ( +"aII" = ( /obj/structure/sign/department/bar{ pixel_x = 32 }, /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IJ" = ( +"aIJ" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"IK" = ( +"aIK" = ( /obj/machinery/light, /obj/structure/flora/pottedplant, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"IL" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/obj/machinery/media/jukebox, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"IM" = ( +"aIL" = ( +/obj/machinery/camera/network/security, +/turf/simulated/open, +/area/tether/surfacebase/security/upperhall) +"aIM" = ( /obj/structure/table/marble, /obj/machinery/door/blast/shutters{ dir = 8; @@ -21496,7 +21744,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IN" = ( +"aIN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -21506,36 +21754,47 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IO" = ( +"aIO" = ( /obj/machinery/vending/boozeomat, /obj/machinery/light, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IP" = ( +"aIP" = ( /obj/machinery/smartfridge/drinks, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IQ" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc/full, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"IR" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full, +"aIQ" = ( +/obj/structure/flora/pottedplant, /obj/machinery/camera/network/civilian{ - dir = 1 + dir = 9 }, -/turf/simulated/floor/lino, +/turf/simulated/floor/wood, /area/crew_quarters/bar) -"IS" = ( +"aIR" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aIS" = ( /obj/structure/table/marble, /obj/item/weapon/reagent_containers/glass/rag, /obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, /obj/item/weapon/book/manual/barman_recipes, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IT" = ( +"aIT" = ( /obj/structure/table/marble, /obj/item/weapon/flame/lighter/zippo, /obj/item/weapon/tool/screwdriver, @@ -21553,7 +21812,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IU" = ( +"aIU" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -21569,7 +21828,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"IV" = ( +"aIV" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -21584,7 +21843,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"IW" = ( +"aIW" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -21595,7 +21854,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"IX" = ( +"aIX" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/apc; dir = 8; @@ -21619,7 +21878,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"IY" = ( +"aIY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "1-2" @@ -21628,7 +21887,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"IZ" = ( +"aIZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -21652,7 +21911,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Ja" = ( +"aJa" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 8; @@ -21675,7 +21934,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Jb" = ( +"aJb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -21685,7 +21944,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Jc" = ( +"aJc" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -21694,26 +21953,17 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Jd" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, +"aJd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"Je" = ( +/area/rnd/research/testingrange) +"aJe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Jf" = ( +"aJf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21723,7 +21973,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Jg" = ( +"aJg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21734,7 +21984,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Jh" = ( +"aJh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21746,25 +21996,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ji" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - name = "Robotics"; - sortType = "Robotics" +"aJi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"Jj" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aJj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21773,7 +22011,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Jk" = ( +"aJk" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -21783,22 +22021,17 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Jl" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ +"aJl" = ( +/obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, -/obj/effect/floor_decal/corner/mauve/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"Jm" = ( +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aJm" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ dir = 4; @@ -21807,18 +22040,18 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Jn" = ( +"aJn" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/hallway/lower/third_south) -"Jo" = ( +"aJo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_external/public, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Jp" = ( +"aJp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, @@ -21830,7 +22063,7 @@ /obj/machinery/door/airlock/glass_external/public, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Jq" = ( +"aJq" = ( /obj/machinery/door/airlock/multi_tile/glass, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -21839,21 +22072,21 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Jr" = ( +"aJr" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Js" = ( +"aJs" = ( /obj/structure/railing{ dir = 1 }, /obj/structure/grille, /turf/simulated/floor/tiled/techmaint, /area/crew_quarters/bar) -"Jt" = ( +"aJt" = ( /turf/simulated/wall, /area/tether/surfacebase/bar_backroom) -"Ju" = ( +"aJu" = ( /obj/machinery/door/airlock{ name = "Bar Backroom"; req_access = list(25) @@ -21868,7 +22101,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/lino, /area/tether/surfacebase/bar_backroom) -"Jv" = ( +"aJv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/apc; @@ -21879,7 +22112,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Jw" = ( +"aJw" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -21892,7 +22125,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Jx" = ( +"aJx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -21901,7 +22134,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Jy" = ( +"aJy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -21912,7 +22145,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Jz" = ( +"aJz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21921,24 +22154,17 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"JA" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/structure/disposalpipe/segment{ +"aJA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"JB" = ( +"aJB" = ( /obj/machinery/light{ dir = 4 }, @@ -21947,7 +22173,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"JC" = ( +"aJC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -21956,21 +22182,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"JD" = ( -/obj/structure/disposalpipe/segment{ +"aJD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"JE" = ( +"aJE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -21983,7 +22204,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"JF" = ( +"aJF" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -22001,25 +22222,25 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JG" = ( +"aJG" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JH" = ( +"aJH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JI" = ( +"aJI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JJ" = ( +"aJJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -22030,14 +22251,14 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JK" = ( +"aJK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JL" = ( +"aJL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -22045,7 +22266,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JM" = ( +"aJM" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -22065,7 +22286,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JN" = ( +"aJN" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -22084,7 +22305,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"JO" = ( +"aJO" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, @@ -22096,7 +22317,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"JP" = ( +"aJP" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -22115,7 +22336,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"JQ" = ( +"aJQ" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/effect/floor_decal/borderfloor{ @@ -22134,7 +22355,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"JR" = ( +"aJR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -22145,13 +22366,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"JS" = ( +"aJS" = ( /obj/effect/floor_decal/industrial/loading{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"JT" = ( +"aJT" = ( /obj/machinery/mecha_part_fabricator{ dir = 8 }, @@ -22175,7 +22396,7 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"JU" = ( +"aJU" = ( /obj/machinery/recharge_station, /obj/machinery/light{ dir = 8; @@ -22187,15 +22408,15 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"JV" = ( -/obj/machinery/recharge_station, -/obj/machinery/camera/network/research, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 +"aJV" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full, +/obj/machinery/camera/network/civilian{ + dir = 1 }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"JW" = ( +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aJW" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 @@ -22208,14 +22429,14 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"JX" = ( +"aJX" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"JY" = ( +"aJY" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -22227,17 +22448,17 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"JZ" = ( +"aJZ" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/industrial/danger/corner, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ka" = ( +"aKa" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Kb" = ( +"aKb" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /obj/machinery/light{ @@ -22245,13 +22466,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Kc" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"Kd" = ( +"aKc" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"aKd" = ( /obj/effect/floor_decal/borderfloorblack/corner{ icon_state = "borderfloorcorner_black"; dir = 8 @@ -22262,25 +22483,25 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ke" = ( +"aKe" = ( /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"Kf" = ( +"aKf" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"Kg" = ( +"aKg" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Kh" = ( +"aKh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ki" = ( +"aKi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -22293,10 +22514,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Kj" = ( +"aKj" = ( /turf/simulated/wall, /area/tether/surfacebase/shuttle_pad) -"Kk" = ( +"aKk" = ( /obj/item/weapon/tank/emergency/oxygen/double, /obj/item/clothing/gloves/fyellow, /obj/item/weapon/book{ @@ -22307,7 +22528,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"Kl" = ( +"aKl" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -22317,7 +22538,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Km" = ( +"aKm" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 }, @@ -22328,25 +22549,28 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Kn" = ( +"aKn" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, /area/crew_quarters/bar) -"Ko" = ( +"aKo" = ( /obj/structure/closet/secure_closet/bar{ req_access = list(25) }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Kp" = ( +"aKp" = ( /obj/structure/sink{ pixel_y = 25 }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Kq" = ( +"aKq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -22358,7 +22582,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Kr" = ( +"aKr" = ( /obj/machinery/light/small{ dir = 1 }, @@ -22367,7 +22591,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Ks" = ( +"aKs" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -22381,26 +22605,23 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Kt" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, +"aKt" = ( /obj/machinery/camera/network/civilian, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"Ku" = ( +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"aKu" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Kv" = ( +"aKv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Kw" = ( +"aKw" = ( /obj/machinery/light/small{ dir = 1 }, @@ -22409,14 +22630,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Kx" = ( +"aKx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Ky" = ( +"aKy" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -22426,7 +22647,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Kz" = ( +"aKz" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/machinery/door/firedoor/glass, @@ -22434,7 +22655,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_first_aid) -"KA" = ( +"aKA" = ( /obj/machinery/door/airlock/glass_medical{ name = "Xenobiology First Aid"; req_one_access = list(5,47) @@ -22446,7 +22667,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_first_aid) -"KB" = ( +"aKB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -22460,7 +22681,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"KC" = ( +"aKC" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -22469,17 +22690,13 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"KD" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"KE" = ( +"aKD" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKE" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/door/window/brigdoor/southleft{ req_access = list(47); @@ -22487,7 +22704,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"KF" = ( +"aKF" = ( /obj/structure/table/reinforced, /obj/item/clothing/ears/earmuffs, /obj/item/clothing/glasses/goggles, @@ -22495,14 +22712,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"KG" = ( +"aKG" = ( /obj/structure/table/reinforced, /obj/item/clothing/ears/earmuffs, /obj/item/clothing/glasses/goggles, /obj/structure/window/reinforced, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"KH" = ( +"aKH" = ( /obj/structure/table/reinforced, /obj/item/clothing/ears/earmuffs, /obj/item/clothing/glasses/goggles, @@ -22510,19 +22727,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"KI" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/goggles, -/obj/structure/window/reinforced, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 +"aKI" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"KJ" = ( +/turf/simulated/floor/reinforced, +/area/tether/surfacebase/shuttle_pad) +"aKJ" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/structure/cable/green{ @@ -22544,7 +22755,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"KK" = ( +"aKK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -22562,7 +22773,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"KL" = ( +"aKL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -22570,7 +22781,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"KM" = ( +"aKM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -22579,7 +22790,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"KN" = ( +"aKN" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -22590,7 +22801,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"KO" = ( +"aKO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -22600,20 +22811,20 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"KP" = ( +"aKP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"KQ" = ( +"aKQ" = ( /obj/machinery/mech_recharger, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"KR" = ( +"aKR" = ( /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"KS" = ( +"aKS" = ( /obj/machinery/mech_recharger, /obj/machinery/light{ dir = 4; @@ -22621,7 +22832,7 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"KT" = ( +"aKT" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -22630,10 +22841,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"KU" = ( +"aKU" = ( /turf/simulated/floor/reinforced, /area/tether/surfacebase/shuttle_pad) -"KV" = ( +"aKV" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -22643,13 +22854,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"KW" = ( +"aKW" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"KX" = ( +"aKX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -22666,27 +22877,31 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"KY" = ( +"aKY" = ( /obj/item/clothing/under/color/grey, /obj/item/clothing/mask/gas/wwii, /obj/item/weapon/storage/belt/utility/full, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"KZ" = ( +"aKZ" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"La" = ( -/obj/machinery/camera/network/tether{ - dir = 9 +"aLa" = ( +/obj/item/stack/material/plastic, +/obj/structure/table/rack, +/obj/item/stack/material/steel{ + amount = 3 }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"Lb" = ( +/obj/random/maintenance/engineering, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"aLb" = ( /obj/structure/table/woodentable, /obj/machinery/alarm{ dir = 4; @@ -22699,13 +22914,13 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Lc" = ( +"aLc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Ld" = ( +"aLd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -22717,7 +22932,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Le" = ( +"aLe" = ( /obj/effect/landmark/start{ name = "Bartender" }, @@ -22728,10 +22943,10 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Lf" = ( +"aLf" = ( /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Lg" = ( +"aLg" = ( /obj/item/weapon/storage/secure/safe{ pixel_x = 30; pixel_z = 0 @@ -22741,10 +22956,10 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Lh" = ( +"aLh" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Li" = ( +"aLi" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "2-4" @@ -22758,7 +22973,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Lj" = ( +"aLj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -22769,7 +22984,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Lk" = ( +"aLk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -22780,13 +22995,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Ll" = ( +"aLl" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Lm" = ( +"aLm" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -22795,14 +23010,19 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Ln" = ( -/obj/effect/floor_decal/industrial/warning{ +"aLn" = ( +/obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"Lo" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aLo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -22811,7 +23031,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Lp" = ( +"aLp" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -22822,7 +23042,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Lq" = ( +"aLq" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/alarm{ dir = 4; @@ -22845,7 +23065,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Lr" = ( +"aLr" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -22860,7 +23080,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ls" = ( +"aLs" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22870,7 +23090,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"Lt" = ( +"aLt" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22878,7 +23098,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Lu" = ( +"aLu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22889,7 +23109,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Lv" = ( +"aLv" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -22902,7 +23122,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Lw" = ( +"aLw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22914,7 +23134,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Lx" = ( +"aLx" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22922,7 +23142,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Ly" = ( +"aLy" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22930,7 +23150,7 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"Lz" = ( +"aLz" = ( /obj/structure/cable/green{ icon_state = "0-8" }, @@ -22941,12 +23161,12 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"LA" = ( +"aLA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_external/public, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"LB" = ( +"aLB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, @@ -22958,7 +23178,7 @@ /obj/machinery/door/airlock/glass_external/public, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"LC" = ( +"aLC" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/beanbags, /obj/item/weapon/gun/projectile/shotgun/doublebarrel, @@ -22971,14 +23191,14 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LD" = ( +"aLD" = ( /obj/structure/table/woodentable, /obj/machinery/reagentgrinder, /obj/item/weapon/reagent_containers/food/drinks/shaker, /obj/item/weapon/packageWrap, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LE" = ( +"aLE" = ( /obj/structure/table/woodentable, /obj/machinery/firealarm{ dir = 1; @@ -22986,7 +23206,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LF" = ( +"aLF" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -22995,11 +23215,11 @@ /obj/structure/cable/green, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LG" = ( +"aLG" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LH" = ( +"aLH" = ( /obj/structure/closet/gmcloset{ icon_closed = "black"; icon_state = "black"; @@ -23010,40 +23230,37 @@ /obj/item/device/retail_scanner/civilian, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LI" = ( +"aLI" = ( /obj/machinery/door/airlock{ name = "Unit 3" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"LJ" = ( +"aLJ" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"LK" = ( +"aLK" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"LL" = ( -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +"aLL" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"LM" = ( +/area/tether/surfacebase/shuttle_pad) +"aLM" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/open, /area/rnd/outpost/xenobiology/outpost_stairs) -"LN" = ( +"aLN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "1-2" @@ -23052,7 +23269,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"LO" = ( +"aLO" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Equipment Storage"; req_access = list(); @@ -23066,12 +23283,11 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"LP" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_stairs) -"LQ" = ( +"aLP" = ( +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/wood, +/area/library) +"aLQ" = ( /obj/machinery/alarm{ alarm_id = "anomaly_testing"; breach_detection = 0; @@ -23083,7 +23299,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_stairs) -"LR" = ( +"aLR" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Lab"; req_access = list(); @@ -23097,14 +23313,14 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_stairs) -"LS" = ( +"aLS" = ( /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"LT" = ( +"aLT" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"LU" = ( +"aLU" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -23116,7 +23332,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"LV" = ( +"aLV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23124,13 +23340,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"LW" = ( +"aLW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"LX" = ( +"aLX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23147,7 +23363,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"LY" = ( +"aLY" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -23158,7 +23374,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"LZ" = ( +"aLZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23176,13 +23392,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Ma" = ( +"aMa" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Mb" = ( +"aMb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -23191,7 +23407,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Mc" = ( +"aMc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -23205,13 +23421,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Md" = ( +"aMd" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Me" = ( +"aMe" = ( /obj/structure/cable/green{ icon_state = "0-2" }, @@ -23223,7 +23439,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"Mf" = ( +"aMf" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -23245,7 +23461,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Mg" = ( +"aMg" = ( /obj/machinery/light/small{ dir = 4; pixel_y = 0 @@ -23253,7 +23469,7 @@ /obj/machinery/recharge_station, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Mh" = ( +"aMh" = ( /obj/machinery/light/small{ dir = 4; pixel_y = 0 @@ -23263,7 +23479,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Mi" = ( +"aMi" = ( /obj/structure/flora/pottedplant/unusual, /obj/machinery/firealarm{ dir = 8; @@ -23275,27 +23491,23 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Mj" = ( +"aMj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Mk" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 +"aMk" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"Ml" = ( +/turf/simulated/floor/wood, +/area/library) +"aMl" = ( /turf/simulated/open, /area/rnd/outpost/xenobiology/outpost_stairs) -"Mm" = ( +"aMm" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 @@ -23303,12 +23515,12 @@ /obj/structure/flora/pottedplant/unusual, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Mn" = ( +"aMn" = ( /obj/structure/table/wooden_reinforced, /obj/item/device/radio/phone, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Mo" = ( +"aMo" = ( /obj/structure/extinguisher_cabinet{ dir = 4; icon_state = "extinguisher_closed"; @@ -23316,23 +23528,28 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Mp" = ( +"aMp" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Mq" = ( +"aMq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/alarm{ + dir = 1; + pixel_x = 30; + pixel_y = -22 + }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Mr" = ( +"aMr" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -23344,20 +23561,20 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ms" = ( +"aMs" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Mt" = ( +"aMt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Mu" = ( +"aMu" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -23381,7 +23598,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Mv" = ( +"aMv" = ( /obj/machinery/cryopod/robot, /obj/machinery/light{ dir = 8; @@ -23392,18 +23609,20 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Mw" = ( -/obj/machinery/cryopod/robot, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"Mx" = ( +"aMw" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aMx" = ( /obj/machinery/computer/cryopod/robot{ dir = 1; pixel_y = -28 }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"My" = ( +"aMy" = ( /obj/machinery/light_switch{ dir = 1; pixel_x = 2; @@ -23411,7 +23630,7 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"Mz" = ( +"aMz" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -23422,12 +23641,12 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"MA" = ( +"aMA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"MB" = ( +"aMB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -23435,7 +23654,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"MC" = ( +"aMC" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23443,7 +23662,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"MD" = ( +"aMD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -23451,56 +23670,43 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"ME" = ( +"aME" = ( /turf/simulated/shuttle/wall, /area/shuttle/tether/surface) -"MF" = ( +"aMF" = ( /obj/structure/shuttle/window, /obj/structure/grille, /turf/simulated/shuttle/plating/airless, /area/shuttle/tether/surface) -"MG" = ( +"aMG" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"MH" = ( +"aMH" = ( /obj/structure/flora/pottedplant/crystal, /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"MI" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +"aMI" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/camera/network/civilian{ + dir = 1 }, -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"MJ" = ( -/obj/structure/table/glass, -/obj/item/bodybag, -/obj/item/device/healthanalyzer, -/obj/item/weapon/storage/firstaid, -/obj/random/medical, -/obj/structure/closet/medical_wall{ - pixel_y = 35 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aMJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 32 }, /turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"MK" = ( +/area/rnd/outpost/xenobiology/outpost_decon) +"aMK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23515,7 +23721,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"ML" = ( +"aML" = ( /obj/structure/closet/bombcloset, /obj/machinery/light_switch{ dir = 4; @@ -23523,18 +23729,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"MM" = ( +"aMM" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"MN" = ( +"aMN" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"MO" = ( +"aMO" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -23542,7 +23748,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"MP" = ( +"aMP" = ( /obj/structure/table/standard, /obj/item/device/defib_kit/jumper_kit, /obj/item/weapon/storage/box/gloves, @@ -23552,7 +23758,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"MQ" = ( +"aMQ" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -23566,30 +23772,19 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"MR" = ( +"aMR" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"MS" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"MT" = ( +"aMS" = ( +/obj/machinery/vending/fitness, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"aMT" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -23601,7 +23796,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"MU" = ( +"aMU" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ icon_state = "steel_decals_central5"; dir = 8 @@ -23613,7 +23808,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"MV" = ( +"aMV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -23626,9 +23821,12 @@ icon_state = "extinguisher_closed"; pixel_x = -30 }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"MW" = ( +"aMW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -23642,20 +23840,30 @@ /obj/effect/floor_decal/steeldecal/steel_decals5, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"MX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +"aMX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 +/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/floor_decal/steeldecal/steel_decals5, /obj/machinery/camera/network/tether{ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"MY" = ( +/area/tether/surfacebase/surface_three_hall) +"aMY" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ icon_state = "steel_decals_central5"; dir = 4 @@ -23665,19 +23873,19 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"MZ" = ( +"aMZ" = ( /obj/structure/closet/firecloset, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Na" = ( +"aNa" = ( /obj/machinery/computer/shuttle_control/tether_backup, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Nb" = ( +"aNb" = ( /obj/structure/closet/emcloset, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Nc" = ( +"aNc" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22; @@ -23688,7 +23896,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Nd" = ( +"aNd" = ( /obj/structure/table/glass, /obj/machinery/firealarm{ dir = 8; @@ -23700,7 +23908,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Ne" = ( +"aNe" = ( /obj/structure/closet/secure_closet/medical_wall/anesthetics{ pixel_x = -32; req_access = list(); @@ -23720,20 +23928,20 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nf" = ( +"aNf" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ng" = ( +"aNg" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Roboticist" }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nh" = ( +"aNh" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = -1; @@ -23751,7 +23959,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ni" = ( +"aNi" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -23760,22 +23968,22 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"Nj" = ( +"aNj" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"Nk" = ( +"aNk" = ( /obj/structure/bed/chair/shuttle{ dir = 4 }, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Nl" = ( +"aNl" = ( /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Nm" = ( +"aNm" = ( /obj/structure/bed/chair/shuttle{ dir = 8 }, @@ -23788,30 +23996,39 @@ }, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Nn" = ( +"aNn" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"No" = ( -/obj/machinery/camera/network/research{ - dir = 4 +"aNo" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 }, -/obj/machinery/holoplant, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/camera/network/tether{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"Np" = ( -/obj/structure/catwalk, -/obj/machinery/camera/network/outside{ +/area/tether/surfacebase/surface_three_hall) +"aNp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"Nq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aNq" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/blood, /obj/structure/bed/chair{ @@ -23819,12 +24036,12 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Nr" = ( +"aNr" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/target_stake, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Ns" = ( +"aNs" = ( /obj/structure/table/standard, /obj/item/weapon/book/manual/robotics_cyborgs, /obj/item/clothing/glasses/omnihud/rnd, @@ -23843,7 +24060,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nt" = ( +"aNt" = ( /obj/structure/table/standard, /obj/item/device/mmi, /obj/item/device/mmi/digital/posibrain, @@ -23851,13 +24068,13 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nu" = ( +"aNu" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nv" = ( +"aNv" = ( /obj/structure/table/standard, /obj/machinery/computer/med_data/laptop{ dir = 1 @@ -23866,7 +24083,7 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nw" = ( +"aNw" = ( /obj/structure/table/standard, /obj/item/weapon/pen, /obj/item/weapon/pen, @@ -23882,12 +24099,12 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nx" = ( +"aNx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ny" = ( +"aNy" = ( /obj/structure/table/rack/shelf, /obj/item/weapon/storage/backpack/parachute{ pixel_x = -4; @@ -23907,7 +24124,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Nz" = ( +"aNz" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1380; icon_state = "door_locked"; @@ -23917,7 +24134,7 @@ }, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"NA" = ( +"aNA" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -23933,7 +24150,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"NB" = ( +"aNB" = ( /obj/structure/railing{ dir = 8 }, @@ -23943,14 +24160,14 @@ }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"NC" = ( +"aNC" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"ND" = ( +"aND" = ( /obj/structure/railing{ dir = 4 }, @@ -23960,38 +24177,46 @@ }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"NE" = ( -/obj/machinery/camera/network/research{ +"aNE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"NF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aNF" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/assembly/robotics) -"NG" = ( +"aNG" = ( /turf/simulated/floor/tiled/monofloor{ dir = 1 }, /area/tether/surfacebase/shuttle_pad) -"NH" = ( +"aNH" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"NI" = ( +"aNI" = ( /obj/machinery/computer/atmos_alert{ icon_state = "computer"; dir = 8 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"NJ" = ( +"aNJ" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, @@ -24002,13 +24227,13 @@ }, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"NK" = ( +"aNK" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"NL" = ( +"aNL" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/structure/window/basic{ @@ -24016,37 +24241,37 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_hallway) -"NM" = ( +"aNM" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"NN" = ( +"aNN" = ( /turf/simulated/floor/tiled/monofloor, /area/tether/surfacebase/shuttle_pad) -"NO" = ( +"aNO" = ( /obj/machinery/computer/shuttle_control/tether_backup{ icon_state = "computer"; dir = 8 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"NP" = ( +"aNP" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/shuttle/plating/airless, /area/shuttle/tether/surface) -"NQ" = ( +"aNQ" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, /turf/simulated/open, /area/rnd/outpost/xenobiology/outpost_stairs) -"NR" = ( +"aNR" = ( /obj/structure/catwalk, /obj/structure/railing{ icon_state = "railing0"; @@ -24054,7 +24279,7 @@ }, /turf/simulated/open, /area/rnd/outpost/xenobiology/outpost_stairs) -"NS" = ( +"aNS" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -24065,36 +24290,36 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"NT" = ( +"aNT" = ( /obj/structure/closet/firecloset, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"NU" = ( +"aNU" = ( /obj/structure/railing{ dir = 4 }, /obj/structure/railing, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"NV" = ( +"aNV" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_hallway) -"NW" = ( +"aNW" = ( /obj/structure/railing{ dir = 8 }, /obj/structure/railing, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"NX" = ( +"aNX" = ( /obj/structure/closet/hydrant{ pixel_y = -32 }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"NY" = ( +"aNY" = ( /obj/machinery/button/remote/blast_door{ dir = 1; id = "hangarsurface"; @@ -24104,24 +24329,43 @@ }, /turf/simulated/floor/reinforced, /area/tether/surfacebase/shuttle_pad) -"NZ" = ( +"aNZ" = ( /obj/structure/sign/xenobio, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_hallway) -"Oa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +"aOa" = ( +/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/structure/table/reinforced, -/obj/item/weapon/folder/blue, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"Ob" = ( -/obj/structure/catwalk, -/obj/machinery/camera/network/outside, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"Oc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aOb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/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/tether{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aOc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -24131,7 +24375,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals5, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Od" = ( +"aOd" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -24146,7 +24390,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Oe" = ( +"aOe" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -24156,16 +24400,33 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Of" = ( +"aOf" = ( /turf/simulated/wall/r_wall, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Og" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"aOg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"Oh" = ( +/obj/effect/floor_decal/corner/beige/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/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aOh" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/apc; @@ -24175,20 +24436,20 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_stairs) -"Oi" = ( +"aOi" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"Oj" = ( +"aOj" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"Ok" = ( +"aOk" = ( /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"Ol" = ( +"aOl" = ( /obj/structure/shuttle/engine/propulsion{ anchored = 0; dir = 8; @@ -24196,18 +24457,18 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"Om" = ( +"aOm" = ( /obj/structure/railing, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"On" = ( +"aOn" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"Oo" = ( +"aOo" = ( /obj/item/device/radio/intercom{ dir = 1; pixel_y = 24; @@ -24222,23 +24483,29 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Op" = ( +"aOp" = ( /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Oq" = ( -/obj/machinery/camera/network/research{ +"aOq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5; - pixel_y = 0 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"Or" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aOr" = ( /obj/machinery/light{ dir = 4 }, @@ -24247,7 +24514,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Os" = ( +"aOs" = ( /obj/structure/railing{ dir = 1 }, @@ -24257,14 +24524,14 @@ }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"Ot" = ( +"aOt" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"Ou" = ( +"aOu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -24273,7 +24540,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ov" = ( +"aOv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -24282,7 +24549,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ow" = ( +"aOw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -24291,7 +24558,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"Ox" = ( +"aOx" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -24307,7 +24574,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Oy" = ( +"aOy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -24320,7 +24587,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"Oz" = ( +"aOz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -24329,7 +24596,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OA" = ( +"aOA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -24338,19 +24605,19 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OB" = ( +"aOB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OC" = ( +"aOC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OD" = ( +"aOD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -24363,7 +24630,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"OE" = ( +"aOE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -24373,7 +24640,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"OF" = ( +"aOF" = ( /obj/structure/railing{ dir = 1 }, @@ -24382,7 +24649,7 @@ }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"OG" = ( +"aOG" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22; @@ -24394,7 +24661,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"OH" = ( +"aOH" = ( /obj/effect/floor_decal/borderfloorblack/corner{ icon_state = "borderfloorcorner_black"; dir = 4 @@ -24404,7 +24671,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"OI" = ( +"aOI" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -24413,23 +24680,21 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"OJ" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 +"aOJ" = ( +/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/industrial/danger{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, /obj/machinery/camera/network/tether{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"OK" = ( +/area/hallway/lower/third_south) +"aOK" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -24439,7 +24704,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"OL" = ( +"aOL" = ( /obj/effect/floor_decal/borderfloorblack/corner{ icon_state = "borderfloorcorner_black"; dir = 1 @@ -24449,13 +24714,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"OM" = ( +"aOM" = ( /obj/structure/table/steel, /obj/random/tech_supply, /obj/random/tool, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"ON" = ( +"aON" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -24466,7 +24731,7 @@ /obj/item/stack/cable_coil/random, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OO" = ( +"aOO" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -24477,23 +24742,20 @@ /obj/item/weapon/weldingtool, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OP" = ( +"aOP" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, +"aOQ" = ( /obj/machinery/camera/network/tether{ - dir = 1 + dir = 9 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"OR" = ( +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aOR" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_office) -"OS" = ( +"aOS" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -24505,22 +24767,32 @@ /obj/structure/closet/radiation, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"OT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"OU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"aOT" = ( +/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/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aOU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/command, /turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"OV" = ( +/area/bridge_hallway) +"aOV" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -24535,10 +24807,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"OW" = ( +"aOW" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_breakroom) -"OX" = ( +"aOX" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 1 @@ -24551,7 +24823,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_breakroom) -"OY" = ( +"aOY" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 1 @@ -24564,32 +24836,32 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_breakroom) -"OZ" = ( +"aOZ" = ( /obj/machinery/newscaster, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Pa" = ( -/obj/structure/catwalk, -/obj/machinery/camera/network/outside{ +"aPa" = ( +/obj/machinery/camera/network/command{ + icon_state = "camera"; dir = 4 }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"Pb" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aPb" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"Pc" = ( +"aPc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/hatch, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Pd" = ( +"aPd" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 8 @@ -24604,18 +24876,28 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_office) -"Pe" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/weapon/paperplane, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"Pf" = ( +"aPe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aPf" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Pg" = ( +"aPg" = ( /obj/machinery/computer/area_atmos/tag{ pixel_y = 0; scrub_id = "xeno_phoron_pen_scrubbers" @@ -24625,19 +24907,31 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Ph" = ( +"aPh" = ( /obj/machinery/computer/security/xenobio, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Pi" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +"aPi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/structure/table/reinforced, -/obj/item/weapon/folder/white, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"Pj" = ( +/obj/effect/landmark/start{ + name = "Colony Director" + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "cap_office"; + name = "Security Shutters"; + pixel_x = 30; + pixel_y = 16 + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aPj" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -24659,22 +24953,22 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Pk" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"Pl" = ( +"aPk" = ( +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aPl" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/donkpockets, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Pm" = ( +"aPm" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Pn" = ( +"aPn" = ( /obj/structure/table/woodentable, /obj/machinery/microwave, /obj/machinery/light{ @@ -24682,7 +24976,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Po" = ( +"aPo" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 4 @@ -24697,16 +24991,14 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Pp" = ( -/obj/item/stack/material/plastic, -/obj/structure/table/rack, -/obj/item/stack/material/steel{ - amount = 3 +"aPp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"Pq" = ( +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aPq" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -24715,7 +25007,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Pr" = ( +"aPr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -24724,20 +25016,20 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Ps" = ( +"aPs" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Pt" = ( +"aPt" = ( /obj/structure/frame/computer, /obj/item/weapon/material/twohanded/baseballbat{ name = "Swatta" }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Pu" = ( +"aPu" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -24746,7 +25038,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"Pv" = ( +"aPv" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 8 @@ -24758,11 +25050,11 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_office) -"Pw" = ( +"aPw" = ( /obj/structure/table/wooden_reinforced, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Px" = ( +"aPx" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -24778,13 +25070,13 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Py" = ( +"aPy" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Pz" = ( +"aPz" = ( /obj/effect/landmark/start{ name = "Xenobiologist" }, @@ -24793,7 +25085,7 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"PA" = ( +"aPA" = ( /obj/structure/table/glass, /obj/machinery/light_switch{ dir = 8; @@ -24803,90 +25095,81 @@ /obj/item/weapon/storage/box/masks, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"PB" = ( +"aPB" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"aPC" = ( +/obj/machinery/computer/communications{ + dir = 1 }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"PD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/camera/network/command{ + icon_state = "camera"; dir = 10 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aPD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 +/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/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() }, /turf/simulated/floor/tiled, -/area/bridge/secondary) -"PE" = ( +/area/hallway/lower/third_south) +"aPE" = ( /obj/item/device/radio/intercom{ dir = 8; pixel_x = 10 }, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PF" = ( +"aPF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/machinery/light, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"PG" = ( +"aPG" = ( /obj/random/mob/mouse, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PH" = ( +"aPH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PI" = ( +"aPI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PJ" = ( +"aPJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PK" = ( +"aPK" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 4 @@ -24898,27 +25181,27 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PL" = ( +"aPL" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"PM" = ( +"aPM" = ( /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"PN" = ( +"aPN" = ( /obj/machinery/photocopier, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"PO" = ( +"aPO" = ( /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"PP" = ( +"aPP" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_office) -"PQ" = ( +"aPQ" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -24926,7 +25209,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"PR" = ( +"aPR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -24935,28 +25218,28 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"PS" = ( +"aPS" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"PT" = ( +"aPT" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PU" = ( +"aPU" = ( /obj/machinery/vending/fitness, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PV" = ( +"aPV" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"PW" = ( +"aPW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; @@ -24967,35 +25250,35 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PX" = ( +"aPX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PY" = ( +"aPY" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PZ" = ( +"aPZ" = ( /obj/structure/bed/chair, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Qa" = ( +"aQa" = ( /obj/structure/bed/chair, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Qb" = ( +"aQb" = ( /obj/machinery/papershredder, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qc" = ( +"aQc" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22; @@ -25003,25 +25286,13 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +"aQd" = ( +/obj/machinery/light/small{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"Qe" = ( +/turf/simulated/open, +/area/tether/surfacebase/north_stairs_three) +"aQe" = ( /obj/machinery/light_switch{ dir = 4; pixel_x = -28 @@ -25035,44 +25306,38 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Qf" = ( -/obj/machinery/camera/network/research{ - dir = 8 +"aQf" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 6 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"Qg" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aQg" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qh" = ( +"aQh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qi" = ( +"aQi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qj" = ( +"aQj" = ( /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qk" = ( +"aQk" = ( /obj/machinery/computer/arcade, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Ql" = ( +"aQl" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qm" = ( +"aQm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -25081,7 +25346,7 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qn" = ( +"aQn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -25097,7 +25362,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Qo" = ( +"aQo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25114,7 +25379,7 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qp" = ( +"aQp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25127,7 +25392,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Qq" = ( +"aQq" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Office"; req_access = list(); @@ -25149,7 +25414,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_office) -"Qr" = ( +"aQr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -25165,7 +25430,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Qs" = ( +"aQs" = ( /obj/machinery/door/airlock/glass_science{ name = "Break Room" }, @@ -25185,7 +25450,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qt" = ( +"aQt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -25201,7 +25466,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qu" = ( +"aQu" = ( /obj/structure/bed/chair/wood, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -25217,18 +25482,18 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qv" = ( +"aQv" = ( /obj/structure/bed/chair/wood, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qw" = ( +"aQw" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qx" = ( +"aQx" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/cell_charger, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -25236,13 +25501,13 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qy" = ( +"aQy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qz" = ( +"aQz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; @@ -25250,7 +25515,7 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QA" = ( +"aQA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25267,7 +25532,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"QB" = ( +"aQB" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -25280,7 +25545,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"QC" = ( +"aQC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -25289,29 +25554,20 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"QD" = ( -/obj/structure/bed/chair/wood{ - dir = 4 +"aQD" = ( +/obj/structure/catwalk, +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 9 }, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"QE" = ( +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aQE" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/donut, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QF" = ( +"aQF" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 8 }, @@ -25319,13 +25575,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"QG" = ( +"aQG" = ( /obj/structure/bed/chair/wood{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QH" = ( +"aQH" = ( /obj/structure/table/wooden_reinforced, /obj/item/stack/material/phoron{ amount = 6 @@ -25339,7 +25595,7 @@ /obj/item/weapon/reagent_containers/syringe, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QI" = ( +"aQI" = ( /obj/structure/bed/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -25350,20 +25606,20 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QJ" = ( +"aQJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QK" = ( +"aQK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QL" = ( +"aQL" = ( /obj/machinery/vending/coffee, /obj/structure/cable/green{ icon_state = "1-2" @@ -25375,10 +25631,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QM" = ( +"aQM" = ( /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"QN" = ( +"aQN" = ( /obj/structure/bed/chair/wood{ dir = 4 }, @@ -25392,16 +25648,16 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QO" = ( +"aQO" = ( /obj/structure/table/woodentable, /obj/random/plushie, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QP" = ( +"aQP" = ( /obj/structure/table/woodentable, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QQ" = ( +"aQQ" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 8 @@ -25414,40 +25670,39 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_office) -"QR" = ( -/obj/structure/bed/roller, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, +"aQR" = ( /obj/structure/table/glass, -/obj/item/device/defib_kit, -/obj/item/weapon/storage/toolbox/emergency, +/obj/item/bodybag, +/obj/item/device/healthanalyzer, +/obj/random/medical, +/obj/structure/closet/medical_wall{ + pixel_y = 35 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"QS" = ( +"aQS" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/reagentgrinder, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QT" = ( +"aQT" = ( /obj/structure/flora/pottedplant/crystal, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QU" = ( -/obj/structure/flora/pottedplant/unusual, -/obj/machinery/camera/network/research{ - dir = 8 +"aQU" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 9 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"QV" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aQV" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/apc; dir = 8; @@ -25458,13 +25713,14 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QW" = ( -/obj/structure/bed/chair/wood{ +"aQW" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; dir = 1 }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"QX" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aQX" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/eastleft{ dir = 1 @@ -25484,12 +25740,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"QY" = ( +"aQY" = ( /obj/machinery/light, /obj/machinery/media/jukebox, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QZ" = ( +"aQZ" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 4 @@ -25502,10 +25758,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Ra" = ( +"aRa" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rb" = ( +"aRb" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Office"; req_access = list(); @@ -25514,7 +25770,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rc" = ( +"aRc" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/green{ @@ -25532,17 +25788,17 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Rd" = ( +"aRd" = ( /obj/structure/cable/green{ icon_state = "1-8" }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Re" = ( +"aRe" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_decon) -"Rf" = ( +"aRf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Showers and Decontamination"; @@ -25550,7 +25806,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_decon) -"Rg" = ( +"aRg" = ( /obj/machinery/optable, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -25561,17 +25817,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rh" = ( -/obj/machinery/camera/network/research, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"aRh" = ( +/obj/structure/catwalk, +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 5 }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aRi" = ( /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Ri" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"Rj" = ( +"aRj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25584,7 +25841,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rk" = ( +"aRk" = ( /obj/structure/table/standard, /obj/item/toy/plushie/coffee_fox, /obj/item/clothing/glasses/welding, @@ -25598,21 +25855,22 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Rl" = ( +"aRl" = ( /obj/machinery/newscaster, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rm" = ( -/obj/machinery/camera/network/research{ - dir = 4 +"aRm" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"Rn" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aRn" = ( /obj/machinery/newscaster, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_decon) -"Ro" = ( +"aRo" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/green{ @@ -25631,21 +25889,26 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Rp" = ( +"aRp" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, /obj/structure/closet/l3closet/scientist, -/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"Rq" = ( +"aRq" = ( /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"Rr" = ( +"aRr" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower, /obj/random/soap, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"Rs" = ( +"aRs" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ dir = 8; @@ -25661,7 +25924,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"Rt" = ( +"aRt" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/syringes, /obj/item/weapon/storage/box/monkeycubes, @@ -25685,7 +25948,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Ru" = ( +"aRu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -25695,7 +25958,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rv" = ( +"aRv" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -25704,7 +25967,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rw" = ( +"aRw" = ( /obj/structure/table/standard, /obj/item/weapon/extinguisher, /obj/item/clothing/shoes/galoshes, @@ -25712,7 +25975,7 @@ /obj/item/weapon/extinguisher, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Rx" = ( +"aRx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25729,7 +25992,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Ry" = ( +"aRy" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Autopsy Room"; req_access = list(); @@ -25751,7 +26014,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rz" = ( +"aRz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25767,7 +26030,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"RA" = ( +"aRA" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/beakers, /obj/structure/extinguisher_cabinet{ @@ -25777,7 +26040,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"RB" = ( +"aRB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Showers and Decontamination" @@ -25794,7 +26057,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_decon) -"RC" = ( +"aRC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25808,7 +26071,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"RD" = ( +"aRD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -25817,19 +26080,19 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"RE" = ( +"aRE" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"RF" = ( +"aRF" = ( /obj/structure/cable/green{ icon_state = "2-8" }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"RG" = ( +"aRG" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 @@ -25855,43 +26118,53 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"RH" = ( +"aRH" = ( /obj/structure/sink/kitchen{ name = "sink"; pixel_y = 32 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"RI" = ( +"aRI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"RJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" +"aRJ" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 1 }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"RK" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aRK" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/patient_c) -"RL" = ( +"aRL" = ( /obj/machinery/washing_machine, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"RM" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"aRM" = ( +/obj/structure/table/standard, +/obj/item/toy/plushie/purple_fox, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"RN" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aRN" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 }, @@ -25899,11 +26172,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"RO" = ( +"aRO" = ( /obj/item/device/radio/intercom, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_autopsy) -"RP" = ( +"aRP" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Autopsy Room"; req_access = list(); @@ -25912,18 +26185,18 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_autopsy) -"RQ" = ( +"aRQ" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_autopsy) -"RR" = ( +"aRR" = ( /obj/machinery/door/firedoor/glass/hidden{ icon_state = "door_open"; dir = 2 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"RS" = ( +"aRS" = ( /obj/machinery/door/firedoor/glass/hidden{ icon_state = "door_open"; dir = 2 @@ -25936,22 +26209,22 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"RT" = ( +"aRT" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_decon) -"RU" = ( +"aRU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Showers and Decontamination" }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_decon) -"RV" = ( +"aRV" = ( /obj/item/device/radio/intercom, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_decon) -"RW" = ( +"aRW" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 1 @@ -25966,7 +26239,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_main) -"RX" = ( +"aRX" = ( /obj/machinery/light{ dir = 1 }, @@ -25975,14 +26248,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"RY" = ( -/obj/machinery/camera/network/research, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"aRY" = ( +/obj/structure/bed/roller, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"RZ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/device/defib_kit/loaded, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aRZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -25991,7 +26269,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sa" = ( +"aSa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26007,7 +26285,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sb" = ( +"aSb" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -26015,7 +26293,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_c) -"Sc" = ( +"aSc" = ( /obj/machinery/door/firedoor/glass/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -26026,17 +26304,17 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"aSd" = ( +/obj/machinery/door/firedoor/glass/hidden, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Se" = ( +"aSe" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/disposalpipe/segment, @@ -26046,7 +26324,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Sf" = ( +"aSf" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -26055,15 +26333,24 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sg" = ( -/obj/machinery/camera/network/research, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; +"aSg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Sh" = ( +"aSh" = ( /obj/machinery/light{ dir = 1 }, @@ -26075,7 +26362,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Si" = ( +"aSi" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 1 @@ -26090,7 +26377,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_main) -"Sj" = ( +"aSj" = ( /obj/structure/window/basic/full, /obj/structure/window/basic, /obj/structure/window/basic{ @@ -26103,7 +26390,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_main) -"Sk" = ( +"aSk" = ( /obj/structure/bed/chair, /obj/machinery/alarm{ pixel_y = 22 @@ -26123,14 +26410,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"Sl" = ( +"aSl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sm" = ( +"aSm" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/borderfloorwhite{ @@ -26159,7 +26446,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"Sn" = ( +"aSn" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -26183,7 +26470,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"So" = ( +"aSo" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -26194,7 +26481,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_c) -"Sp" = ( +"aSp" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 8 }, @@ -26207,7 +26494,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Sq" = ( +"aSq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -26230,7 +26517,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Sr" = ( +"aSr" = ( /obj/structure/lattice, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ @@ -26260,20 +26547,28 @@ }, /turf/simulated/open, /area/rnd/outpost/xenobiology/outpost_stairs) -"Ss" = ( +"aSs" = ( /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/alarm{ + dir = 1; + pixel_x = 30; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"St" = ( +"aSt" = ( /obj/machinery/door/firedoor/glass/hidden, /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Su" = ( +"aSu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26292,13 +26587,13 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"Sv" = ( +"aSv" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sw" = ( +"aSw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -26308,20 +26603,20 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sx" = ( +"aSx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sy" = ( +"aSy" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sz" = ( +"aSz" = ( /obj/structure/window/basic/full, /obj/structure/window/basic, /obj/structure/window/basic{ @@ -26334,77 +26629,72 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_main) -"SA" = ( +"aSA" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_first_aid) -"SB" = ( +"aSB" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_first_aid) -"SC" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" +"aSC" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + name = "Robotics"; + sortType = "Robotics" }, /obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"SD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"aSD" = ( /obj/structure/sign/redcross, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_first_aid) -"SE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 +"aSE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aSF" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 }, /obj/machinery/light_switch{ dir = 1; - on = 0; - pixel_x = -14; - pixel_y = -24 + pixel_x = 2; + pixel_y = -28 }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/patient_c) -"SF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_command{ - name = "Secondary Control Room" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"SG" = ( +/obj/machinery/librarypubliccomp, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/library) +"aSG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -26423,30 +26713,23 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"SH" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" +"aSH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"SI" = ( +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aSI" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_storage) -"SJ" = ( +"aSJ" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"SK" = ( +"aSK" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -26467,7 +26750,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"SL" = ( +"aSL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -26477,7 +26760,7 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"SM" = ( +"aSM" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 5 }, @@ -26489,7 +26772,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SN" = ( +"aSN" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 5 }, @@ -26501,7 +26784,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SO" = ( +"aSO" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -26544,16 +26827,16 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SP" = ( +"aSP" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/medical/chemistry) -"SQ" = ( +"aSQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"SR" = ( +"aSR" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26567,7 +26850,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SS" = ( +"aSS" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -26585,7 +26868,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ST" = ( +"aST" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26599,7 +26882,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SU" = ( +"aSU" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, @@ -26622,7 +26905,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SV" = ( +"aSV" = ( /obj/machinery/door/airlock/glass_medical{ name = "Chemistry"; req_access = list(); @@ -26642,14 +26925,14 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"SW" = ( +"aSW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"SX" = ( +"aSX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -26662,13 +26945,13 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"SY" = ( +"aSY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"SZ" = ( +"aSZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 }, @@ -26695,7 +26978,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Ta" = ( +"aTa" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -26707,7 +26990,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Tb" = ( +"aTb" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -26748,7 +27031,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Tc" = ( +"aTc" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -26766,7 +27049,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Td" = ( +"aTd" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -26790,59 +27073,54 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Te" = ( -/obj/machinery/camera/network/research{ - dir = 8 +"aTe" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Weapons Testing Range"; + req_access = list(47) }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"Tf" = ( +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aTf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Tg" = ( +"aTg" = ( /turf/simulated/wall, /area/maintenance/lower/mining) -"Th" = ( -/obj/structure/table/standard, -/obj/item/device/lightreplacer, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 +"aTh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 }, -/obj/machinery/camera/network/research{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 }, -/obj/structure/cable/green{ - icon_state = "0-4" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"Ti" = ( +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aTi" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Tj" = ( +"aTj" = ( /obj/effect/landmark/start{ name = "Medical Doctor" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Tk" = ( +"aTk" = ( /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Tl" = ( +"aTl" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -26857,11 +27135,11 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Tm" = ( +"aTm" = ( /obj/machinery/smartfridge/chemistry/chemvator, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Tn" = ( +"aTn" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -26876,11 +27154,11 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"To" = ( +"aTo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Tp" = ( +"aTp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26889,7 +27167,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Tq" = ( +"aTq" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -26913,7 +27191,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Tr" = ( +"aTr" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -26927,51 +27205,57 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"Ts" = ( +"aTs" = ( /obj/random/maintenance/clean, /obj/random/maintenance/clean, /obj/random/contraband, /obj/structure/closet, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"Tt" = ( -/obj/structure/table/standard, -/obj/item/toy/plushie/purple_fox, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/weapon/reagent_containers/spray, -/obj/item/weapon/reagent_containers/spray, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"Tu" = ( -/obj/machinery/camera/network/research{ - dir = 1 - }, -/obj/machinery/light_switch{ +"aTt" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ dir = 1; - pixel_x = 0; - pixel_y = -28 + name = "Bridge"; + req_access = list(19) }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"Tv" = ( -/obj/structure/table/standard, -/obj/item/device/slime_scanner, -/obj/item/device/slime_scanner, -/obj/item/device/multitool, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"Tw" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aTu" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aTv" = ( +/obj/machinery/computer/station_alert/all{ + icon_state = "computer"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aTw" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -26986,221 +27270,27 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"Tx" = ( +"aTx" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/basic, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Ty" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Tz" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TA" = ( +"aTy" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/carry, +/area/shuttle/tether/surface) +"aTA" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"TB" = ( +"aTB" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"TC" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TD" = ( -/obj/machinery/button/windowtint{ - id = "secondary_bridge"; - pixel_x = 4; - pixel_y = 26 - }, -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blastdoors"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/machinery/recharger, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TE" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TH" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/camera/network/command, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TJ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TK" = ( +"aTK" = ( /obj/structure/table/glass, /obj/machinery/light{ icon_state = "tube1"; @@ -27216,310 +27306,10 @@ /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"TL" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TM" = ( -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TP" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/papershredder, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TQ" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TR" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TX" = ( +"aTX" = ( /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"TY" = ( -/obj/machinery/computer/card{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TZ" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ua" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/computer/skills{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ub" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Uc" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ud" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ue" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Uf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ug" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/blue/bordercorner2, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Uh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ui" = ( +"aUi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -27532,279 +27322,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"Uj" = ( -/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/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Uk" = ( -/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/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ul" = ( -/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 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Um" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Un" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secondary_bridge" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Uo" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secondary_bridge" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Up" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secondary_bridge" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Uq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/command{ - name = "Secondary Command Office" - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ur" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secondary_bridge" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Us" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secondary_bridge" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Ut" = ( -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Uu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/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 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Uv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Uw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ux" = ( +"aUx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -27824,7 +27342,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"Uy" = ( +"aUy" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -27854,24 +27372,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/tether/surfacebase/security/lobby) -"Uz" = ( -/obj/structure/table/glass, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"UA" = ( +"aUA" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/filingcabinet/chestdrawer{ @@ -27879,25 +27380,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"UB" = ( -/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/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay foyer."; - id = "SurfMedbayFoyer"; - name = "Medbay Doors Control"; - pixel_x = 4; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"UC" = ( +"aUC" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -27911,7 +27394,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UD" = ( +"aUD" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/weapon/reagent_containers/dropper, @@ -27920,7 +27403,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UE" = ( +"aUE" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -27933,28 +27416,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"UG" = ( +"aUG" = ( /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"UH" = ( +"aUH" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"UI" = ( +"aUI" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -27970,7 +27440,7 @@ dir = 4 }, /area/tether/surfacebase/medical/triage) -"UJ" = ( +"aUJ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -27984,7 +27454,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UK" = ( +"aUK" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -27993,7 +27463,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UL" = ( +"aUL" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -28005,31 +27475,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UM" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/reagentgrinder, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"UN" = ( +"aUN" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -26 }, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"UO" = ( +"aUO" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -28052,7 +27505,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"UP" = ( +"aUP" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -28062,10 +27515,10 @@ /obj/machinery/chemical_dispenser/full, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UQ" = ( +"aUQ" = ( /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UR" = ( +"aUR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -28074,7 +27527,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"US" = ( +"aUS" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -28091,7 +27544,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UT" = ( +"aUT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28112,7 +27565,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"UU" = ( +"aUU" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -28124,7 +27577,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/lobby) -"UV" = ( +"aUV" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -28134,7 +27587,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"UW" = ( +"aUW" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -28146,7 +27599,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"UX" = ( +"aUX" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, /obj/machinery/door/window/eastright{ @@ -28169,7 +27622,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UY" = ( +"aUY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28181,14 +27634,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UZ" = ( +"aUZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Va" = ( +"aVa" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -28200,17 +27653,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Vb" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"Vc" = ( +"aVc" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -28218,7 +27661,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"Vd" = ( +"aVd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28244,7 +27687,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"Ve" = ( +"aVe" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/cups, /obj/item/weapon/storage/box/cups, @@ -28256,7 +27699,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"Vf" = ( +"aVf" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -28268,7 +27711,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/chemistry) -"Vg" = ( +"aVg" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 }, @@ -28285,7 +27728,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Vh" = ( +"aVh" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/extinguisher_cabinet{ @@ -28295,7 +27738,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Vi" = ( +"aVi" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/bed/chair/office/dark{ @@ -28312,7 +27755,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Vj" = ( +"aVj" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, @@ -28323,11 +27766,11 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Vk" = ( +"aVk" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"Vl" = ( +"aVl" = ( /obj/machinery/disposal, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -28343,11 +27786,11 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"Vm" = ( +"aVm" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall/r_wall, /area/tether/surfacebase/medical/chemistry) -"Vn" = ( +"aVn" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -28359,7 +27802,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"Vo" = ( +"aVo" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, @@ -28374,7 +27817,7 @@ /obj/structure/reagent_dispensers/water_cooler/full, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"Vp" = ( +"aVp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -28383,7 +27826,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Vq" = ( +"aVq" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/lightgrey{ dir = 6 @@ -28392,8 +27835,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Vr" = ( +/area/tether/surfacebase/surface_three_hall) +"aVr" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -28402,12 +27845,12 @@ }, /obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Vs" = ( +/area/tether/surfacebase/surface_three_hall) +"aVs" = ( /obj/structure/lattice, /turf/simulated/open, /area/maintenance/lower/mining) -"Vt" = ( +"aVt" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Infirmary Lobby" }, @@ -28419,7 +27862,7 @@ dir = 8 }, /area/tether/surfacebase/medical/lobby) -"Vu" = ( +"aVu" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -28428,8 +27871,8 @@ }, /obj/structure/table/bench/standard, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Vv" = ( +/area/tether/surfacebase/surface_three_hall) +"aVv" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -28452,13 +27895,13 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Vw" = ( +"aVw" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Vx" = ( +"aVx" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -28467,7 +27910,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Vy" = ( +"aVy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/disposalpipe/junction{ @@ -28487,7 +27930,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"Vz" = ( +"aVz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -28510,7 +27953,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VA" = ( +"aVA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -28533,7 +27976,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VB" = ( +"aVB" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -28554,7 +27997,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VC" = ( +"aVC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -28568,7 +28011,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VD" = ( +"aVD" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -28585,7 +28028,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VE" = ( +"aVE" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -28596,7 +28039,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"VF" = ( +"aVF" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -28609,20 +28052,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"VG" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"VH" = ( +"aVH" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -28637,11 +28067,11 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"VI" = ( +"aVI" = ( /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"VJ" = ( +"aVJ" = ( /obj/effect/floor_decal/borderfloor, /obj/structure/cable/green{ d1 = 2; @@ -28655,17 +28085,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"VK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/common) -"VL" = ( +"aVL" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/light, @@ -28687,7 +28107,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"VM" = ( +"aVM" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -28711,7 +28131,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"VN" = ( +"aVN" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -28729,7 +28149,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/lobby) -"VO" = ( +"aVO" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -28756,7 +28176,7 @@ /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VP" = ( +"aVP" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/alarm{ @@ -28774,24 +28194,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VQ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"VR" = ( +"aVR" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -28816,7 +28219,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VS" = ( +"aVS" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, @@ -28828,15 +28231,15 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VT" = ( +"aVT" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VU" = ( +"aVU" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VV" = ( +"aVV" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 8 }, @@ -28851,7 +28254,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"VW" = ( +"aVW" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -28868,7 +28271,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"VX" = ( +"aVX" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -28876,8 +28279,8 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"VY" = ( +/area/tether/surfacebase/surface_three_hall) +"aVY" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -28902,7 +28305,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/common) -"VZ" = ( +"aVZ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -28928,7 +28331,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/common) -"Wa" = ( +"aWa" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -28954,13 +28357,13 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/common) -"Wb" = ( +"aWb" = ( /obj/structure/sign/directions/evac{ dir = 4 }, /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/lobby) -"Wc" = ( +"aWc" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Security Lobby" }, @@ -28982,7 +28385,7 @@ dir = 8 }, /area/tether/surfacebase/security/lobby) -"Wd" = ( +"aWd" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -29000,24 +28403,24 @@ dir = 4 }, /area/tether/surfacebase/security/lobby) -"We" = ( +"aWe" = ( /obj/structure/sign/directions/evac, /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/lobby) -"Wf" = ( +"aWf" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"Wg" = ( +"aWg" = ( /obj/structure/sign/directions/evac{ dir = 8 }, /turf/simulated/wall, /area/tether/surfacebase/medical/lobby) -"Wh" = ( +"aWh" = ( /obj/structure/sign/directions/medical{ dir = 4; pixel_y = 8 @@ -29036,7 +28439,7 @@ }, /turf/simulated/wall, /area/tether/surfacebase/medical/lobby) -"Wi" = ( +"aWi" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29052,49 +28455,8 @@ pixel_y = 30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atm{ - pixel_y = 31 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wl" = ( +/area/tether/surfacebase/surface_three_hall) +"aWl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29115,8 +28477,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wm" = ( +/area/tether/surfacebase/surface_three_hall) +"aWm" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29130,8 +28492,8 @@ /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wn" = ( +/area/tether/surfacebase/surface_three_hall) +"aWn" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29143,8 +28505,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wo" = ( +/area/tether/surfacebase/surface_three_hall) +"aWo" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29159,8 +28521,8 @@ pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wp" = ( +/area/tether/surfacebase/surface_three_hall) +"aWp" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -29175,8 +28537,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wq" = ( +/area/tether/surfacebase/surface_three_hall) +"aWq" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -29194,22 +28556,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ws" = ( +/area/tether/surfacebase/surface_three_hall) +"aWs" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29227,8 +28575,8 @@ pixel_y = 26 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wt" = ( +/area/tether/surfacebase/surface_three_hall) +"aWt" = ( /obj/effect/floor_decal/corner/red{ dir = 1 }, @@ -29247,8 +28595,8 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wu" = ( +/area/tether/surfacebase/surface_three_hall) +"aWu" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29268,16 +28616,16 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wv" = ( +/area/tether/surfacebase/surface_three_hall) +"aWv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ww" = ( +/area/tether/surfacebase/surface_three_hall) +"aWw" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29298,8 +28646,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wx" = ( +/area/tether/surfacebase/surface_three_hall) +"aWx" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29311,8 +28659,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wy" = ( +/area/tether/surfacebase/surface_three_hall) +"aWy" = ( /obj/machinery/sleeper{ dir = 8 }, @@ -29325,7 +28673,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Wz" = ( +"aWz" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29340,8 +28688,8 @@ pixel_y = 31 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WA" = ( +/area/tether/surfacebase/surface_three_hall) +"aWA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ @@ -29355,8 +28703,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WB" = ( +/area/tether/surfacebase/surface_three_hall) +"aWB" = ( /obj/machinery/light{ dir = 1 }, @@ -29371,8 +28719,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WC" = ( +/area/tether/surfacebase/surface_three_hall) +"aWC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29387,14 +28735,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WD" = ( +/area/tether/surfacebase/surface_three_hall) +"aWD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WE" = ( +/area/tether/surfacebase/surface_three_hall) +"aWE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -29402,8 +28750,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WF" = ( +/area/tether/surfacebase/surface_three_hall) +"aWF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29411,8 +28759,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WG" = ( +/area/tether/surfacebase/surface_three_hall) +"aWG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29422,15 +28770,15 @@ /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WH" = ( +/area/tether/surfacebase/surface_three_hall) +"aWH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WI" = ( +/area/tether/surfacebase/surface_three_hall) +"aWI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -29440,13 +28788,13 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WJ" = ( +/area/tether/surfacebase/surface_three_hall) +"aWJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WK" = ( +/area/tether/surfacebase/surface_three_hall) +"aWK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -29462,8 +28810,8 @@ name = "lightsout" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WL" = ( +/area/tether/surfacebase/surface_three_hall) +"aWL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -29473,20 +28821,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WM" = ( +/area/tether/surfacebase/surface_three_hall) +"aWM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WN" = ( +/area/tether/surfacebase/surface_three_hall) +"aWN" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29501,8 +28850,8 @@ pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WO" = ( +/area/tether/surfacebase/surface_three_hall) +"aWO" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29513,21 +28862,21 @@ }, /obj/machinery/light, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WP" = ( +/area/tether/surfacebase/surface_three_hall) +"aWP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 6 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"WQ" = ( +"aWQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"WR" = ( +"aWR" = ( /obj/structure/table/standard, /obj/item/weapon/gun/energy/taser/xeno, /obj/item/weapon/melee/baton/slime/loaded, @@ -29538,7 +28887,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"WS" = ( +"aWS" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29550,8 +28899,8 @@ /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WT" = ( +/area/tether/surfacebase/surface_three_hall) +"aWT" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, @@ -29561,8 +28910,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WU" = ( +/area/tether/surfacebase/surface_three_hall) +"aWU" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29575,8 +28924,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WV" = ( +/area/tether/surfacebase/surface_three_hall) +"aWV" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29586,8 +28935,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WW" = ( +/area/tether/surfacebase/surface_three_hall) +"aWW" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -29613,13 +28962,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"WX" = ( +"aWX" = ( /obj/structure/cable/green{ icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor/grid, /area/tether/surfacebase/security/lobby) -"WY" = ( +"aWY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -29631,7 +28980,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"WZ" = ( +"aWZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "2-4" @@ -29643,7 +28992,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"Xa" = ( +"aXa" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -29662,7 +29011,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"Xb" = ( +"aXb" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/wardrobe/red, /obj/item/device/radio/intercom/department/security{ @@ -29673,7 +29022,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"Xc" = ( +"aXc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -29683,13 +29032,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"Xd" = ( +"aXd" = ( /obj/random/maintenance/security, /obj/random/mre/dessert, /obj/item/toy/bosunwhistle, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"Xe" = ( +"aXe" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -29709,13 +29058,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xf" = ( +"aXf" = ( /obj/structure/bookcase{ name = "bookcase (Adult)" }, /turf/simulated/floor/wood, /area/library) -"Xg" = ( +"aXg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -29724,7 +29073,7 @@ }, /turf/simulated/floor/wood, /area/library) -"Xh" = ( +"aXh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29733,7 +29082,7 @@ }, /turf/simulated/floor/wood, /area/library) -"Xi" = ( +"aXi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29743,7 +29092,7 @@ /obj/machinery/light/small, /turf/simulated/floor/wood, /area/library) -"Xj" = ( +"aXj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -29752,7 +29101,7 @@ }, /turf/simulated/floor/wood, /area/library) -"Xk" = ( +"aXk" = ( /obj/structure/sign/directions/medical{ dir = 1; icon_state = "direction_med"; @@ -29774,7 +29123,7 @@ }, /turf/simulated/wall, /area/library) -"Xl" = ( +"aXl" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ dir = 4 @@ -29788,7 +29137,7 @@ dir = 4 }, /area/library) -"Xm" = ( +"aXm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29811,7 +29160,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xo" = ( +"aXo" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -29825,18 +29174,7 @@ }, /turf/simulated/floor/wood, /area/library) -"Xp" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/library) -"Xq" = ( +"aXq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29859,7 +29197,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xr" = ( +"aXr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29870,7 +29208,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xs" = ( +"aXs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29884,7 +29222,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xt" = ( +"aXt" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29911,7 +29249,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xu" = ( +"aXu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29921,7 +29259,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xv" = ( +"aXv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29938,20 +29276,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xw" = ( -/obj/item/device/radio/intercom{ - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/wood, -/area/library) -"Xx" = ( +"aXx" = ( /obj/structure/closet/hydrant{ pixel_x = 32 }, /turf/simulated/floor/wood, /area/library) -"Xy" = ( +"aXy" = ( /obj/structure/table/standard, /obj/item/weapon/gun/energy/taser/xeno, /obj/machinery/recharger/wallcharger{ @@ -29961,7 +29292,7 @@ /obj/item/weapon/melee/baton/slime/loaded, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Xz" = ( +"aXz" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -29977,7 +29308,7 @@ /obj/machinery/disposal, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"XA" = ( +"aXA" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -29989,20 +29320,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"XB" = ( -/obj/machinery/papershredder, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/camera/network/security, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/frontdesk) -"XC" = ( +"aXC" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -30016,25 +29334,7 @@ }, /turf/simulated/floor/wood, /area/library) -"XD" = ( -/obj/machinery/camera/network/outside{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_dirty/virgo3b, -/area/tether/surfacebase/outside/outside3) -"XE" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 2; - pixel_y = -28 - }, -/turf/simulated/floor/wood, -/area/library) -"XF" = ( +"aXF" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -30043,7 +29343,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"XG" = ( +"aXG" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -30053,7 +29353,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/rnd/research_storage) -"XH" = ( +"aXH" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -30065,7 +29365,7 @@ /obj/item/weapon/implantcase/chem, /turf/simulated/floor/plating, /area/rnd/research_storage) -"XI" = ( +"aXI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -30076,7 +29376,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/rnd/research_storage) -"XJ" = ( +"aXJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -30084,7 +29384,7 @@ /obj/item/weapon/locator, /turf/simulated/floor/plating, /area/rnd/research_storage) -"XK" = ( +"aXK" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ d1 = 1; @@ -30106,7 +29406,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"XL" = ( +"aXL" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -30115,7 +29415,7 @@ }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"XM" = ( +"aXM" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -30133,13 +29433,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"XN" = ( +"aXN" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/rnd/research_storage) -"XO" = ( +"aXO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/structure/disposalpipe/segment{ @@ -30148,18 +29448,18 @@ }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"XP" = ( +"aXP" = ( /obj/structure/disposalpipe/up{ dir = 8 }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"XQ" = ( +"aXQ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/rnd/research_storage) -"XR" = ( +"aXR" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -30172,7 +29472,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/rnd/research_storage) -"XS" = ( +"aXS" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -30191,7 +29491,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"XT" = ( +"aXT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -30205,38 +29505,62 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"XU" = ( +"aXV" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/device/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/device/radio, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aXW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aXX" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aXY" = ( +/obj/item/device/aicard, +/obj/item/weapon/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/ids, +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/standard_operating_procedure, /obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() + dir = 8; + pixel_x = -24 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"XZ" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aXZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -30249,7 +29573,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"Ya" = ( +"aYa" = ( /obj/structure/closet, /obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, /obj/random/maintenance/clean, @@ -30258,7 +29582,31 @@ /obj/random/maintenance/clean, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"Yd" = ( +"aYb" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"aYd" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -30274,7 +29622,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"Ye" = ( +"aYe" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -30286,7 +29634,48 @@ }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"Yk" = ( +"aYf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYg" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYi" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -30306,7 +29695,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"Yl" = ( +"aYl" = ( /obj/structure/lattice, /obj/structure/disposalpipe/down, /obj/structure/cable/green{ @@ -30325,19895 +29714,21645 @@ }, /turf/simulated/open, /area/vacant/vacant_shop) -"Zf" = ( +"aYm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYn" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aYo" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYq" = ( +/obj/structure/dogbed, +/mob/living/simple_mob/animal/passive/dog/corgi/Ian, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aYr" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYs" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Bridge" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYv" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 8; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "bridge blast"; + name = "Bridge Blastdoors"; + pixel_x = -6; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYw" = ( +/obj/machinery/photocopier, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYx" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYy" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYz" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYA" = ( +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYB" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYD" = ( +/obj/machinery/computer/power_monitor{ + icon_state = "computer"; + dir = 8; + throwpass = 1 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYE" = ( +/obj/effect/floor_decal/corner/paleblue/full, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYF" = ( +/obj/machinery/computer/med_data{ + icon_state = "computer"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYG" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYH" = ( +/obj/effect/floor_decal/corner/blue/full, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYI" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYJ" = ( +/obj/effect/floor_decal/corner/blue/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYK" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYL" = ( +/obj/machinery/computer/rcon{ + icon_state = "computer"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYM" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYO" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/commandmaint) +"aYP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYQ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYR" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYT" = ( +/turf/simulated/open, +/area/bridge_hallway) +"aYU" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/bridge_hallway) +"aYV" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aYW" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aYX" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYZ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZb" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/hop, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -10 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZf" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"ZK" = ( +"aZh" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZi" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + icon_state = "down-supply"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + icon_state = "down-scrubbers"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/turf/simulated/open, +/area/maintenance/commandmaint) +"aZj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 8; + pixel_y = -26 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZk" = ( +/obj/structure/closet/wardrobe/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZm" = ( +/obj/item/clothing/glasses/omnihud/all, +/obj/structure/closet/secure_closet/captains, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZn" = ( +/obj/structure/table/reinforced, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = 32 + }, +/obj/machinery/recharger{ + pixel_y = 0 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZo" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZp" = ( +/obj/structure/closet/secure_closet/hop, +/obj/item/clothing/glasses/omnihud, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZq" = ( +/obj/structure/closet/secure_closet/hop2, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZs" = ( +/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/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aZt" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aZu" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aZv" = ( +/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/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = list(57) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/hop) +"aZw" = ( +/obj/item/weapon/bedsheet/captain, +/obj/structure/bed/padded, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZy" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZA" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZB" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZC" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZD" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "hop_office" + }, +/obj/structure/window/reinforced/polarized{ + icon_state = "rwindow"; + dir = 4; + id = "iaa_office" + }, +/obj/structure/cable/green{ + icon_state = "0-1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/hop) +"aZE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZF" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/structure/window/basic, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"aZH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"aZI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/photo_album{ + pixel_y = -10 + }, +/obj/item/weapon/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZK" = ( /obj/machinery/sleep_console, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) +"aZL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZM" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -8; + pixel_y = -26 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZN" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Personnel's Office" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZP" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZQ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "hop_office" + }, +/obj/structure/window/reinforced/polarized{ + icon_state = "rwindow"; + dir = 4; + id = "iaa_office" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/hop) +"aZR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aZT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZU" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/skills{ + icon_state = "laptop"; + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/melee/chainofcommand, +/obj/item/weapon/coin/phoron{ + desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; + name = "limited edition phoron coin" + }, +/obj/item/weapon/folder/blue_captain, +/obj/item/weapon/stamp/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZW" = ( +/obj/machinery/door/airlock/command{ + name = "Colony Director's Quarters"; + req_access = list(20) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZZ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bab" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bac" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bad" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bae" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"baf" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/armor/captain, +/obj/item/clothing/head/helmet/space/capspace, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/card/id/gold/captain/spare, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Colony Director's Storage"; + req_access = list(20) + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bag" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bai" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"baj" = ( +/obj/structure/displaycase, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bak" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bal" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bam" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"ban" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bao" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + id = "hop_office"; + layer = 3.3; + pixel_x = 3; + pixel_y = -29 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "hop_office_desk"; + layer = 3.3; + name = "Desk Privacy Shutter"; + pixel_x = 10; + pixel_y = -29 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bap" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baq" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"bar" = ( +/obj/machinery/computer/communications, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bas" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bat" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bau" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Captain's Office" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bav" = ( +/obj/machinery/photocopier, +/obj/machinery/firealarm{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baw" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/bridge) +"bax" = ( +/obj/machinery/account_database, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bay" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"baz" = ( +/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/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baA" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/bridge) +"baG" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"baH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + 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/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"baL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baM" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/perfect_tele{ + desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command. This one is the Colony Director's, and they are authorized to use it."; + name = "director's translocator" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"baN" = ( +/obj/machinery/papershredder, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baQ" = ( +/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/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + 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/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + 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/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baU" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baV" = ( +/obj/machinery/computer/card, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baX" = ( +/obj/machinery/firealarm{ + pixel_x = -30 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bba" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbb" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/command_guide, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbc" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbi" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbj" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbp" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbq" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbs" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbt" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbu" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbv" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbw" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbx" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue_hop, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -8; + pixel_y = -26 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bby" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbB" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "HoP Office"; + sortType = "HoP Office" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbC" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbE" = ( +/obj/structure/dogbed, +/obj/structure/curtain/open/bed, +/mob/living/simple_mob/animal/passive/fox/renault, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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{ + icon_state = "bordercolor"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbH" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bcY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bdD" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + dir = 2; + icon_state = "extinguisher_closed"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bdX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) (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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (2,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (3,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (4,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (5,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (6,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (7,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (8,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (9,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (10,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (11,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (12,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (13,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (14,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (15,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (16,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (17,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (18,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (19,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (20,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (21,1,1) = {" -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 -ac -ac -ab -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 -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (22,1,1) = {" -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 -ac -ac -ac -ac -ac -ac -dG -dG -dG -dG -dG -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +adG +adG +adG +adG +adG +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (23,1,1) = {" -aa -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 -ac -dG -dG -dG -dG -dG -ac -ac -ac -ac -ac -ac -ac -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 -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +adG +adG +adG +adG +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (24,1,1) = {" -aa -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 -ac -dH -el -eX -eX -gt -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +adH +ael +aeX +aeX +agt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (25,1,1) = {" -aa -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 -ac -dI -em -ab -ab -gu -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +adI +aem +aab +aab +agu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (26,1,1) = {" -aa -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 -ac -ac -ac -dJ -en -eY -eY -gv -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adJ +aen +aeY +aeY +agv +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (27,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (28,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Ff -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aFf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (29,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Ff -Fh -Ff -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aFf +aFh +aFf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (30,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Ff -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 -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aFf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (31,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -Om -dG -Np -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -Np -dG -dG -dG -dG -dG -dG -dG -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +aQD +adG +adG +adG +adG +adG +adG +adG +adG +aQD +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (32,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -ac -fF -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -Om -dG -OR -Pd -Pv -Pv -Pv -Pv -Pv -Pv -QQ -Ra -Ra -Ra -Ra -Ra -RW -Sj -SA -SA -SA -SA -SA -Ob -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +aOR +aPd +aPv +aPv +aPv +aPv +aPv +aPv +aQQ +aRa +aRa +aRa +aRa +aRa +aRW +aSj +aSA +aSA +aSA +aSA +aSA +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (33,1,1) = {" -aa -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 -ac -ac -ac -ac -rW -Dq -Dq -rW -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -Om -dG -OR -Pe -Pw -PN -Qb -Ql -Qx -QH -Mn -Ra -OV -Pf -Nd -Ra -RX -PF -SA -MJ -Ta -QR -SA -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +arW +aDq +aDq +arW +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +aOR +aAt +aPw +aPN +aQb +aQl +aQx +aQH +aMn +aRa +aOV +aPf +aNd +aRa +aRX +aPF +aSA +aQR +aTa +aRY +aSA +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (34,1,1) = {" -aa -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 -ac -ac -ac -CZ -rW -Da -Da -rW -DQ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -Om -dG -OR -BT -Px -PO -PO -PO -Qy -QI -QS -Ra -Rh -Ru -RI -RO -RY -Sl -SD -SQ -Tf -Zf -Tx -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCZ +arW +aDa +aDa +arW +aDQ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +aOR +aBT +aPx +aPO +aPO +aPO +aQy +aQI +aQS +aRa +aBu +aRu +aRI +aRO +aSx +aSl +aSD +aSQ +aTf +aZf +aTx +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (35,1,1) = {" -aa -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 -ac -ac -CZ -Dc -Di -De -De -iF -Dc -DQ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -MG -MG -On -dG -OR -Pg -Py -PO -TA -PO -Qy -QJ -PO -Rb -Ri -Rg -Ri -RP -RZ -Jy -Kz -Li -Wy -XF -SA -dG -Os -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCZ +aDc +aDi +aDe +aDe +aiF +aDc +aDQ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aMG +aMG +aOn +adG +aOR +aPg +aPy +aPO +aTA +aPO +aQy +aQJ +aPO +aRb +aRi +aRg +aRi +aRP +aRZ +aJy +aKz +aLi +aWy +aXF +aSA +adG +aOs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (36,1,1) = {" -aa -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 -CZ -Dc -Df -De -Dj -DA -De -Df -Dc -DQ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -MG -MG -MG -MG -MG -MG -NU -dG -dG -dG -dG -OR -Ph -Pz -PO -PO -Qm -Qz -QK -QT -Ra -RH -Rj -Rv -Ra -Sa -Jz -KA -Lk -ZK -WQ -Tx -dG -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCZ +aDc +aDf +aDe +aDj +aDA +aDe +aDf +aDc +aDQ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aMG +aMG +aMG +aMG +aMG +aMG +aNU +adG +adG +aQD +adG +aOR +aPh +aPz +aPO +aPO +aQm +aQz +aQK +aQT +aRa +aRH +aRj +aRv +aRa +aSa +aJz +aKA +aLk +aZK +aWQ +aTx +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (37,1,1) = {" -aa -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 -rW -rW -Dd -Df -Dj -Dr -DB -DJ -Df -DT -rW -rW -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fF -ac -ac -ac -ac -ac -ac -ac -dG -dG -dG -dG -Np -dG -dG -dG -dG -Of -Of -Of -Of -Of -Mm -PO -Qc -Qo -QL -Xz -QU -Ra -MM -Rx -PA -Ra -MK -Mq -SB -PV -Te -XA -SA -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +arW +arW +aDd +aDf +aDj +aDr +aDB +aDJ +aDf +aDT +arW +arW +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +adG +adG +adG +adG +adG +adG +adG +adG +aOf +aOf +aOf +aOf +aOf +aMm +aPO +aQc +aQo +aQL +aXz +aAk +aRa +aMM +aRx +aPA +aRa +aMK +aMq +aSB +aPV +aBM +aXA +aSA +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (38,1,1) = {" -aa -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 -CY -Da -De -Dg -Dk -Ds -Ds -DK -DA -De -Da -DP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cj -lH -lH -lH -GL -HE -cj -cj -HE -cj -cj -HE -GL -cj -HE -cj -cj -HE -cj -NV -NZ -Of -Oo -HM -Oq -Of -OR -PP -OR -Qq -OR -OR -OR -Ra -Rl -Ry -Ra -RQ -Sc -JA -CO -CO -CO -CO -CO -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDa +aDe +aDg +aDk +aDs +aDs +aDK +aDA +aDe +aDa +aDP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +alH +alH +alH +aGL +aHE +acj +acj +aHE +acj +acj +aHE +aGL +acj +aHE +acj +acj +aHE +acj +aNV +aNZ +aOf +aOo +aHM +aBJ +aOf +aOR +aPP +aOR +aQq +aOR +aOR +aOR +aRa +aRl +aRy +aRa +aRQ +aSc +aSd +aCO +aCO +aCO +aCO +aCO +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (39,1,1) = {" -aa -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 -CY -Da -De -Dh -Dl -Ds -Ds -DL -DR -De -Da -DP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cj -cm -BV -Cc -Gt -Cc -Ip -IW -Cc -Cc -BV -Cc -LL -IW -Cc -Mi -Cc -Cc -No -NS -Et -Go -Op -Op -Op -Ir -IX -QM -Qe -QA -QB -QM -QM -Mo -Rm -Rz -PQ -RR -Sd -JD -LR -Oh -LM -Ml -NR -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDa +aDe +aDh +aDl +aDs +aDs +aDL +aDR +aDe +aDa +aDP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +amu +aBV +aCc +aGt +aCc +aIp +aIW +aCc +aCc +aBV +aCc +aCc +aIW +aCc +aMi +aCc +aCc +axP +aNS +aEt +aGo +aOp +aOp +aOp +aIr +aIX +aQM +aQe +aQA +aQB +aQM +aEf +aMo +aQM +aRz +aPQ +aRR +aJA +aSg +aLR +aOh +aLM +aMl +aNR +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (40,1,1) = {" -aa -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 -rW -rW -Dd -Df -Dm -Dt -DC -DM -Df -DT -rW -rW -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -cj -kW -FK -BZ -Gr -Vp -Vp -Vp -IY -Vp -HF -JC -LN -Jx -Vp -Vp -Vp -Vp -JE -OD -Ey -Pj -KB -OE -Lj -Pj -IZ -PR -Qn -Rc -QC -QC -QC -QC -PR -Ro -QC -RS -Se -Qd -Sr -LP -Ml -Ml -NR -CO -Ob -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +arW +arW +aDd +aDf +aDm +aDt +aDC +aDM +aDf +aDT +arW +arW +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +akW +aFK +aBZ +aGr +aVp +aVp +aVp +aIY +aVp +aHF +aJC +aLN +aJx +aVp +aVp +aVp +aVp +aJE +aOD +aEy +aPj +aKB +aOE +aLj +aPj +aIZ +aPR +aQn +aRc +aQC +aQC +aQC +aQC +aPR +aRo +aQC +aRS +aSe +aFF +aSr +aBf +aMl +aMl +aNR +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (41,1,1) = {" -aa -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 -ac -Db -Dc -Df -Dn -Du -DD -DN -Df -Dc -DS -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fF -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cj -oW -Cm -wh -GM -Nn -Iq -JB -Nn -Nn -sf -Nn -Nn -Nn -Mk -MH -Nc -Nn -NA -Or -Et -Gs -KC -Op -Mj -Is -Ja -QM -Qf -Qr -PS -QM -QM -Mp -QM -Qp -PS -RR -Sd -Ss -Es -LQ -NQ -Ml -NR -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aDb +aDc +aDf +aDn +aDu +aDD +aDN +aDf +aDc +aDS +aac +aac +aac +aac +aQU +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +aoW +aCm +awh +aGM +aNn +aEw +aJB +aNn +aNn +asf +aNn +aNn +aul +aNn +aMH +aNc +aNn +aNA +aOr +aEt +aGs +aKC +aOp +aMj +aIs +aJa +aQM +ayw +aQr +aPS +aQM +aQM +aMp +aQM +aQp +aPS +aRR +aJD +aSs +aEs +aLQ +aNQ +aMl +aNR +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (42,1,1) = {" -aa -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 -ac -ac -Db -Dc -Do -Dv -DE -DO -Dc -DS -ac -ac -gw -gw -gw -gw -kS -lw -lw -lw -kS -kS -kS -lw -lw -lw -kS -kS -kS -rU -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -qw -FL -BK -iE -GO -cj -cj -cj -GO -cj -cj -cj -GO -cj -cj -cj -NL -cj -NV -NZ -Of -HG -HS -HU -Of -PE -PT -OW -Qs -OW -OW -OW -Re -Rn -RB -Re -RT -Sc -St -CO -CO -CO -CO -CO -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aDb +aDc +acm +aDv +aDE +aDO +aDc +aDS +aac +aac +agw +agw +agw +agw +akS +alw +alw +alw +akS +akS +akS +alw +alw +alw +akS +akS +akS +arU +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqw +aFL +aBK +aiE +aGO +acj +acj +aGO +acj +acj +aGO +acj +acj +aGO +acj +acj +aNL +acj +aNV +aNZ +aOf +auz +aHS +aHU +aOf +aPE +aPT +aOW +aQs +aOW +aOW +aOW +aRe +aRn +aRB +aRe +aRT +aSc +aSt +aCO +aCO +aCO +aCO +aCO +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (43,1,1) = {" -aa -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 -ac -ac -ac -Db -rW -Dw -DF -rW -DS -ac -ac -ac -gw -ip -jt -kl -kS -lx -mm -mM -nv -nZ -oq -mM -pm -mM -qr -rc -rv -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -qA -zN -Fp -GN -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dG -dG -dG -dG -dG -dG -Of -Of -Of -Of -Of -PB -PU -Qg -Qt -QD -QN -QV -Re -NT -RC -ML -Re -MK -Sv -SI -Rk -Th -Rw -SI -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aDb +arW +aDw +aDF +arW +aDS +aac +aac +aac +agw +aip +ajt +akl +akS +alx +amm +amM +anv +anZ +aoq +amM +apm +amM +aqr +arc +arv +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqA +aqz +aFp +aGN +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +adG +adG +adG +adG +adG +aOf +aOf +aOf +aOf +aOf +aPB +aPU +aQg +aQt +azr +aQN +aQV +aRe +aNT +aRC +aML +aRe +aMK +aSv +aSI +aRk +aBa +aRw +aSI +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (44,1,1) = {" -aa -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 -ac -ac -ac -ac -CY -Dx -DG -DP -ac -ac -ac -ac -gw -iq -ju -km -kS -ly -mn -mN -mN -mN -mN -mN -pn -pI -pI -rd -rw -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -qC -BQ -FJ -GP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dG -NB -NM -NM -NW -dG -dG -dG -dG -OW -Pk -PG -Jb -Qh -Qu -QE -QO -QW -Re -Rp -RD -RL -Re -Sa -Sv -SJ -SW -Ti -WR -SI -dG -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDx +aDG +aDP +aac +aac +aac +aac +agw +aiq +aju +akm +akS +aly +amn +amN +amN +amN +amN +amN +apn +apI +apI +ard +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqC +aBQ +aFJ +aGP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +aNB +aNM +aNM +aNW +adG +adG +aRh +adG +aOW +aAO +aPG +aJb +aQh +aQu +aQE +aQO +aDU +aRe +aMJ +aRD +aRL +aRe +aSa +aSv +aSJ +aSW +aTi +aWR +aSI +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (45,1,1) = {" -aa -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 -ac -ac -ac -ac -CY -Dy -DH -DP -ac -ad -gw -gw -gw -ir -jv -kn -kS -lz -mo -mO -nw -nw -nw -nw -nw -nw -qs -re -rw -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -qF -BN -Cd -iE -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dG -NC -ab -ab -ab -NM -NM -Ot -dG -OX -Pl -PH -PW -Qi -Qv -QP -QP -Qj -Rf -Rq -RE -Rq -RU -Sf -Sw -LO -SX -Rd -Xy -SI -dG -OF -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDy +aDH +aDP +aac +aac +agw +agw +agw +air +ajv +akn +akS +ahq +amo +amO +anw +anw +anw +anw +anw +anw +aqs +are +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aQW +aiE +aqF +aBN +aCd +aiE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +aNC +aab +aab +aab +aNM +aNM +aOt +adG +aOX +aPl +aPH +aPW +aQi +aQv +aQP +aQP +aQj +aRf +aRq +aRE +aRq +aRU +aSf +aSw +aLO +aSX +aRd +aXy +aSI +adG +aOF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (46,1,1) = {" -aa -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 -rW -Dz -Dz -rW -ac -ac -gw -hd -hS -is -jw -ko -kS -lA -mp -mP -nx -nx -nx -nx -nx -nx -qt -re -rw -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -qx -wb -Gl -iE -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dG -ND -MG -MG -MG -MG -ab -Om -dG -OY -Pm -PI -PX -TB -Qj -QG -QG -Tu -Re -Rr -RF -RM -Re -Sg -Sx -SJ -SY -Tk -Tv -SI -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +arW +aDz +aDz +arW +aac +aac +agw +ahd +ahS +ais +ajw +akn +akS +alA +amp +amP +anx +anx +anx +anx +anx +anx +aqt +are +aMI +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqx +awb +ang +aiE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +aND +aMG +aMG +aMG +aMG +aab +aOm +adG +aOY +aPm +aPI +aPX +aTB +aQj +aQG +aQG +azU +aRe +aRr +aRF +aRp +aRe +aSl +aSx +aSJ +aSY +aTk +aDo +aSI +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (47,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gw -gw -gw -it -jx -kn -kS -lB -mp -mP -nx -nx -nx -nx -nx -nx -qt -re -rw -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -sd -BQ -Gn -iE -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Np -dG -dG -dG -dG -dG -Oi -Om -dG -OZ -Pn -PJ -PY -Qk -Qw -Qj -Qj -QY -Re -Rs -OG -OS -RV -Sh -Sy -SI -Tt -Rt -RA -SI -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +agw +agw +agw +ait +ajx +akn +akS +alB +amp +amP +anx +anx +anx +anx +anx +anx +aqt +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +asd +aBQ +aGn +aiE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aQU +adG +adG +adG +adG +adG +adG +aOi +aOm +adG +aOZ +aPn +aPJ +aPY +aQk +aQw +aQj +aQj +aQY +aRe +aRs +aOG +aOS +aRV +aSh +aSy +aSI +aRM +aRt +aRA +aSI +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (48,1,1) = {" -aa -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 -fF -ac -ac -ac -ac -ac -ac -ac -gw -bz -bB -eU -cZ -kn -kS -lC -mp -mQ -ny -ny -or -oS -nx -nx -qt -re -rx -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -sg -zN -Gp -iE -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -dG -Oi -Om -dG -OW -Po -PK -PK -PK -PK -PK -PK -QZ -Re -Re -Re -Re -Re -Si -Sz -SI -SI -SI -SI -SI -Ob -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +agw +abz +abB +aeU +acZ +akn +akS +alC +amp +amQ +any +any +aor +aoS +anx +anx +aqt +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +asg +azN +aGp +aiE +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +adG +aOi +aOm +adG +aOW +aPo +aPK +aPK +aPK +aPK +aPK +aPK +aQZ +aRe +aRe +aRe +aRe +aRe +aSi +aSz +aSI +aSI +aSI +aSI +aSI +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (49,1,1) = {" -aa -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 -ac -bh -bh -bh -bh -bh -bh -bh -bh -bh -bh -bh -bh -Uj -DW -kn -kS -lD -mq -mQ -ny -ny -lE -oT -nx -nx -qt -re -rw -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fF -ac -ac -iE -rj -BP -Fo -GQ -Ba -BU -Cx -JF -KD -Ll -LS -LS -MN -LS -LS -LS -zL -zL -zL -dG -Oi -Om -dG -Pa -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -Pa -dG -dG -dG -dG -dG -dG -dG -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aQW +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +aby +aDW +akn +akS +alD +amq +amQ +any +any +alE +aoT +anx +anx +aqt +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +arj +aBP +aFo +aGQ +aoL +aBU +aCx +aJF +aFw +aLl +aLS +aLS +aMN +aLS +aLS +aLS +azL +azL +azL +adG +aOi +aOm +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +aRh +adG +adG +adG +adG +adG +adG +adG +adG +aRh +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (50,1,1) = {" -aa -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 -ac -bh -bv -bv -bv -bv -bv -PC -Tz -TL -TQ -TY -bh -Uk -DW -kn -kT -lE -mr -mQ -ny -ny -os -oU -nx -nx -qt -re -rw -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -hh -hp -hp -hp -hh -fK -fK -fK -fK -fK -oy -ut -Bp -Gq -zL -FN -BW -BW -JG -KE -Ll -LT -LS -LT -LS -Nq -LS -zL -zL -zL -dG -Oi -ab -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +alY +alY +aqO +aqO +aqO +aqO +aqO +alo +abA +aDW +akn +akT +alE +amr +amQ +any +any +aos +aoU +anx +anx +aqt +are +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahh +ahp +ahp +ahp +ahh +afK +afK +afK +afK +afK +aoy +amT +aBp +aGq +azL +aFN +aBW +aBW +aJG +aKE +aLl +aLT +aLS +aLT +aLS +aNq +aLS +azL +azL +azL +adG +aOi +aab +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (51,1,1) = {" -aa -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 -ac -bh -bv -bv -bv -bv -bv -PD -TC -TM -TR -TZ -Un -Ul -jA -kp -kT -lE -mr -mQ -ny -ny -ny -ny -ny -ny -qu -re -rw -kS -Ef -ac -ac -ac -ac -ac -ac -ac -ac -hj -hr -pA -tV -hh -uu -uu -xF -yr -Be -fK -Am -FM -Cf -zL -Bb -BW -Cy -JH -KF -Lm -LS -LS -LS -LS -LS -NE -zL -zL -zL -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +alY +alY +aqO +aqO +aqO +aqO +aqO +alo +air +ajA +akp +akT +alE +amr +amQ +any +any +any +any +any +any +aqu +are +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +ahr +apA +atV +ahh +auu +auu +axF +ayr +aBe +afK +aAm +aFM +aCf +azL +aBb +aBW +aCy +aJH +aKF +aLm +aLS +aLS +aLS +aLS +aLS +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (52,1,1) = {" -aa -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 -bh -bh -bh -bh -bh -bh -bh -TD -TM -TS -Ua -Uo -Um -DW -kq -kU -lF -mr -mQ -ny -ny -ny -ny -ny -ny -qu -re -ry -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -hj -hT -tp -tW -hh -uu -uu -uu -yB -Bg -fK -AY -FO -Cg -zL -Bc -BW -BW -JI -KE -Ll -LT -LS -LT -LS -Nr -LS -zL -zL -zL -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +air +aDW +akq +akU +alF +amr +amQ +any +any +any +any +any +any +aqu +are +ary +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +ahT +atp +atW +ahh +auu +auu +auu +ayB +aBg +afK +aAY +aFO +aCg +azL +aBc +aBW +aBW +aJI +aKE +aLl +aLT +aLS +aLT +aLS +aNr +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (53,1,1) = {" -aa -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 -ac -bh -bw -cl -cX -ht -Oa -RJ -TE -TM -TT -Ub -Uo -Um -jB -kr -kV -lG -ms -mR -nz -nz -nz -nz -nz -nz -qv -re -rw -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -hj -hT -tq -tX -hh -uu -uu -xO -yB -Bh -zG -Cs -FP -Cq -Al -Bd -Ca -Jc -JJ -KG -Ln -LS -LS -LS -LS -LS -LS -zL -zL -zL -Ob -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +air +acW +akr +akV +alG +ams +amR +anz +anz +anz +anz +anz +anz +aqv +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +ahT +atq +akt +ahh +auu +auu +axO +ayB +aBh +aBj +aCs +aFP +aCq +aAl +aBd +aCa +aJc +aJJ +aKG +aLl +aLS +aLS +aLS +aLS +aLS +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (54,1,1) = {" -aa -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 -ac -bh -by -cn -cY -cn -Og -SC -TF -TM -TU -Uc -Uo -Ut -jC -ks -kT -lE -mt -mS -mN -mN -mN -mN -mN -pJ -pI -rf -rz -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -hh -hU -tr -tY -hh -uu -uu -xO -yN -Bj -Fl -An -Bw -Ct -CD -FQ -BW -BW -JK -KE -Ll -LT -LS -LT -LS -Nr -LS -zL -zL -zL -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +agI +acX +aks +akT +alE +amt +amS +amN +amN +amN +amN +amN +apJ +apI +arf +arz +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahh +ahU +atr +atY +ahh +auu +auu +axO +ayN +aAT +aBw +aCt +aCC +aCD +aCI +aFl +aBW +aBW +aJK +aKE +aLl +aLT +aLS +aLT +aLS +aNr +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (55,1,1) = {" -aa -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 -ac -bh -bA -cV -cn -DU -OT -SF -TG -TN -TV -Ue -Up -Uu -jD -kt -kX -lI -mu -mT -mu -mu -mu -mu -mu -pK -rg -rg -rA -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -hj -iu -tB -ua -hh -uu -uu -xO -yP -Bu -fK -Bf -FR -CK -zL -XU -BW -CB -JL -KH -Lo -LS -LS -LS -LS -LS -NE -zL -zL -zL -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +air +aWF +akx +akT +acY +arg +adK +arg +arg +arg +arg +arg +aeo +arg +arg +arA +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +aiu +atB +aua +ahh +auu +auu +axO +ayP +auc +afK +amV +aFR +aCK +azL +aFQ +aBW +aJd +aJL +aKH +aLo +aLS +aLS +aLS +aLS +aLS +aLS +azL +azL +azL +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (56,1,1) = {" -aa -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 -bh -bC -cn -eo -cn -OU -SH -TH -TO -TW -Uf -Uq -Ud -dK -ku -kS -lJ -mv -mU -mv -mv -mv -mv -mv -pL -rh -rh -rB -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -hj -iw -tC -ub -hh -uV -uV -yk -yT -BH -fK -Bi -FS -CN -zL -BI -BW -BW -JG -KE -Ll -LT -LS -LT -LS -Nr -LS -zL -zL -zL -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +air +aWJ +aku +akS +aMS +amv +amU +amv +amv +amv +amv +amv +apL +arh +arh +arB +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +aiw +atC +aub +ahh +auV +auV +ayk +ayT +aBH +afK +aBi +aFS +aCN +azL +aBI +aBW +aBW +aJG +aKE +aLl +aLT +aLS +aLT +aLS +aNr +aLS +azL +azL +azL +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (57,1,1) = {" -aa -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 -ad -bh -ck -cW -hq -MI -Pi -Ty -TI -TM -TM -Ug -Ur -Uv -jF -kv -kS -lJ -mv -mV -nB -oa -ot -oa -mv -pM -qz -ri -rC -kS -ac -ac -ac -ac -ac -fF -ac -ac -ac -hj -iy -tD -uc -hh -uW -wO -yl -zl -Fi -fK -Bi -FS -Cr -zL -BJ -Cb -CC -JM -KI -Lp -LS -LS -MO -LS -LS -LS -zL -zL -zL -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +ack +ajF +akv +akS +alJ +amv +amU +anB +aoa +aot +aoa +amv +apM +aiK +ari +arC +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +aiy +atD +alI +ahh +auW +awO +ayl +azl +aFi +afK +aIq +aFS +aCr +azL +aoQ +aCb +aSH +aJM +aGl +aLp +aLS +aLS +aMO +aLS +aLS +aLS +azL +azL +azL +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (58,1,1) = {" -aa -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 -bh -bh -bh -bh -bh -bh -bh -TJ -TM -TM -Uh -Us -Uw -jG -WN -kY -kY -kZ -mW -nC -kY -kY -kY -kT -pN -kT -kS -kS -kS -fj -fj -fj -ac -fM -fM -fM -fM -fM -hh -hh -hh -uq -hh -fK -fK -fK -zG -fK -fK -yR -Gu -XM -zL -zL -zL -CI -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +alo +alo +alo +alo +alo +alo +alo +aqO +aqO +aqO +aqO +alo +acl +ajG +aWN +akY +akY +akZ +amW +anC +akY +akY +akY +akT +apN +akT +akS +akS +akS +afj +afj +afj +aac +afM +afM +afM +afM +afM +ahh +ahh +ahh +auq +ahh +afK +afK +afK +azG +afK +afK +ayR +aGu +aXM +azL +azL +azL +aTe +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (59,1,1) = {" -aa -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 -ac -dW -eq -fn -hB -gQ -fc -iJ -jb -TP -VG -bh -Wj -WD -kx -kY -lK -mw -DX -DZ -ob -of -kY -po -pO -qB -fj -iI -rD -fQ -wL -fj -ac -Ei -XH -xh -XN -gD -hk -iz -tE -hi -wA -wW -xG -xP -Ar -yu -Fm -AT -Gv -XS -GR -HI -It -Jd -JN -zo -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +adW +aeq +afn +adx +agQ +afc +aqO +aqO +aqO +aqO +alo +acn +aWD +aNE +akY +alK +amw +aDX +aDZ +aob +aof +akY +apo +apO +aqB +afj +aiI +arD +afQ +awL +afj +aac +aEi +aXH +axh +aXN +agD +ahk +aiz +atE +ahi +awA +awW +axG +aHj +aAr +ayu +aFm +aCB +aGv +aXS +aGR +aHI +aHj +aTh +aJN +azo +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (60,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -dT -dT -au -dT -au -dT -au -dT -fc -er -fo -ge -gR -fc -bh -bh -bh -bh -bh -Wk -pS -kx -kZ -lL -mw -DY -mw -mw -ov -kY -ir -jR -kx -fj -jK -vF -fj -fj -fj -fi -XG -XI -yi -XO -XQ -XR -iA -tF -wD -xI -xN -yO -yv -ze -zJ -ze -BX -XK -XT -Ao -BL -hf -Je -JO -zo -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +adT +adT +aau +adT +aau +adT +aau +adT +afc +aer +afo +age +agR +afc +alo +alo +alo +alo +alo +acV +apS +akx +akZ +alL +amw +aDY +amw +amw +aov +akY +air +ajR +akx +afj +ajK +avF +afj +afj +afj +afi +aXG +aXI +ayi +aXO +aXQ +aXR +aiA +atF +awD +axI +axN +ayO +ayv +aze +azJ +aze +aBX +aXK +aXT +aAo +aBL +ahf +aJe +aJO +azo +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (61,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -aq -ai -ae -av -aM -am -bU -cz -eA -fc -es -fp -gO -gS -hw -iL -iL -iL -iL -gw -Wl -WE -kx -kZ -lL -mw -DY -mw -mw -ow -kY -pp -jR -iD -fj -ky -gF -fP -wM -fj -rn -Ei -XJ -fh -XL -fh -hm -jy -tE -wx -wB -xD -xH -yH -wB -yQ -AM -yS -zf -zK -Ap -BM -Ce -Jf -JP -zo -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aaq +aai +aae +aav +aaM +aam +abU +acz +abC +afc +aes +afp +agO +agS +ahw +aiL +aiL +aiL +aiL +agw +aWl +aWE +akx +akZ +alL +amw +aDY +amw +amw +aow +akY +app +ajR +aiD +afj +aky +agF +afP +awM +afj +arn +aEi +aXJ +afh +aXL +afh +ahm +ajy +atE +awx +awB +axD +axH +ayH +awB +ayQ +aAM +ayS +azf +azK +aAp +apK +aCe +aJf +aJP +azo +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (62,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -ac -ai -ak -aw -aN -bD -bV -cA -dh -fc -et -fq -ge -hv -hw -iL -iL -jz -iL -VX -ix -jM -kx -kZ -lM -mw -mY -nD -od -ox -oV -pq -iC -vj -iH -pP -wm -fj -fj -fj -rn -fh -XL -fh -XP -fh -hn -jE -tT -tU -uY -uY -wE -zc -uY -tU -AS -yU -Cr -zE -zE -zE -Bn -Jg -Bn -zE -zE -zH -zH -zH -zE -zE -zE -Ef -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aac +aai +aak +aaw +aaN +abD +abV +acA +adh +afc +aet +afq +age +ahv +ahw +aiL +aiL +ajz +aiL +aVX +aix +ajM +akx +akZ +amw +amw +amY +anD +aod +aox +aoV +apq +aiC +avj +aiH +apP +awm +afj +afj +afj +arn +afh +aXL +afh +aXP +afh +ahn +ajE +atT +atU +auY +auY +awE +azc +auY +atU +aAS +ayU +aCr +azE +azE +azE +aBn +aJg +aBn +azE +azE +azH +azH +azH +azE +azE +azE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (63,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -XD -dT -al -ax -aO -bE -bW -cB -di -fc -eu -fr -ge -hv -hw -iL -iL -iL -iL -VX -ix -WF -kx -kZ -lN -mw -mX -mw -mw -mw -kZ -pr -pQ -iG -fj -qD -wo -fO -wM -fj -rn -fh -fL -gy -gC -hg -ho -jI -tT -ur -vt -vS -wK -zd -xC -uY -AW -yU -zq -Bn -GS -HJ -Iu -Jh -JQ -KJ -Lq -yp -yq -MP -Ne -Ns -zE -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aRJ +adT +aal +aax +aaO +abE +abW +acB +adi +afc +aeu +afr +age +ahv +ahw +aiL +aiL +aiL +aiL +aVX +aix +aWF +akx +akZ +alN +amw +amX +amw +amw +amw +akZ +apr +apQ +aiG +afj +aqD +awo +afO +awM +afj +arn +afh +afL +agy +agC +ahg +aho +ajI +atT +aur +avt +avS +awK +azd +axC +auY +aAW +ayU +azq +aBn +aGS +aHJ +aIu +aJh +aJQ +aKJ +aLq +ayp +ayq +aMP +aNe +aNs +azE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (64,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -aq -ai -am -ay -aP -am -cq -cC -dp -fc -eB -fS -ge -hv -hw -iL -jz -iL -iL -VX -ix -WF -kx -kZ -lN -mw -mZ -nE -mw -mw -kZ -ix -pQ -qE -fj -fj -fj -fj -fj -fj -rn -tG -ud -ud -ud -ud -ud -ud -tT -us -vu -vT -wX -xj -xE -yo -ys -yV -zw -CA -GT -HK -Cz -Ji -JR -KK -Lr -LU -Mr -MQ -Nf -Nt -NF -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aaq +aai +aam +aay +aaP +aam +acq +acC +adp +afc +adg +afS +age +ahv +ahw +aiL +ajz +aiL +aiL +aVX +aix +aWF +akx +akZ +alN +amw +amZ +anE +amw +amw +akZ +aix +apQ +aqE +afj +afj +afj +afj +afj +afj +arn +atG +aud +aud +aud +aud +aud +aud +atT +aus +avu +avT +awX +axj +axE +ayo +ays +ayV +azw +aCA +aGT +aHK +aCz +aSC +aJR +aKK +aLr +aLU +aMr +aMQ +aNf +aNt +aNF +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (65,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -aq -ai -aj -aG -bj -bF -bX -cD -dq -fc -hz -fT -WW -eJ -hw -iL -iL -iL -iL -gw -iK -WF -WO -kY -lO -mx -na -nF -mw -ou -kY -iK -pQ -sS -ha -ha -ha -ss -sR -gw -rn -tG -ud -ux -ux -ux -ux -ud -tT -qy -vv -vU -wY -xl -xJ -uY -yt -yW -zy -Bn -Aq -tZ -Iv -Jj -tZ -KL -Ls -LV -Ms -MR -tZ -Nu -NF -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aaq +aai +aaj +aaG +abj +abF +abX +acD +adq +afc +ahz +afT +aWW +aeJ +ahw +aiL +aiL +aiL +aiL +agw +aOa +aWF +aWO +akY +alO +amx +ana +anF +aMw +aou +akY +aix +apQ +asS +aha +aha +aOb +ass +asR +agw +arn +atG +aud +aux +aux +aux +aux +aud +atT +aqy +avv +avU +awY +axl +axJ +auY +ayt +ayW +azy +aBn +aAq +atZ +aIv +aJj +atZ +aKL +aLs +aLV +aMs +aMR +atZ +aNu +aNF +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (66,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -aq -dT -dT -dT -dT -dT -dT -cE -dT -fc -fc -fU -fc -fc -fc -dP -dP -dP -dP -dP -Wm -WG -WS -kY -kY -kY -nb -nb -kY -kY -kY -ps -pR -qG -kE -kE -kE -st -oz -qP -se -tG -ud -ux -ux -ux -ux -ud -tT -uv -vw -vV -wZ -xz -xL -tU -zB -BS -zB -zE -AU -HL -Iw -Jk -JS -Iv -Lt -LW -Mt -BO -Ng -Nv -NF -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aaq +adT +adT +adT +adT +adT +adT +acE +adT +afc +afc +afU +afc +afc +afc +adP +adP +adP +adP +adP +aWm +aWG +aWS +akY +akY +akY +anb +anb +akY +akY +akY +aps +apR +aqG +akE +akE +akE +ast +aoz +aqP +ase +atG +aud +aux +aux +aux +aux +aud +atT +auv +avw +avV +awZ +axz +axL +atU +azB +aBS +azB +azE +aAU +aHL +aIw +aJk +aJS +aIv +aLt +aLW +aMt +aBO +aNg +aNv +aNF +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (67,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ot -aq -ac -ac -an -aV -bG -cp -cH -do -af -ev -fs -gf -gT -hG -iM -jH -iM -VH -VY -Wn -WF -WT -la -gw -my -my -my -my -my -ik -pt -pS -qH -pS -pS -pS -jR -pX -lP -ac -tG -ud -ux -ux -ux -ux -ud -tT -uw -vx -vW -vx -xA -xM -tU -zM -yX -zz -zE -AV -BO -Cu -Jl -JT -KM -Lu -LX -Mu -MS -Nh -Nw -zE -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOt +aaq +aac +aac +aan +aaV +abG +acp +acH +ado +aaf +aev +afs +agf +agT +ahG +aiM +afR +aiM +aVH +aVY +aWn +aWF +aWT +ala +agw +amy +amy +amy +amy +amy +aik +apt +apS +aqH +apS +apS +apS +ajR +apX +alP +aac +atG +aud +aux +aux +aux +aux +aud +atT +auw +avx +avW +avx +axA +axM +atU +azM +ayX +azz +azE +aAV +aBO +aCu +asa +aJT +aKM +aLu +aLX +aMu +atX +aNh +aNw +azE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (68,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -ac -ac -an -aW -bH -bY -cI -dj -af -ew -ft -gg -gg -hH -iN -jJ -TX -VI -VZ -Wn -WF -WT -la -lP -my -my -my -my -my -ik -pu -pT -qI -rk -hc -rX -su -pX -gw -ac -tG -ud -ux -ux -ux -ux -ud -tT -uX -vQ -vX -xa -xB -yj -tU -zU -yZ -zA -zE -AX -HN -Cv -zD -zD -KN -Lv -LY -zD -zD -zE -zE -zE -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aac +aac +aan +aaW +abH +abY +acI +adj +aaf +aew +aft +agg +agg +ahH +aiN +ajJ +aTX +aVI +aVZ +aWn +aWF +aWT +ala +alP +amy +amy +amy +amy +amy +aik +apu +apT +aqI +ark +ahc +arX +asu +apX +agw +aac +atG +aud +aux +aux +aux +aux +aud +atT +auX +avQ +avX +axa +axa +ayj +atU +amh +ayZ +azA +azE +aAX +aHN +aCv +azD +azD +aKN +aLv +aLY +azD +azD +azE +azE +azE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (69,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -aq -ac -af -dg -aX -bZ -cJ -dk -dQ -ex -fu -gh -gU -dP -iO -jL -dP -VJ -Wa -Wn -WF -WT -la -lP -my -my -nG -my -my -oX -oX -oX -qJ -oX -oX -rY -jX -pX -lP -ac -tG -ud -ud -ux -ux -vY -ud -tT -tU -uY -wy -uY -tU -ym -tU -Ag -za -zC -zE -AZ -HO -Cw -zD -JU -KO -Lw -LZ -Mv -zD -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aaq +aac +aaf +aaX +aaX +abZ +acJ +adk +adQ +aex +afu +agh +agU +adP +aiO +ajL +adP +aVJ +aWa +aWn +aWF +aWT +ala +alP +amy +amy +anG +amy +amy +aoX +aoX +aoX +aqJ +aoX +aoX +arY +ajX +apX +alP +aac +atG +aud +aud +aux +aux +avY +aud +atT +atU +auY +awy +auY +atU +aym +atU +aAg +aza +azC +azE +aAZ +aHO +aCw +azD +aJU +aKO +aLw +aLZ +aMv +azD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (70,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -ac -ac -af -aX -aX -co -cK -dl -dR -ey -fv -Xc -gV -hI -gG -jN -Ui -VK -dP -Wo -WF -WT -lb -gw -my -my -my -my -my -oX -pv -pU -qK -pv -oX -rZ -sv -pX -lP -ac -ts -ts -uy -uZ -uZ -vZ -wF -tU -tU -vR -wz -xb -tU -yn -tU -zB -zb -zB -zE -zE -HP -zE -zD -JV -KP -Lx -Ma -Mw -zD -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aac +aac +aaf +aIL +aaX +aco +acK +adl +adR +aey +afv +aXc +agV +ahI +agG +ajN +aUi +aIt +adP +aWo +aWF +aWT +alb +agw +amy +amy +amy +amy +amy +aoX +apv +apU +aqK +apv +aoX +arZ +asv +apX +alP +aac +ats +ats +auy +auZ +auZ +avZ +awF +atU +atU +avR +awz +axb +atU +ayn +atU +azB +azb +azB +azE +azE +aHP +azE +azD +asl +aKP +aLx +aMa +aHG +azD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (71,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -ac -ac -an -aY -WP -bI -cL -WZ -dS -ez -fw -gH -gW -gH -gH -jO -jQ -VL -dP -Wp -jM -kv -lc -lc -mz -lc -lc -lc -lc -lc -pw -pV -qL -rl -oX -hs -sw -pX -gw -ac -ac -ts -uz -va -vy -wa -wG -xc -xR -xK -xQ -zk -yY -BR -BY -Cn -CV -FT -BY -GU -HQ -Ix -Jm -JW -KQ -Ly -KQ -Mx -zD -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aac +aac +aan +aaY +aWP +abI +acL +aWZ +adS +aez +afw +agH +agW +agH +agH +ajO +ajQ +aVL +adP +aWp +ajM +akv +alc +alc +amz +alc +alc +alc +alc +alc +apw +apV +aqL +arl +aoX +ahs +asw +apX +agw +aac +aac +ats +aPD +ava +avy +awa +awG +axc +axR +axK +axQ +azk +ayY +aBR +aBY +aCn +aCV +aFT +aBY +aGU +aHQ +aIx +aJm +aJW +aKQ +aLy +aKQ +aMx +azD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (72,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -an -bi -bJ -cr -dd -dn -dQ -gd -gI -HH -hu -hJ -iP -jP -Ux -VM -dP -Wq -jM -kx -lc -lQ -mA -lc -nH -og -oA -lc -px -pV -qL -rm -oX -sa -sx -pX -lP -ac -ac -ue -uA -vb -vz -Er -Er -xd -nA -oc -oc -oe -oc -oc -sb -zF -zI -zF -zF -GV -HR -As -Jm -JX -KR -Ly -KR -My -zD -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aan +abi +abJ +acr +add +adn +adQ +agd +aeB +aHH +ahu +ahJ +aiP +ajP +aUx +aVM +adP +aWq +ajM +akx +alc +alQ +amA +alc +anH +aog +aoA +alc +apx +apV +aqL +arm +aoX +ajC +asx +apX +alP +aac +aac +aue +auA +avb +avz +aEr +aEr +axd +anA +aoc +aoc +aoe +aoc +aoc +asb +azF +azI +azF +azF +aGV +aHR +aAs +aJm +aJX +aKR +aLy +aKR +aMy +azD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (73,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -af -dO -dO -dO -de -dO -dO -dO -dO -hx -hy -hx -hx -hx -Uy -VN -Wb -Wn -jM -kx -lc -lR -mB -nc -nI -oh -oB -lc -py -pW -qM -py -oX -ix -jR -pX -lP -ac -ac -ue -uA -vc -vA -wc -wH -xe -wH -yw -zg -zO -Au -Bk -Fj -wC -xy -Xe -CE -GW -Ia -As -Jm -JY -KS -Lz -KS -Mz -zD -ac -ac -ac -ac -ac -ac -fF -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaf +adO +adO +adO +ade +adO +adO +adO +adO +ahx +ahy +ahx +ahx +ahx +aUy +aVN +aWb +aWn +ajM +aNE +alc +alR +amB +anc +anI +aoh +aoB +alc +apy +apW +aqM +apy +aoX +aOa +ajR +apX +alP +aac +aac +aue +akk +avc +avA +awc +awH +axe +awH +aOq +azg +azO +aAu +aBk +aFj +awC +axy +aXe +aCE +aGW +aIa +aAs +aJm +aJY +aKS +aLz +aKS +aMz +azD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (74,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -dO -bK -cs -dm -dr -dX -ct -eI -hx -UO -iT -kz -kA -UT -VO -jT -Wr -jM -kx -lc -lS -mC -lc -nJ -lc -lc -lc -gw -gw -gw -gw -oX -sc -jR -pX -gw -ac -ac -ts -uB -vd -vB -ff -xg -xg -xg -xg -xg -xg -xg -xg -xg -xg -xg -xg -Xk -GX -Ia -At -zD -zD -zD -zD -zD -zD -zD -Ni -Ni -Kj -Kj -Ni -Ni -Kj -Kj -Ni -Ni -Kj -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +adO +abK +acs +adm +adr +aIF +act +aeI +ahx +aUO +aiT +akz +akA +aUT +aVO +ajT +aWn +ajM +akx +alc +alS +amC +alc +anJ +alc +alc +alc +agw +agw +agw +agw +aoX +asc +ajR +apX +agw +aac +aac +ats +auB +avd +avB +aff +axg +axg +axg +axg +axg +axg +axg +axg +axg +axg +axg +axg +aXk +aGX +aIa +aqS +azD +azD +azD +azD +azD +azD +azD +aNi +aNi +aKj +aKj +aNi +aNi +aKj +aKj +aNi +aNi +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (75,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -dO -cF -cG -WY -dN -dY -ct -fV -hx -hA -hZ -iU -hx -Vd -VP -jT -Ws -jM -kx -ld -lT -mD -nd -ne -ne -ne -lc -pz -fk -qN -gw -rE -ix -jR -pY -gw -ts -ts -ts -uC -ve -vC -we -xg -xU -zi -Aw -xg -CG -EE -ER -Fn -Ft -GY -Xf -xg -Xm -HT -Av -Jn -JZ -KT -KT -KT -KT -MT -KT -KT -KT -KT -KT -KT -MT -KT -KT -OH -Pb -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +adO +acF +acG +aWY +adN +adY +act +afV +ahx +ahA +ahZ +aiU +ahx +aVd +aVP +ajT +aWs +ajM +akx +ald +alT +amD +aQd +ane +ane +ane +alc +apz +afk +aqN +agw +arE +aix +ajR +apY +agw +ats +ats +ats +auC +ave +avC +awe +axg +axU +azi +aAw +axg +aCG +aEE +aER +aFn +aFt +aGY +aXf +axg +aXm +aHT +aAv +aJn +aJZ +aKT +aKT +aKT +aKT +aMT +aKT +aKT +aKT +aKT +aKT +aKT +aMT +aKT +aKT +aOH +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (76,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -dO -bL -ct -df -dU -eb -ct -gb -hx -XB -ia -iW -kB -Vy -VQ -jT -Wt -WH -WU -le -lU -mE -ne -ne -ne -ne -lc -iv -fN -qO -gw -rF -ix -jR -pX -gw -ts -tH -uf -uD -ve -vC -wf -xg -xV -zj -Ay -xg -zT -zT -EU -Bs -Fu -Hc -Xf -xg -GZ -Ia -wf -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +adO +abL +act +adf +adU +aeb +act +agb +ahx +aef +aia +aiW +akB +aVy +agB +ajT +aWt +aWH +aWU +ale +alU +amE +ane +ane +ane +ane +alc +aiv +afN +aqO +agw +arF +aix +ajR +apX +agw +ats +atH +auf +auD +ave +avC +awf +axg +axV +azj +aAy +axg +aLP +azT +aEU +aBs +aFu +aHc +aXf +axg +aGZ +aIa +awf +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (77,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -dO -bM -ct -ct -ct -ct -ct -gc -hx -gP -hC -eK -kF -Vz -VR -jT -Wu -WI -kC -lf -lV -mF -nf -lc -lc -lc -lc -gw -gx -gw -gw -gw -jj -sy -pZ -gw -ts -ts -ts -uE -vf -vD -wg -xg -xW -zm -CM -xg -CH -zT -zT -Fq -Fv -He -Xg -xg -Ha -Ia -wf -ts -Kb -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Kj -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +adO +abM +act +act +act +act +act +agc +ahx +agP +ahC +aeK +akF +aVz +aVR +ajT +aWu +aWI +akC +alf +alV +amF +anf +alc +alc +alc +alc +agw +agx +agw +agw +agw +ajj +asy +apZ +agw +ats +ats +ats +auE +avf +avD +awg +axg +axW +azm +aCM +axg +aCH +azT +azT +aFq +aFv +aHe +aXg +axg +aHa +aIa +awf +ats +aKb +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aLn +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (78,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -dO -bN -cx -eC -Xb -fR -fl -eI -hx -hF -iQ -jS -QX -VA -VS -Wc -Wv -WJ -kD -lg -lW -mG -ng -nK -oi -oC -oY -pB -gz -gA -gB -gE -he -hl -qa -ha -tt -ha -ha -uF -vg -jX -kx -xg -xg -zP -xg -xg -zT -EP -EG -zT -FU -FU -Xh -xg -Hb -Ia -wf -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +adO +abN +acx +aeC +aXb +adX +afl +aeI +ahx +ahF +aiQ +ajS +aQX +aVA +aVS +aWc +aWv +aWJ +akD +alg +alW +amG +ahB +anK +aoi +aoC +aoY +apB +agz +agA +ajb +agE +ahe +ahl +aqa +aha +att +aOb +aha +auF +avg +ajX +akx +axg +axg +azP +axg +axg +aIE +aEP +aEG +azT +aFU +aFU +aXh +axg +aHb +aIa +awf +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (79,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -dO -dO -dO -dO -dO -dO -dO -dO -hx -hV -iR -kw -hx -VB -VT -Wd -iV -WK -kE -lh -lh -mH -nh -nh -nh -nh -oZ -nh -qb -lh -lh -lh -lh -sz -lh -lh -lh -lh -lh -uG -vh -vE -Ew -xi -wd -zQ -Az -ro -zT -EH -AA -zT -zT -zT -Xh -xi -GX -Ia -wf -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +adO +adO +adO +adO +adO +adO +adO +adO +ahx +ahV +aiR +akw +ahx +aVB +aVT +aWd +aiV +aWK +akE +alh +alh +amH +anh +anh +anh +anh +aoZ +anh +aqb +alh +alh +alh +alh +asz +alh +alh +alh +alh +alh +auG +avh +avE +akx +axi +awd +azQ +aAz +akM +azT +aEH +aAA +azT +azT +azT +aXh +axi +aGX +aIa +awf +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (80,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -aE -bO -cy -bS -dV -ep -fm -Xd -hx -hX -iS -hx -hx -VC -VU -jT -Ww -jR -WV -li -li -li -li -li -li -li -li -li -qc -qQ -qQ -qQ -qQ -qQ -qQ -qQ -qQ -qQ -qQ -qQ -vi -Ep -fd -xk -yy -zR -AA -Bq -zT -EI -EI -zT -Gw -Hg -Xi -xk -Xq -HZ -Iy -ts -Kc -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OJ -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aaE +abO +acy +abS +adV +aep +afm +aXd +ahx +ahX +aiS +ahx +ahx +aVC +aVU +ajT +aWw +ajR +aWV +ali +ali +ali +ali +ali +ali +ali +aOT +ali +baQ +baJ +baJ +baJ +baJ +baJ +avl +aEo +baH +baL +baL +baL +bby +aEp +afd +axk +ayy +azR +aAA +azV +azT +aEI +aEI +azT +aGw +aHg +aXi +axk +aXq +aHZ +aIy +ats +aKD +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +avs +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (81,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ad -aE -aE -aE -aE -aE -aE -aE -aE -aE -hx -hx -hx -hx -WX -VD -Xa -jT -Wn -jR -kG -lj -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -uH -vk -fe -fg -xS -yz -zS -yz -Br -CJ -CJ -EV -zT -zT -zT -Xj -xS -Xr -Xu -wf -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +ahx +ahx +ahx +ahx +aWX +aVD +aXa +ajT +aWn +ajR +akn +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +asT +aTt +asT +alX +alX +auH +bbA +afe +afg +axS +ayz +azS +ayz +aBr +aCJ +aCJ +aEV +azT +azT +azT +aXj +axS +aXr +aXu +awf +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (82,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -aE -bk -bP -cu -bS -ds -aE -eD -fW -gJ -hD -ic -aE -Tr -aE -ep -We -Wn -jR -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -oG -xT -yA -zW -Fr -EJ -Gx -Xo -Fc -Fr -Fr -Fr -Fr -Xl -Xs -Xv -Iz -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaE +abk +abP +acu +abS +ads +aaE +aeD +afW +agJ +ahD +aic +aaE +aTr +aaE +aep +aWe +aWn +ajR +akn +alj +all +awj +alj +aZk +aZw +aZJ +alj +baf +bar +aPi +baX +bab +bbC +bbE +asT +aPk +asT +alY +alY +auI +bbA +ajM +aoG +axT +ayA +azW +aFr +aEJ +aGx +aXo +aFc +aFr +aFr +aFr +aFr +aXl +aXs +aXv +aIz +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (83,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -aF -bl -bQ -cv -cM -dt -dZ -eE -fX -gK -hE -id -iX -DI -aE -hd -hS -Wx -jR -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -oI -xk -zh -zV -zT -Bt -Eu -EK -Fd -Fs -zT -zT -Xx -xg -Xt -Ia -Iz -ts -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OK -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaF +abl +abQ +acv +acM +adt +adZ +aeE +afX +agK +ahE +aid +aiX +aDI +aaE +ahd +ahS +aWx +ajR +akn +alj +aqc +awk +axf +aZl +aZx +aZL +aZW +bag +bas +aZU +aZV +aXW +bbD +bbH +asT +aYb +asT +alY +alY +auI +bbA +ajM +aoI +axk +azh +aMk +azT +aBt +aEu +aEK +aFd +aFs +azT +aMk +aXx +axg +aXt +aIa +aOJ +ats +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOK +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (84,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -aF -bm -bR -bR -da -bS -aE -eF -fY -gL -aE -ie -iY -SL -aE -aE -aE -Wz -jR -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -pb -xg -xg -xg -Hd -Bv -Ez -EO -Fe -Fs -Xw -xg -xg -xg -Hh -Ia -Iz -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaF +abm +abR +abR +ada +abS +aaE +aeF +afY +agL +aaE +aie +aiY +aSL +aaE +aaE +aaE +aWz +ajR +akn +alj +awi +awl +alj +aZm +aZy +aZM +alj +aiJ +bat +baG +bba +aYn +asT +asT +asT +aYj +asT +asT +asT +asT +bbF +ajM +apb +axg +axg +axg +aHd +aBv +aEz +aEO +aFe +aFs +aBq +axg +axg +axg +aHh +aIa +aIz +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (85,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -aF -bn -bS -cw -db -dL -aE -eZ -fZ -gM -aE -if -iZ -Tw -VE -VV -Wf -WA -WL -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -pe -EA -hd -xg -zT -CF -EC -XC -EC -CF -XE -xg -tH -Gy -Hf -Ia -Iz -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aaF +abn +abS +acw +adb +adL +aaE +aeZ +afZ +agM +aaE +aif +aiZ +aTw +aVE +aVV +aWf +aWA +aWL +aNp +alj +alj +alj +alj +alj +alj +alj +alj +bai +aZx +baK +aZx +aZj +asT +aEe +aXY +aYb +aYs +aYx +aYE +baq +bbF +ajM +ape +aEA +ahd +axg +azT +aCF +aEC +aXC +aEC +aCF +aSF +axg +atH +aGy +aHf +aIa +aIz +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (86,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -aF -bo -bS -aE -ag -ag -ag -fa -ag -ag -ag -ag -eG -eG -eG -eG -Wg -WB -jR -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -pf -wJ -wJ -wJ -Bl -wJ -ED -EQ -Xp -AB -AB -AB -AB -AB -Hi -HV -IA -ts -Kb -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aaF +abo +abS +aaE +aag +aag +aag +afa +aag +aag +aag +aeG +aeG +aeG +aeG +aeG +aWg +aWB +ajR +akn +aYO +aZi +awn +atI +aYP +aYT +aYT +alj +baj +bau +baM +bbb +aZr +aBo +aEg +aYb +aYb +aYp +aYy +aYF +baw +bbF +ajM +apf +awJ +awJ +awJ +aBl +awJ +aED +aEQ +aEE +aAB +aAB +aAB +aAB +aAB +aHi +aHV +aIA +ats +aKb +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (87,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -aE -bx -bT -aE -dc -dM -ea -fb -ga -gN -ag -hW -ja -TK -VF -VW -Wh -WC -WM -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -pD -wN -EF -EL -Bm -wJ -wJ -wJ -wJ -AB -CL -Fw -FV -AB -Hj -HW -Iz -Jn -Kd -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -OL -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aaE +abx +abT +aaE +adc +adM +aea +afb +aga +aec +aag +afF +aja +aTK +aVF +aVW +aWh +aWC +aWM +baz +aYV +aEj +awn +aOU +aYQ +aYU +aYU +alj +aZG +aZH +aZH +aZH +aYc +asT +bac +aYb +aYb +aYp +aYz +aYG +baw +bbF +ajM +apD +awN +aEF +aEL +aBm +awJ +awJ +awJ +awJ +aAB +aCL +aut +aFV +aAB +aHf +aHW +aIz +aJn +aKd +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aOL +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (88,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ag -ag -ag -ag -ag -ag -ag -ag -aQ -aZ -aZ -SR -Tj -Uz -ag -hY -ig -gj -gX -Vn -eG -jc -jU -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -Eq -pE -EB -xm -xX -xm -zp -zX -AC -Fg -Ch -CP -Fx -FW -Gz -Hk -HX -Iz -Jn -Ke -Ke -Ke -Ke -Ke -MU -Ke -Ke -NG -NN -Ke -Ke -MU -Ke -Ke -Ke -Kj -Ni -Ni -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aag +aag +aag +aag +aag +aag +aag +aag +aaQ +aaZ +aaZ +aSR +aTj +abv +aag +ahW +aig +agj +agX +aVn +aeG +ajc +ajU +akn +aYO +aEv +awn +aJi +aYR +aYR +aYX +aYZ +aYR +aYR +aYR +aZe +aYR +aEa +bad +aYb +aYb +aYt +aYA +aYH +baw +bbF +aEq +apE +aEB +axm +axX +axm +azp +azX +aAC +aFg +aCh +aCP +aFx +aFW +aGz +aHk +aHX +aIz +aJn +aKe +aKe +aKe +aKe +aKe +aMU +aKe +aKe +aNG +aNN +aKe +aKe +aMU +aKe +aKe +aKe +aKj +aNi +aNi +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (89,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ag -ar -aD -ag -ao -eH -dz -aH -aR -ba -bq -cb -cN -UA -gn -ib -fz -gk -gX -hK -UU -jd -jV -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -vG -kx -wJ -xn -EM -ES -wJ -zY -AD -Fk -AB -CQ -zn -FX -AB -Hl -HY -IB -ts -Kf -Kf -Kj -Kg -Ke -Kj -Ke -Kg -NH -NH -Kg -NX -Kj -Ke -Kg -Kg -Kj -Pp -PL -Kj -Kj -Ef -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 -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aag +aar +aaD +aag +aao +aeH +abw +aaH +aaR +aba +abq +acb +acN +aUA +agn +ahY +afz +agk +agX +ahK +aUU +ajd +ajV +akn +aYO +aZs +awI +aEb +aSE +aYS +aYh +aYS +aYY +aZa +aZc +ajB +aPe +aZh +aZA +aZO +aYo +aYu +aYI +aPC +bay +bbF +avG +aNE +awJ +axn +aEM +aES +awJ +azY +aAD +aFk +aAB +aCQ +azn +aFX +aAB +aHl +aHY +aIG +ats +aKf +aKf +aKj +aKg +aKe +aKj +aKe +aKg +aNH +aNH +aKg +aNX +aKj +aKe +aKg +aLL +aKj +aLa +aPL +aKj +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (90,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ag -at -at -ag -ap -aZ -aA -aI -aS -aI -aS -cc -cO -UB -gn -iB -UV -gl -gX -hL -UU -je -jW -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jR -Ew -wP -wP -wP -wP -wP -wP -AE -wP -wP -wP -wP -wP -GA -Hm -HZ -IC -Jo -Kg -Kg -LA -Kg -Ke -MV -Ke -Kg -Kg -Kg -Kg -Ke -Oc -Ke -Kg -Kg -Kj -Pq -PM -PZ -Pb -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 -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aag +aat +abh +aag +aad +aaZ +aaA +aaI +aaS +aaI +aaS +acc +acO +azu +agn +aiB +aUV +agl +agX +ahL +aUU +aje +ajW +akn +alo +alo +alo +ayx +ayx +ayx +ayx +ayx +aZv +ayx +ayx +ayx +ayx +asT +ajH +aYf +bae +aYv +aYB +aYJ +baw +bbF +ajR +akx +awP +awP +awP +awP +awP +awP +aAE +awP +awP +awP +awP +awP +aGA +aHm +aHZ +aIC +aJo +aKg +aKg +aLA +aKg +aKe +aMV +aKe +aKg +aKg +aKg +aKg +aKe +aOc +aKe +aKg +aKg +aKj +aPq +aPM +aPZ +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (91,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ah -Vx -aZ -Vv -dw -aZ -aB -aJ -aT -bb -SM -SS -cP -dy -ee -eL -fB -gm -Vk -hM -Vt -jf -jX -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jR -Ex -wP -xo -xY -yC -zr -zZ -AF -Bx -Ci -yC -Fy -FY -wP -Hn -Ia -Iz -Jn -Kh -KW -Kf -Mb -MA -MW -MA -Nx -Nx -Nx -Nx -MA -MW -MA -Ou -Nx -Pc -Pr -PM -Qa -Pb -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aah +aVx +aaZ +aVv +adw +aaZ +aaB +aaJ +aaT +abb +aSM +aSS +acP +ady +aee +aeL +afB +agm +aVk +ahM +aVt +ajf +ajX +akn +alk +aZt +alk +ayx +aZn +aYq +aZN +aPa +aZY +bav +baN +bbc +bbp +asT +aXV +aYg +bae +aYb +aTv +aYK +baw +bbF +ajR +aEx +awP +axo +axY +ayC +akX +azZ +aAF +aBx +aCi +ayC +aFy +aFY +awP +aHn +aIa +aIz +aJn +aKh +aKW +aKf +aMb +aMA +aMW +aMA +aNx +aNx +aNx +aNx +aMA +aMW +aMA +aOu +aNx +aPc +aPr +aPM +aQa +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (92,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ah -as -cd -Vw -aZ -aZ -aC -aK -aT -bc -SN -ST -cQ -ec -UI -eM -gY -fC -gY -hN -ii -iV -jY -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -vH -wq -wQ -xp -xZ -yD -yD -yD -AG -yD -yD -yD -xZ -FZ -wR -Ho -Ib -ID -Jp -Ki -KX -LB -Mc -MB -MX -Ke -Kg -Kg -Kg -Kg -Ke -Od -Ke -Ov -Kg -Kj -Ps -PM -Qa -Pb -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aah +aas +acd +aVw +aaZ +aaZ +aaC +aaK +aaT +abc +aSN +aST +acQ +adz +aUI +aeM +agY +afC +agY +ahN +aii +aiV +ajY +akn +bbq +aZu +bbu +ayx +aZo +aYW +aZb +aZz +aZT +baa +bal +bam +bbw +aEc +aYm +bak +aZI +aYb +aYy +aYL +baw +bbF +avH +awq +awQ +axp +axZ +ayD +ayD +ayD +aAG +ayD +ayD +ayD +axZ +aFZ +awR +aHo +aIb +aID +aJp +aKi +aKX +aLB +aMc +aMB +aug +aKe +aKg +aKg +aKg +aKg +aKe +aOd +aKe +aOv +aKg +aKj +aPs +aPM +aQa +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (93,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -ag -aL -aZ -aZ -aZ -go -QF -RN -Sp -SO -SU -Tl -dA -ag -eN -UW -Ve -Vl -Vo -ij -jg -jX -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jR -wp -wR -xq -ya -yE -yE -yE -AH -yE -yE -yE -ya -Ga -wR -Ho -Ia -Iz -ts -Kj -Kj -Kj -Md -MC -Kj -Nj -Ny -NI -NO -Ny -Ke -Kj -Ke -Ov -Kg -Kj -Pt -PM -Kj -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aag +aag +aaL +aaZ +aaZ +aaZ +ago +aQF +aRN +aSp +aSO +aSU +aTl +adA +aag +aeN +aUW +aVe +aVl +aVo +aij +ajg +ajX +akn +alk +bbs +aNo +ayx +aZp +aZB +aZP +aZB +aZC +aZC +baU +ban +bbx +asT +aXX +aYi +aYp +aYw +aYD +aYM +baA +bbF +ajR +awp +awR +axq +aya +ayE +ayE +ayE +aAH +ayE +ayE +ayE +aya +aGa +awR +aHo +aIa +aIz +ats +aKj +aKj +aKj +aMd +aMC +aKj +aNj +aNy +aNI +aNO +aNy +aKe +aKj +aKe +aOv +aKg +aKj +aPt +aPM +aKj +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (94,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ag -aU -ce -dx -fx -gZ -RG -fx -Sq -SP -SV -Tm -SP -SP -SP -UX -Vf -Vm -eG -eG -jh -jX -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jR -wp -wR -xr -ya -yF -yF -yF -AI -yF -yF -yF -ya -Gb -wR -Ho -Ia -IE -ts -Kk -KY -Kj -Me -MD -MY -Ke -Ke -NG -NN -Ke -Ke -MY -Ke -Ow -Ke -Kj -Pu -Pu -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aag +aaU +ace +aap +afx +agZ +aRG +afx +aSq +aSP +aSV +aTm +aSP +aSP +aSP +aUX +aVf +aVm +aeG +aeG +ajh +ajX +akn +alk +alk +bdD +ayx +aZq +aZC +aZC +aZC +aZC +bax +baV +bao +bap +asT +asT +asT +aYr +asT +asT +asT +asT +bbF +ajR +awp +awR +axr +aya +ayF +ayF +ayF +aAI +ayF +ayF +ayF +aya +aGb +awR +aHo +aIa +aIB +ats +aKk +aKY +aKj +aMe +aMD +aMY +aKe +aKe +aNG +aNN +aKe +aKe +aMY +aKe +aOw +aKe +aKj +aPu +aPu +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (95,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -az -bd -cf -ed -fy -hO -RK -Sb -Su -SP -SZ -Tn -UC -UJ -UP -UY -Vg -SP -hd -hS -ji -jX -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jR -wp -wR -xs -yb -ya -ya -Aa -AJ -By -ya -ya -yb -Gc -wR -Ho -Ia -IF -ts -ts -ts -ts -Mf -KT -KT -KT -KT -KT -KT -KT -KT -Oe -Oe -Ox -Oe -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aQW +aaz +abd +acf +aed +afy +ahO +aRK +aSb +aSu +aSP +aSZ +aTn +aUC +aUJ +aUP +aUY +aVg +aSP +ahd +ahS +aji +ajX +akn +alk +bbt +alk +ayx +ayx +aZD +aZQ +aZQ +aZQ +aZQ +aZQ +aln +ayx +alo +aqO +asT +aYp +asT +alY +alY +auI +bbA +ajR +awp +awR +axs +ayb +aya +aya +aAa +aAJ +aBy +aya +aya +ayb +aGc +awR +aHo +aIa +aIz +ats +ats +ats +ats +aMf +aKT +aKT +aKT +aKT +aKT +aKT +aKT +aKT +aOe +aOe +aOx +aOe +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (96,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -az -bp -cR -ed -fA -ih -RK -Sk -SE -SP -Tb -To -UD -UK -UQ -UZ -Vh -SP -gw -gw -Wi -jX -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lZ -lZ -lZ -lZ -lZ -lZ -lZ -lZ -uJ -vk -jR -wr -wP -xt -yc -yc -zs -Ab -AK -Bz -Cj -CR -yc -Gd -wP -Hp -Ic -IG -Jn -AN -AN -Jn -KU -KU -KU -KU -KU -KU -KU -KU -KU -Kj -Kj -Oy -Kj -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aaz +abp +acR +aed +afA +aih +aRK +aSk +asA +aSP +aTb +aTo +aUD +aUK +aUQ +aUZ +aVh +aSP +agw +agw +aWi +ajX +akn +bbq +aZu +bbu +bbv +ayx +aZE +aZR +aZR +aZR +aZR +aZR +bbi +ayx +aqO +aqO +asT +aPp +asT +alY +alY +auI +bbA +ajR +awr +awP +axt +ayc +ayc +azs +aAb +aAK +aBz +aCj +aCR +ayc +aGd +awP +aHp +aIc +aIG +aJn +aAN +aAN +aJn +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKj +aKj +aOy +aKj +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (97,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -az -br -du -ed -fD -Dp -RK -Sm -SG -SP -Tc -Tp -UE -UL -UR -Va -Vi -SP -Vq -Vu -ix -jX -kG -ll -lZ -lZ -lZ -lZ -lZ -lZ -lZ -lZ -lZ -lZ -Eb -Ec -Ee -Eg -Ej -Ee -Eg -Ej -Ee -Eg -Eo -jR -wp -wP -xu -wR -wR -zt -Ac -wR -BA -zt -wR -wR -wP -wP -Hq -Id -Iz -Jn -AN -AN -Jn -KU -ME -ME -ME -Nz -ME -ME -ME -NY -Kj -Oj -Oz -OM -Kj -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aaz +abr +adu +aed +afD +aDp +aRK +aSm +aSG +aSP +aTc +aTp +aUE +aUL +aUR +aVa +aVi +aSP +aVq +aVu +aix +ajX +akn +alk +bbs +alk +alk +ayx +aZF +aqd +aqd +aqd +aqd +aqd +bbj +ayx +alo +alo +asT +aTu +asT +alZ +alZ +auJ +bbA +ajR +awp +awP +axu +awR +awR +azt +aAc +awR +aBA +azt +awR +awR +awP +awP +aHq +aId +aIz +aJn +aAN +aAN +aJn +aKU +aME +aME +aME +aNz +aME +aME +aME +aNY +aKj +aOj +aOz +aOM +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (98,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -az -bs -dv -ed -fE -Gm -RK -Sn -SK -SP -Td -Tq -UF -UM -US -Vb -Vj -SP -Vr -Vu -ix -jX -kD -lm -lm -lm -lm -lm -lm -lm -lm -lm -qd -qR -qR -Ed -Ed -sA -sT -sT -sT -tI -ug -ug -vl -vI -ws -wS -xv -xv -xv -zu -Ad -AL -BB -Ck -CS -Fz -Ge -GB -Hr -Ae -Ax -Jn -AN -AN -Jn -KU -MF -MZ -Nk -Nl -NJ -NP -wi -KU -bg -Ok -OA -ON -Kj -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaz +abs +adv +aed +afE +aGm +aRK +aSn +aSK +aSP +aTd +aTq +aIR +aeA +aUS +aJl +aVj +aSP +aVr +aVu +aix +ajX +akG +aha +aha +aha +aha +alm +apS +aqQ +aqR +aqR +aZS +aZZ +anL +bdX +avi +avk +aAn +aEd +baI +baR +baT +baT +bcY +avI +aws +awS +axv +axv +axv +alz +aAd +aAL +aBB +aCk +aCS +aFz +aGe +aGB +aHr +aAe +aAx +aJn +aAN +aAN +aJn +aKU +aMF +aMZ +aNk +aNl +aNJ +aNP +aTy +aKU +abg +aOk +aOA +aON +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (99,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -az -ca -ca -ed -gi -gi -RK -So -So -SP -SP -SP -SP -SP -SP -SP -SP -SP -gw -gw -ix -jZ -kH -kH -kH -kH -ni -nL -oj -nL -pa -nL -qe -nL -nL -nL -nL -sB -nL -td -nL -tJ -nL -nL -vm -vJ -wt -wT -wa -yd -yG -yG -Ae -yG -yG -Cl -CT -yG -yG -vZ -Hs -Ie -IH -Jq -Kl -KZ -Jn -KU -MF -Na -Nl -Nl -NK -NP -wi -KU -bg -Ok -OB -OO -Kj -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaz +aca +aca +aed +agi +agi +aRK +aSo +aSo +aSP +aSP +aSP +aSP +aSP +aSP +aSP +aSP +aSP +agw +agw +aix +ajZ +akH +akH +akH +akH +ani +anL +aoj +anL +apa +anL +aqe +anL +anL +anL +anL +asB +bbB +atd +anL +atJ +anL +anL +avm +avJ +awt +awT +awa +ayd +ayG +ayG +aAe +ayG +ayG +aCl +aCT +ayG +ayG +avZ +aHs +aIe +aIH +aJq +aKl +aKZ +aJn +aKU +aMF +aNa +aNl +aNl +aNK +aNP +aTy +aKU +abg +aOk +aOB +aOO +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (100,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -aq -ac -ac -ac -ac -ac -ac -ac -ac -ac -Tg -Ts -UG -UN -UG -Vc -UG -UG -Vs -gw -ix -ka -kI -ln -ma -mI -nj -nM -ok -oD -pd -pC -qf -qS -qU -rG -pS -sC -pS -jX -tu -tK -uh -uK -vn -vn -vn -wU -xw -ye -xw -xw -Af -xw -xw -xw -CU -CU -Gf -GC -Ht -If -II -Jr -Km -La -Jn -KU -MF -Nb -Nm -Nl -NK -NP -wi -KU -bg -Ok -OB -OP -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aTg +aTs +aUG +aUN +aUG +aVc +aUG +aUG +aVs +agw +aix +aka +akI +aMX +ama +amI +anj +anM +aok +aoD +apd +apC +aqf +aOT +aqU +arG +apS +asC +apS +ajX +atu +atK +auh +auK +aOg +avn +avn +awU +axw +aye +axw +axw +aAf +axw +axw +axw +aCU +aCU +aGf +aGC +aHt +aIf +aII +aJr +aKm +aOQ +aJn +aKU +aMF +aNb +aNm +aNl +aNK +aNP +aTy +aKU +abg +aOk +aOB +aOP +aKj +aQf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (101,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -aq -ac -ac -ac -ac -ac -ac -ac -be -be -be -be -UH -be -be -be -gw -gw -gw -gw -jj -kb -kJ -lo -mb -io -nk -io -oE -oF -oF -gw -qg -qT -pc -rH -sh -sD -sh -te -tv -tL -sh -uL -vo -vK -vK -rJ -vK -sF -rJ -zv -rJ -vK -vK -vK -vK -vK -rJ -rJ -Hu -Ig -rJ -rJ -rJ -rJ -rJ -KU -ME -ME -ME -ME -ME -ME -ME -KU -bg -Ok -OC -OQ -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +aac +aac +aac +aac +aac +aac +abe +abe +abe +abe +aUH +abe +abe +abe +agw +agw +agw +agw +ajj +akb +akJ +alo +amb +aio +ank +aio +aoE +aoF +aoF +agw +aqg +aqT +apc +arH +ash +asD +ash +ate +atv +atL +ash +auL +avo +avK +avK +arJ +avK +asF +arJ +azv +arJ +avK +avK +avK +avK +avK +arJ +arJ +aHu +aIg +arJ +arJ +arJ +arJ +arJ +aKU +aME +aME +aME +aME +aME +aME +aME +aKU +abg +aOk +aOC +axB +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (102,1,1) = {" -aa -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 -bf -bt -cg -cS -cg -ef -eO -fG -gp -ha -hP -il -jk -ka -kK -lp -mc -io -nl -nN -ol -lY -lY -gw -qh -gw -pc -rI -si -sE -sU -tf -tw -tM -ui -uM -rJ -vL -wu -wV -xx -ti -AR -BG -EY -sX -sX -AO -sX -sX -Gg -GD -Hv -Ih -IJ -Js -Kn -rJ -rJ -KU -KU -KU -KU -KU -KU -KU -KU -KU -Kj -Ol -Ol -Ol -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +abf +abt +acg +acS +acg +acg +aeO +afG +agp +aha +ahP +ail +ajk +aka +akK +alp +amc +aio +anl +anN +aol +alY +alY +agw +aqh +agw +apc +arI +asi +asE +asU +atf +atw +atM +aui +auM +arJ +avL +awu +awV +axx +ati +aAR +aBG +aEY +asX +asX +alM +asX +asX +aGg +aGD +aHv +aIh +aIJ +aJs +aKn +arJ +arJ +aKU +aKU +aKU +aKU +aKI +aKU +aKU +aKU +aKU +aKj +aOl +aOl +aOl +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (103,1,1) = {" -aa -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 -ac -bf -bu -ch -be -dB -eg -eP -fH -gq -hb -hQ -im -hb -kc -kL -lq -lq -mJ -nm -nO -ol -lZ -lZ -pc -qi -pc -pc -rJ -rJ -sF -sV -tg -tx -sF -rJ -rJ -rJ -vM -wu -uk -sX -sX -sX -sX -sX -AP -BD -Co -BC -FA -Gh -sX -sX -Ii -IK -Jt -Jt -Jt -Jt -Jt -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +abf +abu +ach +abe +adB +aeg +aeP +afH +agq +ahb +ahQ +aim +ahb +akc +akL +alq +alq +amJ +anm +anO +aol +alZ +alZ +apc +aqi +apc +apc +arJ +arJ +asF +asV +atg +atx +asF +arJ +arJ +arJ +avM +awu +auk +asX +asX +asX +asX +asX +aAP +aBD +aCo +aBC +aFA +aGh +asX +asX +aIi +aIK +aJt +aJt +aJt +aJt +aJt +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (104,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -ac -ac -ac -ac -ac -be -be -be -be -ci -eh -eQ -fG -gr -hc -hR -in -DV -kd -kM -lr -md -io -nn -nP -om -XZ -Yd -Yk -qj -oH -rp -rK -sj -sG -sW -sG -ty -tN -uj -uN -vp -vp -vp -vp -vp -yf -yI -vp -Ah -AP -BC -BC -CW -FA -Gi -GE -Hw -Ij -IL -Jt -Ko -Lb -LC -Jt -ac -ac -ac -ac -ac -kk -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +aac +aac +aac +aac +aac +abe +abe +abe +abe +aci +aeh +aeQ +afG +agr +ahc +ahR +ain +aDV +akd +agN +alr +amd +aio +ann +anP +aom +aXZ +aYd +aYk +aqj +aoH +arp +arK +asj +asG +asW +asG +aty +atN +auj +auN +avp +avp +avp +avp +avp +ayf +ayI +avp +aAh +aAP +aBC +aBC +aCW +aFA +aGi +aGE +aHw +aIj +aro +aJt +aKo +aLb +aLC +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (105,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -ac -ac -ac -ac -ac -bf -bt -cg -cT -cg -eh -eR -be -gs -gs -gw -io -io -io -io -io -io -io -io -nQ -ol -Ya -Ye -Yl -qk -pg -pc -rL -sk -sH -sX -th -Ek -El -Em -En -Em -Ek -Ek -Ek -Ek -EN -ET -EW -Ai -vp -BE -Cp -CX -FB -Gj -GF -Hx -Ik -IM -Jt -Kp -Lc -LD -Jt -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +aac +aac +aac +aac +aac +abf +abt +acg +acT +acg +aeh +aeR +abe +ags +ags +agw +aio +aio +aio +aio +aio +aio +aio +aio +anQ +aol +aYa +aYe +aYl +aqk +apg +apc +arL +ask +asH +asX +ath +aEk +aEl +aEm +aEn +aEm +aEk +aEk +aEk +aEk +aEN +aET +aEW +aAi +avp +aBE +aCp +aCX +aFB +aGj +aGF +aHx +aIk +aIM +aJt +aKp +aLc +aLD +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (106,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -ac -ac -ac -ac -ac -bf -bu -ch -be -dD -eh -eS -be -ac -ac -ac -io -jl -ke -kN -ls -me -io -no -nR -on -oJ -oJ -oJ -oJ -oJ -oJ -rM -sl -sH -sX -ti -sX -tO -ul -uP -uk -sX -sX -sX -sX -yg -yJ -EX -Ek -Ek -EN -ET -Ek -FC -sX -GG -Hy -Il -IN -Ju -Kq -Ld -LE -Jt -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +aac +aac +aac +aac +aac +abf +abu +ach +abe +adD +aeh +aeS +abe +aac +aac +aac +aio +ajl +ake +akN +als +ame +aio +ano +anR +aon +aoJ +aoJ +aoJ +aoJ +aoJ +aoJ +arM +auP +asH +asX +ati +asX +atO +auk +auP +auk +asX +asX +asX +asX +ayg +ayJ +aEX +aEk +aEk +aEN +aET +aEk +aFC +asX +aGG +aHy +aIl +aIN +aJu +aKq +aLd +aLE +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (107,1,1) = {" -aa -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 -ac -be -be -be -be -dE -ei -eT -be -ac -ac -ac -io -jm -kf -kf -kf -mf -mK -np -nS -oo -oK -ph -pF -ql -qV -oJ -ru -ru -sI -sY -sY -tz -tP -ru -uQ -vq -vN -wv -sX -sX -yg -yJ -sX -EZ -sX -yg -yJ -sX -FD -sX -GG -Hz -Im -IO -Jt -Kr -Le -LF -Jt -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +abe +abe +abe +abe +adE +aei +aeT +abe +aac +aac +aac +aio +ajm +akf +akf +akf +amf +amK +anp +anS +aoo +aKc +aph +apF +aql +aqV +aoJ +aru +aru +asI +asY +asY +atz +atP +aru +auQ +avq +avN +awv +asX +asX +ayg +ayJ +asX +aEZ +asX +ayg +ayJ +asX +aFD +asX +aGG +aHz +aIm +aIO +aJt +aKr +aLe +aLF +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (108,1,1) = {" -aa -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 -ac -bf -bt -cg -cU -cg -ej -dC -be -ac -ac -ac -io -jn -kg -kO -kf -mg -io -nq -nT -on -oL -oK -oK -qm -qW -rq -rN -sm -sJ -sZ -tj -sO -tQ -um -uR -vr -vO -ww -sX -uk -yh -yK -uk -sX -uk -yh -yK -uk -FD -sX -GG -Hz -Im -IP -Jt -Ks -Lf -LG -Jt -ac -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +abf +abt +acg +acU +acg +aej +adC +abe +aac +aac +aac +aio +ajn +akg +akO +akf +amg +aio +anq +anT +aon +aib +aoK +aoK +aqm +aqW +arq +arN +asm +asJ +asZ +atj +asO +atQ +aum +auR +avr +avO +aww +asX +auk +ayh +ayK +auk +asX +auk +ayh +ayK +auk +aFD +asX +aGG +aHz +aIm +aIP +aJt +aKs +aLf +aLG +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (109,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -aq -ac -ac -ac -ac -ac -ac -ac -bf -bu -ch -be -dF -ek -eV -fI -ac -ac -ac -io -jo -kf -kP -kf -mh -io -nr -nU -on -oM -oK -oK -qn -qX -rr -rO -sn -sK -rO -tk -rO -tR -ru -uS -vr -vO -ww -Aj -wu -sk -yL -wu -Fa -wu -BF -uO -wu -FE -sX -GG -Hz -Im -IQ -Jt -Kt -Lg -LH -Jt -ac -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +aac +aac +aac +aac +aac +aac +abf +abu +ach +abe +adF +aek +aeV +afI +aac +aac +aac +aio +ajo +akf +akP +akf +aht +aio +anr +anU +aon +aoM +aoK +aoK +aqn +aqX +arr +arO +asn +asK +arO +atk +arO +atR +aru +auS +avr +avO +aww +aAj +awu +ask +ayL +awu +aFa +awu +aBF +auO +awu +aFE +asX +aGG +aHz +aIm +aJV +aJt +asr +aLg +aLH +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (110,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -aq -ac -ac -ac -ac -ac -ad -be -be -be -be -be -be -eW -fJ -ac -ac -ad -io -jp -kf -kP -kf -mi -io -io -nV -on -oN -pi -pG -qo -qY -oJ -rP -so -sL -ta -tl -sO -sO -un -uR -vr -vO -ww -sX -uk -uk -uk -uk -sX -uk -uk -uk -uk -FD -sX -GG -HA -Im -IR -Jt -Jt -Jt -Jt -Jt -GK -ac -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +aac +aac +aac +aac +aac +abe +abe +abe +abe +abe +abe +aeW +afJ +aac +aac +aac +aio +ajp +akf +akP +akf +ami +aio +aio +anV +aon +aoN +api +apG +aqo +aqY +aoJ +arP +aso +asL +ata +atl +asO +asO +aun +auR +avr +avO +aww +asX +auk +auk +auk +auk +asX +auk +auk +auk +auk +aFD +asX +aGG +aHA +aIm +arx +aJt +aJt +aJt +aJt +aJt +aGK +aQf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (111,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -aq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -io -jq -kh -kP -lt -mj -mK -ns -nU -on -oJ -oJ -oJ -oJ -oJ -oJ -rQ -so -sM -ru -tm -sO -sO -uo -uT -vr -vO -ww -sX -sX -sX -sX -sX -sX -sX -sX -sX -sX -FD -sX -GG -Hz -Im -IS -rJ -Ku -Lh -LI -Mg -GK -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aRm +aac +aac +aac +aac +aac +aac +aac +aio +ajq +akh +akP +alt +amj +amK +ans +anU +aon +aoJ +aoJ +aoJ +aoJ +aoJ +aoJ +arQ +aso +asM +aru +atm +asO +asO +auo +auT +avr +avO +aww +asX +asX +asX +asX +asX +asX +asX +asX +asX +asX +aFD +asX +aGG +aHz +aIm +aIS +arJ +aKu +aLh +aLI +aMg +aGK +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (112,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -io -jr -ki -kQ -lu -mk -mL -nt -nW -op -oO -pj -pk -qp -qZ -rs -rR -sp -sN -tb -tn -sO -sO -up -uR -vr -vO -ww -sX -sX -sX -sX -sX -sX -sX -sX -sX -sX -FD -sX -GH -HB -In -IT -rJ -Kv -Lh -GK -GK -GK -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aio +ajr +aki +akQ +alu +amk +amL +ant +anW +aop +aoO +apj +apk +aqp +aqZ +ars +arR +asp +asN +atb +atn +asO +asO +aup +auR +avr +avO +aww +asX +asX +asX +asX +asX +asX +asX +asX +asX +asX +aFD +asX +aGH +aHB +aIn +aIT +arJ +aKv +aLh +aGK +aGK +aGK +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (113,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -io -js -kj -kR -lv -ml -mK -nu -nX -op -oP -pk -pk -qq -ra -rt -rS -sq -Eh -sO -sO -sO -sO -up -uR -vr -vO -ww -sX -sX -sX -sX -sX -sX -sX -sX -sX -sX -FF -rJ -rJ -rJ -rJ -rJ -rJ -Kw -Lh -LJ -Mh -GK -ac -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aio +ajs +akj +akR +alv +aml +amK +anu +anX +aop +aoP +apk +apk +aqq +ara +art +arS +asq +aEh +asO +asO +asO +asO +aup +auR +avr +avO +aww +asX +asX +asX +asX +asX +asX +asX +asX +asX +asX +and +arJ +arJ +arJ +arJ +arJ +arJ +aKw +aLh +aLJ +aMh +aGK +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (114,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -io -io -io -io -io -io -io -js -nY -op -oQ -pl -pH -pk -rb -rs -rT -sr -sP -tc -to -tA -tS -up -uU -vs -vO -ww -sX -xx -uk -yM -zx -Ak -sX -sX -sX -sX -FG -Gk -GI -HC -Io -IU -Jv -Kx -Lh -GK -GK -GK -ac -ac -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aio +aio +aio +aio +aio +aio +aio +ajs +anY +aop +aKt +apl +apH +apk +arb +ars +arT +ajD +asP +atc +ato +atA +atS +aup +auU +ako +avO +aww +asX +axx +auk +ayM +azx +aIQ +asX +asX +asX +asX +aFG +aGk +aGI +aHC +aIo +aIU +aJv +aKx +aLh +aGK +aGK +aGK +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (115,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kk -ac -ac -ac -io -io -io -op -oR -oR -oR -oR -oR -ru -ru -ru -sQ -sQ -sQ -sQ -sQ -ru -rJ -rJ -vP -vP -vP -vP -vP -rJ -rJ -rJ -AQ -uk -sX -uk -FH -rJ -GJ -HD -HD -IV -Jw -Ky -Lh -LK -Mh -GK -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -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 -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aio +aio +aio +aop +aoR +aoR +aoR +aoR +aoR +aru +aru +aru +asQ +asQ +asQ +asQ +asQ +aru +arJ +arJ +avP +avP +avP +avP +avP +arJ +arJ +arJ +aAQ +auk +asX +auk +aFH +arJ +aGJ +aHD +aHD +aIV +aJw +aKy +aLh +aLK +aMh +aGK +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (116,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -ac -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 -ac -kk -ac -ac -ac -ac -ac -ac -ac -ac -ac -Fb -wu -wu -xx -wu -FI -rJ -GK -GK -GK -GK -GK -GK -GK -GK -GK -GK -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aFb +awu +awu +axx +awu +aFI +arJ +aGK +aGK +aGK +aGK +aGK +aGK +aGK +aGK +aGK +aGK +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (117,1,1) = {" -aa -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 -ac -ac -ac -ac -ac -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 -aq -aq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -rJ -vP -vP -vP -vP -vP -rJ -ac -ac -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaq +aaq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +arJ +avP +avP +avP +avP +avP +arJ +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (118,1,1) = {" -aa -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 -ab -ab -ab -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -aq -aq -aq -aq -aq -aq -aq -aq -aq -ac -ac -ac -ab -ab -ab -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aac +aac +aac +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (119,1,1) = {" -aa -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 -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 -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aab +aab +aab +aab +aab +aab +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (120,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -aq -aq -aq -aq -aq -aq -aq -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (121,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (122,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (123,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (124,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (125,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (126,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (127,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (128,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (129,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (130,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (131,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (132,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (133,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (134,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (135,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (136,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (137,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (138,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (139,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (140,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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} diff --git a/maps/tether/tether-04-transit.dmm b/maps/tether/tether-04-transit.dmm index fcacc81c72..958a9daec2 100644 --- a/maps/tether/tether-04-transit.dmm +++ b/maps/tether/tether-04-transit.dmm @@ -347,8 +347,10 @@ /turf/simulated/floor/plating, /area/maintenance/tether_midpoint) "J" = ( +/obj/structure/table/woodentable, +/obj/machinery/camera/network/civilian, /turf/simulated/floor/wood, -/area/space) +/area/tether/midpoint) "K" = ( /obj/structure/cable{ d1 = 1; @@ -374,6 +376,13 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/tether/midpoint) +"N" = ( +/obj/structure/table/woodentable, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tether/midpoint) "O" = ( /obj/structure/cable{ d1 = 1; @@ -10768,7 +10777,7 @@ u g U q -J +q T n n @@ -10908,7 +10917,7 @@ u u u g -n +J q q F @@ -10917,7 +10926,7 @@ F F q q -n +N g u u diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm index 91723b454d..3ff7af359f 100644 --- a/maps/tether/tether-05-station1.dmm +++ b/maps/tether/tether-05-station1.dmm @@ -16,7 +16,7 @@ /obj/structure/extinguisher_cabinet{ dir = 1; icon_state = "extinguisher_closed"; - pixel_y = -32 + pixel_y = 32 }, /obj/vehicle/train/trolley, /turf/simulated/floor/tiled/monotile, @@ -33,7 +33,7 @@ /obj/structure/extinguisher_cabinet{ dir = 1; icon_state = "extinguisher_closed"; - pixel_y = -32 + pixel_y = 32 }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) @@ -128,7 +128,7 @@ /obj/structure/extinguisher_cabinet{ dir = 1; icon_state = "extinguisher_closed"; - pixel_y = -32 + pixel_y = 32 }, /turf/simulated/floor/tiled, /area/engineering/hallway) @@ -273,7 +273,7 @@ d2 = 2; icon_state = "0-2" }, -/obj/machinery/camera/network/engineering, +/obj/machinery/camera/network/engine, /turf/simulated/floor, /area/engineering/engine_smes) "aaA" = ( @@ -671,11 +671,25 @@ /turf/simulated/floor/reinforced, /area/engineering/engine_room) "abl" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/turf/simulated/floor/tiled/dark, -/area/tether/station/burial) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) "abm" = ( /obj/structure/cable/green{ icon_state = "1-2" @@ -995,28 +1009,13 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) "abN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) +/turf/simulated/floor, +/area/maintenance/substation/engineering) "abO" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -1148,6 +1147,32 @@ }, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"acc" = ( +/obj/structure/cable{ + 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_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "acd" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'RADIOACTIVE AREA'"; @@ -1435,6 +1460,28 @@ }, /turf/simulated/floor, /area/vacant/vacant_restaurant_lower) +"acN" = ( +/obj/structure/cable{ + 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/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "acO" = ( /obj/machinery/power/smes/buildable{ charge = 0; @@ -1450,8 +1497,15 @@ d2 = 8; icon_state = "0-8" }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor, /area/maintenance/substation/engineering) +"acP" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/spacedorm1) +"acQ" = ( +/turf/simulated/wall, +/area/maintenance/station/spacecommandmaint) "acR" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 @@ -1459,6 +1513,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled, /area/engineering/hallway) "acS" = ( @@ -1474,6 +1529,9 @@ }, /turf/simulated/floor/wood, /area/hallway/station/atrium) +"acV" = ( +/turf/simulated/wall/r_wall, +/area/bridge/secondary) "acW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -1519,10 +1577,10 @@ /area/hallway/station/atrium) "adb" = ( /obj/machinery/door/blast/shutters{ - dir = 2; - id = "surfcargooffice"; + dir = 8; + id = "PubPrep"; layer = 3.3; - name = "Cargo Office Shutters" + name = "Gateway Access Shutters" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, @@ -1574,6 +1632,9 @@ /obj/random/drinkbottle, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"adj" = ( +/turf/simulated/wall, +/area/maintenance/substation/spacecommand) "adk" = ( /obj/structure/railing{ dir = 1 @@ -1631,6 +1692,9 @@ /obj/machinery/floor_light/prebuilt{ on = 1 }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "ado" = ( @@ -1697,6 +1761,17 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) +"adr" = ( +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "ads" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -1795,6 +1870,24 @@ /obj/machinery/disposal, /turf/simulated/floor/grass, /area/hallway/station/atrium) +"adA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"adB" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/machinery/computer/communications, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "adC" = ( /obj/structure/cable/green{ d1 = 4; @@ -1879,6 +1972,10 @@ }, /turf/simulated/floor, /area/maintenance/substation/engineering) +"adJ" = ( +/obj/machinery/computer/security, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "adK" = ( /obj/structure/cable{ d1 = 4; @@ -1906,6 +2003,13 @@ /obj/machinery/chemical_dispenser/bar_soft/full, /turf/simulated/floor/wood, /area/hallway/station/atrium) +"adN" = ( +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/corner/blue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "adO" = ( /turf/simulated/wall/r_wall, /area/gateway/prep_room) @@ -2038,16 +2142,23 @@ /turf/simulated/floor/tiled, /area/engineering/atmos/backup) "adZ" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/machinery/camera/network/engineering{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/turf/simulated/floor, -/area/maintenance/substation/engineering) +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/engineering/hallway) "aea" = ( /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) @@ -2068,6 +2179,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"aed" = ( +/obj/machinery/computer/supplycomp, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "aee" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; @@ -2097,6 +2212,9 @@ "aei" = ( /turf/simulated/wall/r_wall, /area/mine/explored/upper_level) +"aej" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "aek" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -2127,9 +2245,34 @@ }, /turf/simulated/floor, /area/hallway/station/docks) +"aem" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "aen" = ( /turf/simulated/floor/tiled, /area/engineering/workshop) +"aeo" = ( +/obj/machinery/computer/station_alert/all{ + icon_state = "computer"; + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) +"aep" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/computer/power_monitor{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "aeq" = ( /obj/machinery/computer/cryopod{ pixel_y = 32 @@ -2143,21 +2286,27 @@ /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/sleep/cryo) "aer" = ( -/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{ +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + icon_state = "intact"; dir = 4 }, -/obj/machinery/camera/network/tether{ - dir = 2 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 2; + pixel_y = -24 }, /turf/simulated/floor/tiled, -/area/hallway/station/atrium) +/area/engineering/hallway) "aes" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2202,6 +2351,18 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) +"aeu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) +"aev" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "aew" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -2391,11 +2552,37 @@ }, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"aeH" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "aeI" = ( /obj/machinery/door/airlock/multi_tile/glass, /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/hallway/station/docks) +"aeJ" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Secondary Bridge"; + departmentType = 5; + name = "Secondary Bridge RC"; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/book/codex, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) +"aeK" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "aeL" = ( /obj/machinery/light/small{ dir = 4 @@ -2422,6 +2609,18 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"aeN" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "aeO" = ( /turf/simulated/shuttle/wall/voidcraft/green{ hard_corner = 1 @@ -2475,6 +2674,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) +"aeT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/folder/blue, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "aeU" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, @@ -2509,6 +2716,67 @@ icon_state = "techmaint" }, /area/engineering/storage) +"aeY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) +"aeZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) +"afa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) +"afb" = ( +/obj/structure/closet/excavation, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/gateway/prep_room) +"afc" = ( +/obj/machinery/door/airlock/command{ + name = "Secondary Command Office" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "secondary_bridge_blast"; + name = "Secondary Command Office Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"afd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "afe" = ( /obj/structure/cable/green{ d1 = 4; @@ -2572,6 +2840,16 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"afh" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/bridge/secondary) "afi" = ( /obj/machinery/camera/network/engine{ dir = 1 @@ -2621,6 +2899,17 @@ /obj/effect/floor_decal/corner/yellow/bordercorner2, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) +"afl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "afm" = ( /obj/structure/cable/green{ d1 = 1; @@ -2765,76 +3054,60 @@ /turf/simulated/floor/tiled, /area/hallway/station/docks) "afv" = ( -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, /obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/turf/simulated/floor/plating, -/area/bridge) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_command{ + name = "Secondary Control Room" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "afw" = ( -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/floor/plating, -/area/bridge) -"afx" = ( -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4; + icon_state = "borderfloorcorner2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 }, /obj/structure/cable/green{ + d1 = 1; d2 = 2; - icon_state = "0-2" + icon_state = "1-2" }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"afx" = ( /obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" }, +/obj/structure/grille, /obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, /turf/simulated/floor/plating, -/area/bridge) +/area/bridge/secondary) "afy" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/tether/elevator) @@ -2865,29 +3138,13 @@ /turf/simulated/wall/r_wall, /area/hallway/station/atrium) "afD" = ( -/obj/machinery/camera/network/tether{ +/obj/structure/table/reinforced, +/obj/machinery/camera/network/command{ + icon_state = "camera"; dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - 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/hallway/station/atrium) +/turf/simulated/floor/tiled/dark, +/area/gateway/prep_room) "afE" = ( /obj/machinery/vending/cola, /obj/effect/floor_decal/corner/lightgrey{ @@ -2927,6 +3184,19 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/station/docks) +"afH" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"afI" = ( +/turf/simulated/wall, +/area/tether/station/visitorhallway/office) "afJ" = ( /obj/machinery/vending/snack, /obj/machinery/light{ @@ -2941,24 +3211,31 @@ /turf/simulated/floor/tiled, /area/hallway/station/atrium) "afK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, +/obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloor{ - dir = 4 + dir = 1 }, /obj/effect/floor_decal/corner/blue/border{ - dir = 4 + dir = 1 }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/button/windowtint{ + id = "secondary_bridge"; + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/button/remote/blast_door{ + id = "secondary_bridge_blast"; + name = "Secondary Command Office Blastdoors"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/machinery/recharger, /turf/simulated/floor/tiled, -/area/bridge_hallway) +/area/bridge/secondary) "afL" = ( /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) @@ -3019,6 +3296,35 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) +"afR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/device/radio{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/device/radio{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "afS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -3031,6 +3337,17 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/engineering/engine_monitoring) +"afT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/backup) "afU" = ( /obj/structure/window/reinforced{ dir = 1 @@ -3039,44 +3356,68 @@ /turf/simulated/floor/tiled, /area/engineering/workshop) "afV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "secondary_bridge_blast"; + name = "Secondary Command Office Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/airlock/command{ + name = "Secondary Command Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"afW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm{ - pixel_y = 22 - }, +/obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/bridge_hallway) +/area/hallway/station/atrium) "afX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/purple/bordercorner2, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/engineering{ dir = 8 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/engineering/hallway) +/area/hallway/station/atrium) "afY" = ( /obj/structure/cable/green{ d1 = 4; @@ -3140,33 +3481,15 @@ /turf/simulated/floor, /area/crew_quarters/heads/chief) "agd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/table/reinforced, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rods, +/obj/item/stack/material/glass/phoronrglass{ + amount = 20 }, -/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/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/machinery/camera/network/tether, +/obj/fiftyspawner/wood, /turf/simulated/floor/tiled, -/area/hallway/station/atrium) +/area/engineering/workshop) "age" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -3241,110 +3564,63 @@ /turf/simulated/floor, /area/crew_quarters/heads/chief) "agj" = ( -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "hop_office" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "hop_office" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) +/obj/machinery/status_display, +/turf/simulated/wall, +/area/tether/station/visitorhallway/office) "agk" = ( /obj/structure/grille, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, +/obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "hop_office" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "hop_office" - }, /turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) +/area/tether/station/visitorhallway/office) "agl" = ( -/obj/structure/grille, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/polarized/full{ - id = "hop_office" - }, -/obj/structure/window/reinforced/polarized{ - dir = 1; - id = "hop_office" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "agm" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 }, -/obj/structure/window/reinforced/polarized/full{ - id = "hop_office" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "agn" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/window/reinforced/polarized/full{ - id = "hop_office" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) +/turf/simulated/floor/tiled, +/area/bridge/secondary) "ago" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, +/obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "agp" = ( @@ -3388,6 +3664,68 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"agr" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"ags" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"agt" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/photocopier, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "agu" = ( /obj/structure/sign/deck1, /turf/simulated/shuttle/wall/voidcraft/green{ @@ -3450,6 +3788,30 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"agx" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"agy" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "agz" = ( /obj/effect/floor_decal/techfloor{ dir = 6 @@ -3464,6 +3826,85 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/sleep/cryo) +"agA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"agB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"agC" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"agD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"agE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "agF" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -3485,6 +3926,33 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) +"agG" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/papershredder, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"agH" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/item/weapon/folder/yellow, +/turf/simulated/floor/tiled, +/area/engineering/break_room) "agI" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -3500,6 +3968,20 @@ "agJ" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_room) +"agK" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "agL" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -3510,6 +3992,24 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) +"agM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/skills{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "agN" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -3562,6 +4062,23 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"agS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "agT" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -3678,22 +4195,28 @@ /turf/simulated/floor/tiled, /area/hallway/station/atrium) "ahc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/tether, -/obj/structure/disposalpipe/segment{ - dir = 4 + dir = 10 }, /turf/simulated/floor/tiled, -/area/hallway/station/atrium) +/area/engineering/hallway) "ahd" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -3704,6 +4227,18 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) +"ahe" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "ahf" = ( /obj/structure/cable{ d1 = 1; @@ -3717,14 +4252,138 @@ }, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"ahg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"ahh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"ahi" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/tether/station/visitorhallway/office) +"ahj" = ( +/turf/simulated/wall/r_wall, +/area/bridge/secondary/teleporter) +"ahk" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"ahl" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "secondary_bridge" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "secondary_bridge_blast"; + name = "Secondary Command Office Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/bridge/secondary) +"ahm" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "secondary_bridge" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "secondary_bridge_blast"; + name = "Secondary Command Office Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/bridge/secondary) +"ahn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "secondary_bridge" + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "secondary_bridge_blast"; + name = "Secondary Command Office Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/plating, +/area/bridge/secondary) "aho" = ( /obj/machinery/light/small, /turf/simulated/floor, /area/maintenance/substation/engineering) +"ahp" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "ahq" = ( /obj/random/trash_pile, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"ahr" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "ahs" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -3732,6 +4391,20 @@ }, /turf/simulated/floor/plating, /area/engineering/engine_airlock) +"aht" = ( +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"ahu" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "ahv" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/firstaid/regular, @@ -3806,6 +4479,16 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) +"ahC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "ahD" = ( /obj/structure/cable/green{ d1 = 4; @@ -3821,6 +4504,21 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/engineering/engine_airlock) +"ahE" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "ahF" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -3891,6 +4589,15 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) +"ahL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "ahM" = ( /obj/structure/cable/green{ d1 = 1; @@ -3918,6 +4625,9 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) +"ahN" = ( +/turf/simulated/wall/r_wall, +/area/bridge/secondary/meeting_room) "ahO" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -3944,6 +4654,33 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) +"ahP" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 0; + pixel_y = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"ahQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "ahR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -3967,6 +4704,17 @@ icon_state = "techmaint" }, /area/engineering/storage) +"ahU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "ahV" = ( /obj/structure/lattice, /obj/structure/grille, @@ -4011,6 +4759,9 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) +"aia" = ( +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "aib" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -4021,6 +4772,9 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) +"aic" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) "aid" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -4030,6 +4784,52 @@ }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) +"aie" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) +"aif" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"aig" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) +"aih" = ( +/obj/structure/cable/green{ + 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/disposalpipe/segment{ + dir = 4 + }, +/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, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "aii" = ( /obj/machinery/gateway{ dir = 10 @@ -4043,6 +4843,9 @@ "aik" = ( /turf/simulated/wall/r_wall, /area/maintenance/station/eng_lower) +"ail" = ( +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "aim" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4050,6 +4853,18 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"ain" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Space Civ/Com Substation" + }, +/turf/simulated/floor, +/area/maintenance/substation/spacecommand) "aio" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ @@ -4090,6 +4905,55 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"ait" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/substation/spacecommand) +"aiu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/substation/spacecommand) +"aiv" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/yellow, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) +"aiw" = ( +/obj/machinery/door/airlock/command{ + name = "Secondary Command Office" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "secondary_bridge_blast"; + name = "Secondary Command Office Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"aix" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/random/maintenance/clean, +/obj/random/junk, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "aiy" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -4114,6 +4978,14 @@ /obj/structure/cable/green, /turf/simulated/floor, /area/gateway) +"aiA" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) +"aiB" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "aiC" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -4148,6 +5020,15 @@ /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled, /area/engineering/engine_airlock) +"aiE" = ( +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 0; + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "aiF" = ( /obj/machinery/power/apc{ dir = 4; @@ -4189,6 +5070,16 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) +"aiH" = ( +/obj/machinery/keycard_auth{ + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"aiI" = ( +/obj/structure/closet, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "aiJ" = ( /obj/machinery/gateway, /obj/effect/floor_decal/industrial/warning, @@ -4557,7 +5448,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/machinery/camera/network/tether, /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4873,6 +5763,10 @@ /obj/machinery/suit_cycler/mining{ req_access = null }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) "akc" = ( @@ -4881,12 +5775,6 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "surfcargooffice"; - layer = 3.3; - name = "Cargo Office Shutters" - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -4894,6 +5782,12 @@ dir = 4 }, /obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "PubPrep"; + layer = 3.3; + name = "Gateway Access Shutters" + }, /turf/simulated/floor/tiled/dark, /area/gateway) "akd" = ( @@ -5206,9 +6100,23 @@ /turf/simulated/floor/tiled, /area/gateway/prep_room) "akJ" = ( -/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/dark, -/area/gateway/prep_room) +/area/gateway) "akK" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -5287,16 +6195,32 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "akR" = ( -/obj/machinery/camera/network/engineering{ - dir = 4 +/obj/structure/table/reinforced, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 6 }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldgen, -/turf/simulated/floor, -/area/engineering/storage) +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/engineering/engine_eva) "akS" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/shieldgen, @@ -5493,13 +6417,31 @@ /turf/simulated/floor/tiled, /area/hallway/station/atrium) "alh" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/camera/network/exploration{ - dir = 1 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/dark, -/area/gateway/prep_room) +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "ali" = ( /obj/structure/cable/green{ d1 = 2; @@ -5537,22 +6479,39 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"alo" = ( -/obj/machinery/camera/network/exploration, -/turf/simulated/floor/bluegrid, -/area/gateway/prep_room) -"alp" = ( -/obj/structure/closet/excavation, -/obj/item/device/multitool, -/obj/item/device/multitool, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +"alm" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 }, -/obj/machinery/camera/network/exploration{ - dir = 1 +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"aln" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/bridge/secondary/meeting_room) +"alo" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"alp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/obj/machinery/meter{ + frequency = 1443; + id = "dist_aux_meter"; + name = "Distribution Loop" + }, +/obj/machinery/camera/network/engineering{ + dir = 4 }, /turf/simulated/floor/tiled/dark, -/area/gateway/prep_room) +/area/engineering/engineering_airlock) "alq" = ( /obj/structure/closet/excavation, /obj/item/device/multitool, @@ -5590,22 +6549,19 @@ /turf/simulated/floor, /area/engineering/engineering_monitoring) "alu" = ( -/obj/structure/window/reinforced{ +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 1 - }, -/obj/machinery/camera/network/exploration{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/gateway) +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/engineering/hallway) "alv" = ( /turf/simulated/wall/r_wall, /area/engineering/engineering_monitoring) @@ -5727,27 +6683,35 @@ /turf/simulated/floor, /area/engineering/shaft) "alL" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/borderfloor/corner2{ +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner_steel_grid{ + icon_state = "steel_grid"; dir = 9 }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/purple/bordercorner2, -/obj/effect/floor_decal/corner/purple/bordercorner2{ - dir = 9 +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 }, +/obj/effect/floor_decal/corner/yellow/bordercorner, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/camera/network/tether{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ dir = 1 }, /turf/simulated/floor/tiled, -/area/hallway/station/atrium) +/area/engineering/hallway) "alM" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /obj/effect/floor_decal/borderfloor{ @@ -5764,6 +6728,9 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"alN" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/abandonedlibrary) "alO" = ( /obj/structure/cable{ d1 = 1; @@ -5965,18 +6932,11 @@ /turf/simulated/floor/tiled, /area/engineering/engine_eva) "ame" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 +/obj/effect/landmark{ + name = "lightsout" }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/device/gps/command, -/obj/item/device/gps/command, -/obj/item/device/gps/command, -/turf/simulated/floor/tiled/dark, -/area/teleporter) +/turf/simulated/floor/tiled, +/area/bridge/secondary) "amf" = ( /obj/structure/cable/green{ d1 = 4; @@ -6116,6 +7076,7 @@ pixel_x = 25; pixel_y = 0 }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled, /area/engineering/hallway) "amq" = ( @@ -6134,24 +7095,12 @@ /turf/simulated/floor/water/pool, /area/hallway/station/atrium) "ams" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/machinery/newscaster{ + pixel_y = 32 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/camera/network/engineering, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) +/obj/structure/bed/chair, +/turf/simulated/floor/carpet, +/area/engineering/foyer) "amt" = ( /obj/machinery/door/window{ dir = 1; @@ -6328,10 +7277,10 @@ /area/holodeck_control) "amN" = ( /obj/structure/table/standard, +/obj/item/weapon/soap/nanotrasen, /obj/machinery/light{ dir = 4 }, -/obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled, /area/holodeck_control) "amO" = ( @@ -6485,9 +7434,6 @@ /obj/machinery/computer/atmoscontrol{ dir = 4 }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, /turf/simulated/floor/tiled, /area/engineering/engineering_monitoring) "ane" = ( @@ -6500,11 +7446,26 @@ /turf/simulated/floor, /area/engineering/shaft) "anf" = ( -/obj/machinery/camera/network/civilian{ - dir = 2 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/maintenance/abandonedlibrary) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + 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/hallway/station/atrium) "ang" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor, @@ -6886,6 +7847,7 @@ /area/maintenance/abandonedlibrary) "anP" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled/monotile, /area/engineering/hallway) "anQ" = ( @@ -6895,15 +7857,27 @@ /turf/simulated/floor/tiled, /area/engineering/engineering_monitoring) "anR" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for engine core."; + id = "EngineVent"; + name = "Engine Ventillatory Control"; + pixel_x = 6; + pixel_y = -32 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control-switch for the engine core airlock hatch bolts."; + id = "engine_access_hatch"; + name = "Engine Hatch Bolt Control"; + pixel_x = -6; + pixel_y = -32; + specialfunctions = 4 }, -/obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled, -/area/engineering/hallway) +/area/crew_quarters/heads/chief) "anS" = ( /obj/structure/cable/green{ d1 = 4; @@ -7095,6 +8069,18 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) +"aom" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "aon" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ icon_state = "intact-supply"; @@ -7112,16 +8098,13 @@ /turf/simulated/floor/tiled, /area/engineering/atmos/backup) "aoo" = ( -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - icon_state = "intact-supply"; - dir = 10 +/obj/machinery/power/emitter, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/engineering{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/backup) +/turf/simulated/floor, +/area/engineering/storage) "aop" = ( /obj/machinery/vending/cola, /obj/effect/floor_decal/steeldecal/steel_decals9{ @@ -7666,6 +8649,7 @@ /obj/effect/floor_decal/corner/yellow/border{ dir = 9 }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled, /area/engineering/hallway) "apx" = ( @@ -8107,23 +9091,9 @@ /turf/simulated/floor/tiled, /area/engineering/atmos/backup) "aqg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/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/machinery/computer/timeclock/premade/south, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary/teleporter) "aqh" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ icon_state = "intact"; @@ -8155,30 +9125,23 @@ /turf/simulated/floor/tiled, /area/engineering/atmos/backup) "aqk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; - dir = 4 +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/obj/item/device/radio/intercom{ +/obj/machinery/power/apc{ dir = 2; - pixel_y = -24 + name = "south bump"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/camera/network/civilian{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/engineering/hallway) +/area/holodeck_control) "aql" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ icon_state = "intact"; @@ -8324,24 +9287,20 @@ /area/maintenance/abandonedlibraryconference) "aqx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/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/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/hallway/station/atrium) +/area/bridge/secondary/hallway) "aqy" = ( /obj/structure/table, /obj/effect/decal/cleanable/cobweb, @@ -8719,16 +9678,21 @@ /turf/simulated/floor/plating, /area/maintenance/abandonedlibraryconference) "arh" = ( -/obj/structure/table/standard, -/obj/item/weapon/soap/nanotrasen, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera/network/civilian{ +/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/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, -/area/holodeck_control) +/area/hallway/station/atrium) "ari" = ( /turf/simulated/floor/plating, /area/maintenance/abandonedlibraryconference) @@ -8977,11 +9941,19 @@ /turf/simulated/floor/carpet, /area/engineering/break_room) "arO" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 10 + }, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/engineering/break_room) +/area/engineering/atmos/backup) "arP" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, @@ -9212,12 +10184,16 @@ /turf/simulated/floor/carpet, /area/engineering/break_room) "aso" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/maintenance/abandonedlibraryconference) +/obj/machinery/telecomms/relay/preset/tether/station_mid, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/chief) "asp" = ( /obj/structure/cable/green{ d1 = 4; @@ -9336,8 +10312,27 @@ }, /obj/item/weapon/reagent_containers/spray/cleaner, /obj/item/device/closet_painter, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/engineering/workshop) +"asB" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/manual/security_space_law, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge/secondary/meeting_room) +"asC" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) "asD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -9345,6 +10340,29 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"asE" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) +"asF" = ( +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"asG" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/abandonedlibraryconference) +"asH" = ( +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "asI" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/sleep/cryo) @@ -9384,6 +10402,21 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/sleep/cryo) +"asM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "asN" = ( /obj/machinery/cryopod, /obj/effect/floor_decal/corner_techfloor_grid{ @@ -9412,6 +10445,11 @@ /obj/machinery/computer/HolodeckControl, /turf/simulated/floor/tiled, /area/holodeck_control) +"asR" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "asS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -9422,19 +10460,85 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/engineering/engineering_monitoring) +"asT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "PubPrep"; + layer = 3.3; + name = "Gateway Access Shutters" + }, +/turf/simulated/floor/tiled/dark, +/area/gateway) "asU" = ( /turf/simulated/floor/tiled/monotile, /area/engineering/workshop) +"asV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/command, +/turf/simulated/floor, +/area/bridge/secondary/meeting_room) +"asW" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge/secondary/meeting_room) +"asX" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/red, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge/secondary/meeting_room) +"asY" = ( +/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/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"asZ" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/folder/red, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) +"ata" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/bridge/secondary/teleporter) "atb" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Engineering Substation Bypass" }, /turf/simulated/floor, /area/maintenance/substation/engineering) +"atc" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/cups, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "atd" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/engineering/break_room) +"ate" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) "atf" = ( /obj/machinery/atmospherics/binary/pump{ dir = 1 @@ -9464,6 +10568,12 @@ /obj/item/weapon/storage/box/nifsofts_engineering, /turf/simulated/floor/tiled, /area/engineering/workshop) +"ati" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/device/paicard, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) "atj" = ( /obj/structure/table/reinforced, /obj/item/device/radio/intercom{ @@ -9502,6 +10612,37 @@ }, /turf/simulated/floor/tiled/monotile, /area/engineering/workshop) +"atl" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"atm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) +"atn" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) "ato" = ( /obj/structure/railing{ dir = 8 @@ -9533,6 +10674,13 @@ /obj/random/maintenance/security, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"atr" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/bcarpet, +/area/tether/station/visitorhallway/office) "ats" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -9581,6 +10729,35 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"atv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"atw" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "atx" = ( /obj/effect/landmark{ name = "JoinLateCryo" @@ -9599,6 +10776,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/sleep/cryo) +"atz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/bridge/secondary/meeting_room) "atA" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -9621,6 +10805,21 @@ }, /turf/simulated/floor/tiled/monotile, /area/engineering/workshop) +"atC" = ( +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"atD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"atE" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "atF" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -9691,6 +10890,37 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"atL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"atM" = ( +/obj/structure/cable{ + 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/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "atN" = ( /obj/effect/decal/cleanable/blood/oil/streak{ amount = 0 @@ -9700,11 +10930,20 @@ "atO" = ( /turf/simulated/wall/r_wall, /area/engineering/engine_eva) +"atP" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "atQ" = ( /obj/structure/window/reinforced, /obj/structure/frame, /turf/simulated/floor/tiled, /area/engineering/workshop) +"atR" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/blue, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "atS" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/monotile, @@ -9726,6 +10965,50 @@ /obj/random/junk, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"atU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/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{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"atV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "atW" = ( /turf/simulated/floor/tiled, /area/engineering/hallway) @@ -9756,14 +11039,19 @@ /turf/simulated/floor/tiled, /area/engineering/break_room) "aua" = ( -/obj/machinery/camera/network/engineering{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/structure/table/reinforced, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/item/weapon/folder/yellow, -/turf/simulated/floor/tiled, -/area/engineering/break_room) +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"aub" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge/secondary/meeting_room) "auc" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/corner/white/diagonal, @@ -9777,9 +11065,24 @@ }, /turf/simulated/floor/tiled, /area/engineering/break_room) +"aud" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "aue" = ( /turf/simulated/wall, /area/engineering/atmos/backup) +"auf" = ( +/obj/structure/closet/firecloset/full/double, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) +"aug" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "auh" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -9789,6 +11092,26 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"aui" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) +"auj" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "auk" = ( /obj/structure/stairs/west, /turf/simulated/floor/tiled, @@ -9819,6 +11142,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"aun" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Space Civ/Com Substation Bypass" + }, +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/maintenance/substation/spacecommand) "auo" = ( /obj/machinery/light{ dir = 8 @@ -9828,12 +11161,39 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/sleep/cryo) +"aup" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) +"auq" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "aur" = ( /turf/simulated/floor, /area/crew_quarters/sleep/cryo) "aus" = ( /turf/simulated/wall, /area/crew_quarters/sleep/cryo) +"aut" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) +"auu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "auv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -9858,6 +11218,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) +"aux" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "auy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -9879,6 +11247,225 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/engineering/engine_eva) +"auC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"auD" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/station/spacecommandmaint) +"auE" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"auF" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/teleporter) +"auG" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_tele, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary/teleporter) +"auH" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/teleporter) +"auI" = ( +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary/teleporter) +"auJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/docks) +"auK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/substation/spacecommand) +"auL" = ( +/obj/machinery/power/smes/buildable{ + charge = 0; + output_attempt = 0; + outputting = 0; + RCon_tag = "Substation - Space Civ/Com" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/maintenance/substation/spacecommand) +"auM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/command, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) +"auN" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor, +/area/maintenance/substation/spacecommand) +"auO" = ( +/obj/machinery/vending/fitness, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"auP" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/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/tether/station/stairs_one) +"auQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Space Civ/Com Substation" + }, +/turf/simulated/floor, +/area/maintenance/substation/spacecommand) +"auR" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/maintenance/substation/spacecommand) +"auS" = ( +/obj/machinery/vending/tool, +/obj/machinery/ai_status_display{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/storage/tools) +"auT" = ( +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/docks) +"auU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"auV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "auW" = ( /obj/machinery/atmospherics/omni/mixer{ tag_east = 1; @@ -9890,19 +11477,13 @@ /turf/simulated/floor/tiled, /area/engineering/atmos/backup) "auX" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/machinery/meter, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/backup) +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary) "auY" = ( /obj/machinery/atmospherics/omni/atmos_filter{ tag_east = 2; @@ -9932,6 +11513,9 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/sleep/cryo) +"avb" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/substation/spacecommand) "avc" = ( /obj/machinery/cryopod/robot, /obj/effect/floor_decal/corner_techfloor_grid{ @@ -9958,6 +11542,25 @@ /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/tiled, /area/engineering/workshop) +"ave" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + 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 + }, +/turf/simulated/floor, +/area/tether/station/visitorhallway) "avf" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/airless, @@ -9981,12 +11584,42 @@ }, /turf/simulated/floor/tiled, /area/engineering/workshop) +"avi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/bridge/secondary/teleporter) "avj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled, /area/engineering/engine_eva) +"avk" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) +"avl" = ( +/obj/machinery/teleport/station{ + dir = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary/teleporter) "avm" = ( /obj/structure/cable/green{ d1 = 1; @@ -9998,6 +11631,25 @@ }, /turf/simulated/floor/tiled/monotile, /area/engineering/workshop) +"avn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 0; + pixel_y = -26 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "avo" = ( /obj/structure/cable/green{ d1 = 4; @@ -10009,6 +11661,21 @@ }, /turf/simulated/floor/tiled, /area/engineering/workshop) +"avp" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Space Civ/Com Subgrid"; + name_tag = "Space Civ/Com Subgrid" + }, +/turf/simulated/floor, +/area/maintenance/substation/spacecommand) "avq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -10019,12 +11686,63 @@ }, /turf/simulated/floor/tiled, /area/engineering/workshop) +"avr" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/teleporter) "avs" = ( /obj/structure/table/reinforced, /obj/item/device/suit_cooling_unit, /obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled, /area/engineering/engine_eva) +"avt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"avu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) +"avv" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge/secondary/meeting_room) "avw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/red{ icon_state = "map"; @@ -10048,6 +11766,17 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) +"avy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "avz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10058,6 +11787,17 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) +"avA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/structure/closet, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/random/coin, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "avB" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -10065,6 +11805,22 @@ }, /turf/simulated/floor/wood, /area/engineering/break_room) +"avC" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "avD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -10076,6 +11832,19 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/engineering/break_room) +"avE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/office) "avF" = ( /obj/structure/cable/green{ d1 = 1; @@ -10093,6 +11862,16 @@ }, /turf/simulated/floor/carpet, /area/engineering/break_room) +"avG" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"avH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "avI" = ( /obj/structure/bed/chair/comfy/beige{ icon_state = "comfychair_preview"; @@ -10103,6 +11882,49 @@ }, /turf/simulated/floor/carpet, /area/engineering/break_room) +"avJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4; + icon_state = "borderfloorcorner2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"avK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "avL" = ( /obj/structure/table/reinforced, /obj/machinery/chemical_dispenser/bar_soft/full, @@ -10114,6 +11936,77 @@ }, /turf/simulated/floor/tiled, /area/engineering/break_room) +"avM" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Visitor Office"; + sortType = "Visitor Office" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/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 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"avN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/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/tether/station/visitorhallway) +"avO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4; + icon_state = "borderfloorcorner2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "avP" = ( /obj/structure/cable{ d1 = 1; @@ -10127,12 +12020,130 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"avQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"avR" = ( +/obj/structure/disposalpipe/sortjunction{ + name = "Visitor Office"; + sortType = "Visitor Office" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + 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 = 10 + }, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "avS" = ( /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset/full/double, /turf/simulated/floor, /area/storage/emergency_storage/emergency4) +"avT" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"avU" = ( +/turf/simulated/wall, +/area/tether/station/visitorhallway) +"avV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + 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, +/area/maintenance/station/spacecommandmaint) +"avW" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) +"avX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"avY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) "avZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -10144,25 +12155,179 @@ /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/sleep/cryo) "awa" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) +"awb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/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/hallway/station/docks) +"awc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 4 }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) -"awb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 }, -/obj/machinery/camera/network/civilian{ +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"awd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/sleep/cryo) +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"awe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"awf" = ( +/obj/structure/cable/green{ + 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/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"awg" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Secondary Command Office" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"awh" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"awi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"awj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + 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/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "awk" = ( /obj/machinery/atmospherics/pipe/simple/visible/green{ icon_state = "intact"; @@ -10190,6 +12355,31 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) +"awo" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "awp" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Stairwell" @@ -10200,6 +12390,59 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tether/station/stairs_one) +"awq" = ( +/obj/structure/cable/green{ + 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/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"awr" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/command, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "secondary_bridge_blast"; + name = "Secondary Command Office Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/bridge/secondary/hallway) "aws" = ( /turf/simulated/wall, /area/tether/station/stairs_one) @@ -10209,20 +12452,61 @@ "awu" = ( /turf/simulated/wall, /area/hallway/station/docks) -"awy" = ( -/turf/simulated/wall/r_wall, -/area/bridge) -"awz" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, +"awv" = ( /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/bridge) +/obj/machinery/door/airlock{ + id_tag = "spacedorm1"; + name = "Room 1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/spacedorm1) +"aww" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/spacedorm2) +"awx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"awy" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"awz" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge/secondary/meeting_room) "awA" = ( -/obj/structure/sign/department/bridge, -/turf/simulated/wall/r_wall, -/area/bridge_hallway) +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) "awB" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 @@ -10246,9 +12530,21 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/workshop) "awC" = ( -/obj/structure/sign/nanotrasen, -/turf/simulated/wall/r_wall, -/area/bridge_hallway) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) "awD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ icon_state = "intact"; @@ -10257,46 +12553,119 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "awE" = ( -/turf/simulated/wall/r_wall, -/area/bridge_hallway) -"awF" = ( -/obj/effect/floor_decal/industrial/loading{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ dir = 1 }, -/obj/machinery/camera/network/tether{ +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"awF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, /turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) +/area/tether/station/visitorhallway) "awG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/crew_quarters/heads/hop) -"awH" = ( -/obj/machinery/light{ - dir = 4 +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + id_tag = "spacedorm2"; + name = "Room 2" }, -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"awI" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/heads/hop) -"awJ" = ( -/obj/machinery/door/airlock/maintenance/command{ - req_one_access = list(12) - }, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/station/bridge) +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/spacedorm2) +"awH" = ( +/obj/structure/flora/pottedplant, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/docks) +"awI" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm1) +"awJ" = ( +/obj/machinery/button/remote/airlock{ + id = "spacedorm1"; + name = "Room 1 Lock"; + pixel_x = -28; + pixel_y = 26; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm1) "awK" = ( -/turf/simulated/wall, -/area/maintenance/station/bridge) +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/shoes/black, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/random/maintenance/clean, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm1) +"awL" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/shoes/black, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/random/maintenance/clean, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm2) "awM" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -10312,6 +12681,21 @@ icon_state = "monotile" }, /area/engineering/hallway) +"awN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access = list(17) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/bridge/secondary/teleporter) "awO" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -10344,11 +12728,22 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "awP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ +/obj/effect/floor_decal/borderfloor{ dir = 1 }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, -/area/tether/station/stairs_one) +/area/hallway/station/atrium) +"awQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "awR" = ( /obj/structure/cable/green{ d1 = 1; @@ -10359,6 +12754,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/engineering/break_room) +"awS" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge/secondary/meeting_room) "awT" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/donkpockets{ @@ -10378,6 +12778,28 @@ /obj/machinery/lapvend, /turf/simulated/floor/tiled, /area/storage/tools) +"awV" = ( +/obj/machinery/teleport/hub{ + dir = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary/teleporter) +"awW" = ( +/turf/simulated/floor/tiled, +/area/bridge/secondary/teleporter) +"awX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/teleporter) +"awY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/teleporter) "awZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -10393,6 +12815,36 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) +"axa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "axb" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -10401,75 +12853,187 @@ /turf/simulated/floor/plating, /area/hallway/station/docks) "axc" = ( -/turf/simulated/mineral/floor/vacuum, -/area/bridge) -"axd" = ( -/turf/space/cracked_asteroid, -/area/bridge) -"axe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Secondary Command Office" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"axf" = ( -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) -"axg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, /obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"axj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"axk" = ( -/obj/structure/cable{ +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, /turf/simulated/floor, -/area/maintenance/station/bridge) +/area/bridge/secondary/meeting_room) +"axd" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge/secondary/meeting_room) +"axe" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/blue, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/bridge/secondary/meeting_room) +"axf" = ( +/obj/machinery/button/remote/airlock{ + id = "spacedorm2"; + name = "Room 2 Lock"; + pixel_x = 28; + pixel_y = 26; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm2) +"axg" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 26; + pixel_y = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm2) +"axh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 20; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/teleporter) +"axi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"axj" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm1) +"axk" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/device/gps/command, +/obj/item/device/gps/command, +/obj/item/device/gps/command, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary/teleporter) "axl" = ( -/obj/random/trash_pile, -/obj/effect/decal/cleanable/dirt, +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary/teleporter) +"axm" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/command, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "secondary_bridge_blast"; + name = "Secondary Command Office Blast Doors"; + opacity = 0 + }, /turf/simulated/floor, -/area/maintenance/station/bridge) +/area/bridge/secondary/teleporter) +"axn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm1) +"axo" = ( +/obj/structure/table/woodentable, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm1) +"axp" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm2) +"axq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"axr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/docks) +"axs" = ( +/turf/simulated/wall/r_wall, +/area/bridge/secondary/hallway) "axt" = ( /obj/random/trash_pile, /turf/simulated/floor, @@ -10501,6 +13065,9 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/tether/station/stairs_one) +"axy" = ( +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) "axz" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled, @@ -10554,22 +13121,17 @@ /turf/simulated/floor/plating, /area/hallway/station/docks) "axF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/bridge_hallway) +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm2) "axG" = ( /obj/machinery/atmospherics/pipe/tank{ dir = 1; @@ -10585,15 +13147,94 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/backup) +"axI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"axJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"axK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Space Meeting Room"; + sortType = "Space Meeting Room" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"axL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "axM" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/dirt, -/obj/random/maintenance/security, -/obj/random/maintenance/clean, -/obj/random/maintenance/engineering, -/obj/random/maintenance/cargo, -/turf/simulated/floor, -/area/maintenance/station/bridge) +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm2) +"axN" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm1) "axO" = ( /obj/structure/table/reinforced, /obj/fiftyspawner/glass, @@ -10629,6 +13270,27 @@ "axR" = ( /turf/simulated/floor/tiled, /area/tether/station/stairs_one) +"axS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm1) +"axT" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm1) "axU" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -10636,6 +13298,16 @@ }, /turf/simulated/floor/tiled, /area/engineering/workshop) +"axV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "axW" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 @@ -10648,6 +13320,14 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/engineering/workshop) +"axX" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/reddouble, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm2) "axY" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -10661,6 +13341,23 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/hallway/station/docks) +"aya" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "ayb" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -10681,32 +13378,82 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) -"aye" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +"ayc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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 }, /turf/simulated/floor/tiled, -/area/bridge_hallway) -"ayf" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/area/tether/station/visitorhallway) +"ayd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm2) +"aye" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm2) +"ayf" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/spacedorm3) +"ayg" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm3) +"ayh" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/iandouble, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm3) "ayi" = ( /obj/machinery/light, /obj/structure/table/reinforced, @@ -10723,29 +13470,95 @@ /turf/simulated/floor/tiled, /area/engineering/break_room) "ayj" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/skills, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm3) +"ayk" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm4) "ayl" = ( -/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) +/area/bridge/secondary/teleporter) "aym" = ( -/obj/machinery/account_database, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "ayn" = ( -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm4) +"ayo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/maintenance/station/bridge) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "ayp" = ( /turf/space, /area/shuttle/excursion/tether_dockarm) +"ayq" = ( +/obj/machinery/computer/card{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"ayr" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm4) "ays" = ( /obj/structure/cable{ d1 = 1; @@ -10761,6 +13574,49 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"ayt" = ( +/turf/simulated/wall, +/area/crew_quarters/sleep/spacedorm4) +"ayu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green, +/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 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"ayv" = ( +/obj/machinery/keycard_auth{ + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "ayw" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 @@ -10778,6 +13634,44 @@ /obj/structure/stairs/south, /turf/simulated/floor/tiled, /area/tether/station/stairs_one) +"ayz" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/teleporter) +"ayA" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "ayB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -10822,23 +13716,120 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"ayK" = ( -/obj/machinery/computer/rcon, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ayN" = ( -/obj/machinery/computer/communications, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ayQ" = ( -/obj/machinery/computer/med_data, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"ayS" = ( -/obj/effect/floor_decal/borderfloor{ +"ayE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/effect/floor_decal/corner/blue/border{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"ayF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"ayG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"ayH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"ayI" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm3) +"ayJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm3) +"ayK" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"ayL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"ayM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -10847,50 +13838,340 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"ayN" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"ayO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"ayT" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) -"ayU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/corner/blue/border{ +/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 }, /turf/simulated/floor/tiled, -/area/bridge_hallway) -"ayW" = ( +/area/tether/station/visitorhallway) +"ayP" = ( /obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"ayX" = ( -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"ayZ" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/landmark{ + name = "lightsout" }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"ayQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"ayR" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"ayS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/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/tether/station/visitorhallway) +"ayT" = ( +/obj/structure/cable/green{ + 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/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4; + icon_state = "borderfloorcorner2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"ayU" = ( +/obj/structure/cable/green{ + 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/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"ayV" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/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 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"ayW" = ( +/obj/structure/cable/green{ + 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/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"ayX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4; + icon_state = "borderfloorcorner2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"ayY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor, -/area/maintenance/station/bridge) +/area/tether/station/visitorhallway) +"ayZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "aza" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/station/bridge) +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"azb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/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/hallway/station/atrium) +"azc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"azd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "aze" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ icon_state = "steel_decals_central5"; @@ -10899,31 +14180,42 @@ /turf/simulated/floor/tiled/monotile, /area/engineering/workshop) "azf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) +"azg" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ dir = 9 }, /obj/structure/cable/green{ d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/camera/network/engineering{ - dir = 8 + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/engineering/hallway) +/area/bridge/secondary) "azh" = ( /obj/structure/table/standard, /obj/random/tech_supply, @@ -10969,6 +14261,9 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner2{ dir = 8 }, +/obj/machinery/camera/network/tether{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/hallway/station/docks) "azk" = ( @@ -10995,53 +14290,191 @@ /turf/simulated/floor/plating, /area/hallway/station/docks) "azm" = ( -/obj/machinery/computer/power_monitor{ - dir = 4 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"azn" = ( -/obj/structure/bed/chair{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/bridge) +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"azn" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "azo" = ( -/obj/machinery/computer/station_alert{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/bridge) +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "azp" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"azq" = ( -/obj/machinery/computer/supplycomp{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/bridge) +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"azq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "azr" = ( -/obj/machinery/computer/crew{ +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"azs" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"azt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) +"azu" = ( +/turf/simulated/wall/r_wall, +/area/tether/station/visitorhallway) +"azv" = ( +/turf/simulated/wall, +/area/tether/station/visitorhallway/lounge) +"azw" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + 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/tether/station/visitorhallway/lounge) +"azx" = ( +/turf/simulated/wall, +/area/tether/station/visitorhallway/laundry) +"azy" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/structure/cable/green{ + 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/tether/station/visitorhallway/laundry) +"azz" = ( +/turf/simulated/wall/r_wall, +/area/tether/station/visitorhallway/laundry) +"azA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/camera/network/civilian{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"azy" = ( -/mob/living/simple_mob/animal/passive/dog/corgi/Ian, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"azz" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"azA" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway) "azB" = ( /obj/structure/cable/green{ d1 = 4; @@ -11051,6 +14484,18 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"azC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 6; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) "azD" = ( /obj/structure/cable/green{ d1 = 2; @@ -11059,6 +14504,43 @@ }, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"azE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) +"azF" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) +"azG" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) +"azH" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) "azI" = ( /obj/structure/cable/green{ d1 = 4; @@ -11077,6 +14559,31 @@ }, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"azK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) +"azL" = ( +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = -6; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) "azM" = ( /obj/machinery/light_switch{ pixel_y = -25 @@ -11103,25 +14610,17 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/storage/tools) +"azP" = ( +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) "azQ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/camera/network/tether{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 + dir = 4 }, /turf/simulated/floor/tiled, -/area/hallway/station/docks) +/area/tether/station/dock_one) "azR" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -11134,17 +14633,44 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) +"azS" = ( +/obj/structure/cable/green{ + 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/tether/station/visitorhallway/lounge) +"azT" = ( +/obj/machinery/washing_machine, +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) "azU" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge) +/obj/structure/cable/green{ + 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/tether/station/visitorhallway/laundry) "azV" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/dark, -/area/bridge) +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) "azW" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/dark, -/area/bridge) +/obj/machinery/washing_machine, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) "azX" = ( /obj/structure/cable/green{ d1 = 2; @@ -11169,68 +14695,161 @@ /turf/simulated/floor/tiled, /area/hallway/station/atrium) "azY" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) +"azZ" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) +"aAa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) +"aAb" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) +"aAc" = ( +/obj/structure/cable/green{ + 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/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 + dir = 1 }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 1 }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/bridge_hallway) -"azZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/area/tether/station/visitorhallway) +"aAd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) +"aAe" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) +"aAf" = ( +/obj/structure/closet/wardrobe/suit, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) +"aAg" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) +"aAh" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) +"aAi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 5 +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) +"aAj" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/bridge_hallway) -"aAd" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/clipboard, -/obj/item/weapon/stamp/hop, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"aAf" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Personnel's Office" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) +/area/tether/station/visitorhallway/lounge) "aAk" = ( /turf/simulated/wall, /area/crew_quarters/toilet) +"aAl" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) "aAm" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/light{ @@ -11257,6 +14876,17 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) +"aAn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "aAo" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -11281,20 +14911,281 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) +"aAp" = ( +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "aAq" = ( /obj/effect/decal/cleanable/dirt, /obj/random/trash_pile, /turf/simulated/floor, /area/hallway/station/docks) -"aAG" = ( -/obj/structure/bed/chair{ +"aAr" = ( +/obj/machinery/light/small, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) +"aAs" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary/teleporter) +"aAt" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/teleporter) +"aAu" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"aAv" = ( +/obj/machinery/light{ dir = 1 }, -/obj/effect/landmark/start{ - name = "Head of Personnel" +/turf/simulated/floor/tiled, +/area/bridge/secondary) +"aAw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"aAx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/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/computer/id_restorer{ + dir = 1; + icon_state = "restorer"; + pixel_y = -32 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"aAy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"aAz" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/secondary/teleporter) +"aAA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/lightgrey/border, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"aAB" = ( +/obj/structure/cable{ + 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/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"aAC" = ( +/obj/structure/cable{ + 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/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"aAD" = ( +/obj/structure/cable{ + 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/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"aAE" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"aAF" = ( +/obj/structure/cable{ + 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/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"aAG" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "aAH" = ( /obj/structure/cable/green{ d1 = 2; @@ -11318,16 +15209,52 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"aAI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"aAJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) +"aAK" = ( +/obj/structure/closet/wardrobe/black, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) "aAL" = ( /obj/structure/cable/green{ 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/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 + dir = 1 }, /obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 @@ -11336,14 +15263,24 @@ dir = 4 }, /obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"aAM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) +"aAN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, /turf/simulated/floor/tiled, -/area/hallway/station/atrium) +/area/tether/station/visitorhallway/laundry) "aAO" = ( /obj/structure/toilet{ dir = 4 @@ -11426,6 +15363,13 @@ /obj/item/clothing/head/helmet/space/void/atmos, /turf/simulated/floor/tiled, /area/engineering/engine_eva) +"aAU" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) "aAV" = ( /obj/structure/bed/chair, /turf/simulated/floor/tiled, @@ -11434,10 +15378,16 @@ /turf/simulated/wall, /area/crew_quarters/sleep/engi_wash) "aAX" = ( -/obj/structure/bed/chair, -/obj/machinery/camera/network/tether, +/obj/structure/undies_wardrobe, /turf/simulated/floor/tiled, -/area/hallway/station/docks) +/area/tether/station/visitorhallway/laundry) +"aAY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/station/visitorhallway/lounge) "aAZ" = ( /obj/structure/closet/emcloset, /obj/machinery/atmospherics/unary/vent_scrubber/on, @@ -11458,6 +15408,15 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) +"aBc" = ( +/obj/structure/table/bench/standard, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) "aBd" = ( /obj/structure/bed/chair, /obj/machinery/atm{ @@ -11465,6 +15424,10 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) +"aBe" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) "aBf" = ( /obj/structure/bed/chair, /obj/machinery/atmospherics/unary/vent_pump/on, @@ -11485,20 +15448,22 @@ /turf/simulated/floor/tiled, /area/hallway/station/docks) "aBj" = ( -/obj/machinery/computer/card{ - dir = 4 - }, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/station/visitorhallway/laundry) "aBk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/turf/simulated/floor/tiled/dark, -/area/bridge) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm3) "aBl" = ( /obj/structure/window/reinforced{ dir = 4 @@ -11518,27 +15483,43 @@ /turf/simulated/floor/tiled, /area/engineering/engine_eva) "aBm" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = 3; - pixel_y = 6 +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "trade_shuttle_dock_airlock"; + name = "interior access button"; + pixel_x = -28; + pixel_y = -26; + req_access = list(13) }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_y = 3 - }, -/obj/item/weapon/storage/briefcase/inflatable{ - pixel_x = -3; - pixel_y = 0 - }, -/obj/machinery/camera/network/engineering, +/obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 + dir = 8; + pixel_x = -26 }, /turf/simulated/floor/tiled, -/area/engineering/engine_eva) +/area/tether/station/dock_one) +"aBn" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm4) +"aBo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm4) "aBp" = ( /obj/machinery/power/apc{ dir = 1; @@ -11565,34 +15546,60 @@ /turf/simulated/floor/tiled, /area/engineering/engine_eva) "aBq" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 +/obj/machinery/camera/network/engineering{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/engineering/engine_eva) +/area/engineering/workshop) "aBr" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/structure/table/woodentable, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm4) +"aBs" = ( /obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/machinery/keycard_auth{ + dir = 4; pixel_x = -28 }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm3) "aBt" = ( -/obj/structure/closet/secure_closet/hop2, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) +/obj/machinery/button/remote/airlock{ + id = "spacedorm3"; + name = "Room 3 Lock"; + pixel_x = -28; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm3) "aBu" = ( -/obj/structure/closet/secure_closet/hop, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/shoes/black, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/random/maintenance/clean, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm3) +"aBv" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/shoes/black, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/random/maintenance/clean, +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm4) "aBw" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -11609,6 +15616,12 @@ /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, /area/engineering/foyer) +"aBx" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "aBy" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_engineering{ @@ -11618,6 +15631,16 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/engineering/workshop) +"aBz" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "aBA" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -11700,6 +15723,22 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/engi_wash) +"aBF" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/mre, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) +"aBG" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/random/maintenance/clean, +/obj/random/medical, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) "aBH" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; @@ -11709,44 +15748,92 @@ }, /turf/simulated/wall/r_wall, /area/maintenance/substation/civilian) -"aBJ" = ( -/obj/machinery/computer/secure_data{ - dir = 4 +"aBI" = ( +/obj/machinery/button/remote/airlock{ + id = "spacedorm4"; + name = "Room 4 Lock"; + pixel_x = 28; + pixel_y = -26; + specialfunctions = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aBK" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aBL" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/book/codex, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aBM" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"aBO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm4) +"aBJ" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 26; + pixel_y = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 +/turf/simulated/floor/wood, +/area/crew_quarters/sleep/spacedorm4) +"aBK" = ( +/obj/random/junk, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) +"aBL" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/maintenance/station/spacecommandmaint) +"aBM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + id_tag = "spacedorm3"; + name = "Room 3" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/bridge_hallway) +/area/crew_quarters/sleep/spacedorm3) +"aBN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + id_tag = "spacedorm4"; + name = "Room 4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/spacedorm4) +"aBO" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/sleep/spacedorm4) +"aBP" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"aBQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "trade_shuttle_dock_pump" + }, +/turf/simulated/floor/tiled/dark, +/area/tether/station/dock_one) "aBR" = ( /obj/structure/cable/green{ d1 = 1; @@ -11759,6 +15846,36 @@ }, /turf/simulated/floor, /area/maintenance/substation/civilian) +"aBS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled, +/area/bridge/secondary/hallway) +"aBT" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "aBU" = ( /obj/machinery/door/airlock{ name = "Unit 2" @@ -11769,6 +15886,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/toilet) +"aBW" = ( +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/wood, +/area/bridge/secondary/meeting_room) "aBX" = ( /obj/machinery/door/airlock{ name = "Restroom" @@ -11776,18 +15900,71 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/engi_wash) +"aBY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/bridge/secondary) "aBZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"aCc" = ( -/obj/machinery/camera/network/tether{ - dir = 9 +"aCa" = ( +/obj/machinery/recharge_station, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/engineering/foyer) +"aCb" = ( +/obj/machinery/computer/security/engineering{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/hallway/station/docks) +/area/engineering/engineering_monitoring) +"aCc" = ( +/obj/structure/table/reinforced, +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 10; + pixel_y = 36 + }, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"aCd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/chief) "aCe" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -11795,70 +15972,255 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"aCn" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ +"aCf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled, +/area/engineering/engine_eva) +"aCg" = ( +/obj/machinery/camera/network/engineering{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ +/turf/simulated/floor/tiled, +/area/engineering/engine_eva) +"aCh" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/camera/network/engineering{ dir = 8 }, /turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCp" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/engineering/break_room) +"aCi" = ( +/obj/machinery/atmospherics/pipe/tank/air{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/backup) +"aCj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/engineering{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/turf/simulated/floor/tiled, +/area/engineering/hallway) +"aCk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ dir = 4 }, /turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCs" = ( +/area/tether/station/visitorhallway/office) +"aCl" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/lounge) +"aCm" = ( +/obj/machinery/washing_machine, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/tether/station/visitorhallway/laundry) +"aCn" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/station/burial) +"aCo" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/gateway/prep_room) +"aCp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_one) +"aCq" = ( +/obj/structure/cable{ + 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/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/camera/network/tether{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/bridge_hallway) +/area/hallway/station/atrium) +"aCr" = ( +/obj/structure/cable{ + 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/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) +"aCs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/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/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "aCt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/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/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, -/area/bridge_hallway) +/area/hallway/station/atrium) "aCu" = ( -/obj/structure/stairs/east, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/machinery/camera/network/tether{ + dir = 9 + }, /turf/simulated/floor/tiled, -/area/bridge_hallway) +/area/hallway/station/atrium) +"aCv" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/docks) "aCw" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -11899,6 +16261,20 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/holodeck_control) +"aCz" = ( +/obj/structure/bed/chair, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/station/docks) +"aCA" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "aCB" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1379; @@ -11942,6 +16318,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled/steel_grid, /area/tether/station/dock_one) +"aCH" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_one) "aCI" = ( /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, @@ -11977,8 +16368,13 @@ /turf/simulated/floor/tiled/steel_grid, /area/tether/station/dock_two) "aCO" = ( -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain) +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "aCP" = ( /obj/structure/table/reinforced, /obj/machinery/cell_charger, @@ -12027,28 +16423,17 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "aCS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge Hallway Central"; - dir = 4 - }, +/obj/structure/table/standard, +/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/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled, -/area/bridge_hallway) +/area/storage/tools) "aCT" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -12065,22 +16450,18 @@ }, /area/engineering/hallway) "aCU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 +/obj/effect/floor_decal/techfloor, +/obj/machinery/camera/network/tether{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/sleep/cryo) "aCV" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -12107,48 +16488,38 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "aCW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" }, /turf/simulated/floor/tiled, -/area/bridge_hallway) +/area/bridge/secondary/hallway) +"aCX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "aCY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/item/device/radio/beacon, /turf/simulated/floor/tiled, -/area/bridge_hallway) -"aCZ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) +/area/hallway/station/docks) "aDh" = ( /obj/machinery/door/airlock{ name = "Unit 3" @@ -12174,29 +16545,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"aDp" = ( -/obj/machinery/shower{ - pixel_y = 8 - }, -/obj/item/weapon/soap/deluxe, -/obj/structure/curtain/open/shower, -/obj/item/weapon/bikehorn/rubberducky, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"aDq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"aDr" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) "aDs" = ( /obj/structure/cable/green{ d2 = 4; @@ -12211,19 +16559,6 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor, /area/maintenance/substation/civilian) -"aDu" = ( -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aDy" = ( -/obj/structure/sign/department/conference_room, -/turf/simulated/wall/r_wall, -/area/bridge_hallway) -"aDz" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/substation/command) -"aDA" = ( -/turf/simulated/wall/r_wall, -/area/maintenance/station/bridge) "aDD" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/undies_wardrobe, @@ -12284,22 +16619,6 @@ }, /turf/simulated/floor, /area/maintenance/substation/civilian) -"aDN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"aDO" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) "aDP" = ( /obj/structure/table/rack{ dir = 1 @@ -12325,45 +16644,6 @@ /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/storage/emergency_storage/emergency4) -"aDQ" = ( -/obj/item/device/flashlight/lamp/green, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aDR" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aDV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/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/tether{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "aDZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -12443,48 +16723,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"aEr" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/blue_captain, -/obj/item/clothing/glasses/omnihud/all, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/item/weapon/stamp/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aEs" = ( -/obj/structure/bed/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aEt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/mob/living/simple_mob/animal/passive/fox/renault, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aEu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "aEx" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ icon_state = "map"; @@ -12528,14 +16766,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) -"aEB" = ( -/obj/machinery/power/terminal, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) "aEE" = ( /obj/structure/toilet{ dir = 4 @@ -12546,17 +16776,6 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/sleep/engi_wash) -"aEF" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/maintenance/station/bridge) -"aEG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/station/bridge) "aEM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -12576,15 +16795,6 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"aEP" = ( -/obj/structure/closet/wardrobe/captain, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aEQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "aER" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 @@ -12631,33 +16841,6 @@ /obj/structure/curtain/open/shower/engineering, /turf/simulated/floor/tiled, /area/crew_quarters/sleep/engi_wash) -"aEV" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) "aEW" = ( /obj/machinery/power/terminal{ dir = 4 @@ -12699,12 +16882,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/storage/emergency_storage/emergency4) -"aFb" = ( -/obj/machinery/power/breakerbox/activated{ - RCon_tag = "Command Substation Bypass" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) "aFc" = ( /obj/machinery/alarm{ dir = 4; @@ -12790,62 +16967,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"aFw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aFx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aFz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"aFB" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) "aFI" = ( /obj/structure/table/standard, /obj/machinery/firealarm{ @@ -12881,21 +17002,6 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/engineering_airlock) -"aFK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" - }, -/obj/machinery/meter{ - frequency = 1443; - id = "dist_aux_meter"; - name = "Distribution Loop" - }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/engineering/engineering_airlock) "aFL" = ( /obj/structure/window/reinforced{ dir = 8 @@ -13004,24 +17110,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"aGc" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/photo_album{ - pixel_y = -10 - }, -/obj/item/weapon/reagent_containers/food/drinks/flask{ - pixel_x = 8 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aGi" = ( -/obj/structure/displaycase, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"aGl" = ( -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) "aGs" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -13119,27 +17207,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/substation/civilian) -"aGJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge Hallway South"; - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/blue/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"aGK" = ( -/turf/simulated/wall/r_wall, -/area/teleporter) "aGP" = ( /obj/structure/cable{ d1 = 4; @@ -13203,28 +17270,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"aHf" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aHi" = ( -/obj/structure/sign/securearea, -/turf/simulated/wall/r_wall, -/area/teleporter) -"aHk" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_tele, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aHs" = ( -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/station/dock_one) "aHt" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -13249,12 +17294,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"aHx" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/station/dock_two) "aHz" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -13287,37 +17326,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"aHB" = ( -/obj/machinery/camera/network/command{ - c_tag = "COM - Teleport Access" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aHE" = ( -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aHM" = ( -/obj/structure/closet/crate, -/turf/simulated/floor/tiled, -/area/teleporter) -"aHN" = ( -/turf/simulated/floor/tiled, -/area/teleporter) -"aHO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aHP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter) "aHQ" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1379; @@ -13329,18 +17337,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/engineering/engineering_airlock) -"aHR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"aHS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/teleporter) "aHT" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/door/airlock/glass_external{ @@ -13353,12 +17349,6 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/dark, /area/engineering/engineering_airlock) -"aHU" = ( -/obj/machinery/teleport/station{ - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) "aHY" = ( /obj/structure/cable/green{ d1 = 1; @@ -13386,11 +17376,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"aId" = ( -/obj/structure/closet/crate, -/obj/item/weapon/tool/crowbar, -/turf/simulated/floor/tiled, -/area/teleporter) "aIf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -13402,10 +17387,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/engineering/workshop) -"aIh" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled, -/area/teleporter) "aIi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ icon_state = "intact"; @@ -13413,12 +17394,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) -"aIj" = ( -/obj/machinery/teleport/hub{ - dir = 2 - }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) "aIl" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -13513,16 +17488,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"aIu" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"aIv" = ( -/obj/structure/dispenser{ - phorontanks = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) "aIy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -13556,12 +17521,6 @@ /obj/effect/floor_decal/sign/dock/two, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"aIS" = ( -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/station/dock_two) "aIT" = ( /obj/structure/cable/green{ d1 = 1; @@ -13593,11 +17552,6 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/tether/station/dock_one) -"aJa" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled, -/area/tether/station/dock_two) "aJh" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -13930,36 +17884,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/engineering_airlock) -"aLr" = ( -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner_steel_grid{ - icon_state = "steel_grid"; - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/obj/structure/cable/green{ - 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 - }, -/turf/simulated/floor/tiled, -/area/engineering/hallway) "aLt" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ @@ -15453,21 +19377,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) -"aUp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/camera/network/engineering, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled, -/area/engineering/hallway) "aUE" = ( /obj/structure/railing, /obj/structure/disposalpipe/segment, @@ -15550,31 +19459,6 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aVB" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for engine core."; - id = "EngineVent"; - name = "Engine Ventillatory Control"; - pixel_x = 6; - pixel_y = -32 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control-switch for the engine core airlock hatch bolts."; - id = "engine_access_hatch"; - name = "Engine Hatch Bolt Control"; - pixel_x = -6; - pixel_y = -32; - specialfunctions = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) "aVG" = ( /obj/structure/window/reinforced{ dir = 8 @@ -15736,24 +19620,6 @@ }, /turf/simulated/floor/tiled, /area/holodeck_control) -"aXy" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/camera/network/civilian{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/holodeck_control) "aXC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15906,16 +19772,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"aYE" = ( -/obj/structure/table/reinforced, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 10; - pixel_y = 36 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/chief) "aYF" = ( /obj/structure/table/reinforced, /obj/machinery/computer/skills, @@ -15958,12 +19814,6 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"aZn" = ( -/obj/machinery/computer/security/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/engineering_monitoring) "aZq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -16029,13 +19879,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"aZV" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 8 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/bridge) "aZW" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 9 @@ -16113,20 +19956,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor, /area/crew_quarters/sleep/cryo) -"baV" = ( -/obj/effect/floor_decal/techfloor, -/obj/effect/floor_decal/techfloor/hole, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/machinery/telecomms/relay/preset/tether/station_mid, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/chief) "bbs" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -16241,10 +20070,6 @@ }, /turf/simulated/floor/carpet/oracarpet, /area/crew_quarters/heads/chief) -"bcs" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled/dark, -/area/bridge) "bcw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -16271,13 +20096,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/sleep/cryo) -"bcE" = ( -/obj/effect/floor_decal/corner/yellow/full{ - dir = 1 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/bridge) "bcK" = ( /obj/structure/table/rack{ dir = 8; @@ -16359,32 +20177,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"bdr" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "bds" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -16631,26 +20423,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"bed" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "bee" = ( /obj/structure/cable{ d1 = 4; @@ -16676,336 +20448,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"beg" = ( -/obj/structure/cable{ - 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/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"beh" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"bei" = ( -/obj/structure/cable{ - 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/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 2 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"bej" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"bek" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"bem" = ( -/obj/structure/cable{ - 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 = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"bep" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"ber" = ( -/obj/structure/cable{ - 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/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"bev" = ( -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/obj/structure/cable{ - 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/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"bez" = ( -/obj/structure/cable{ - 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/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"beB" = ( -/obj/structure/cable{ - 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/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/blue/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"beE" = ( -/obj/structure/cable{ - 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/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"beF" = ( -/obj/structure/cable{ - 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/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/machinery/computer/id_restorer{ - dir = 1; - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) -"beH" = ( -/obj/structure/cable{ - 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/hallway/station/atrium) "beJ" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 @@ -17015,28 +20457,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) -"beK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "beL" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -17066,14 +20486,6 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/engineering/foyer) -"beP" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/bed/chair, -/obj/machinery/camera/network/engineering, -/turf/simulated/floor/carpet, -/area/engineering/foyer) "beS" = ( /obj/structure/cable/green{ d1 = 1; @@ -17177,41 +20589,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/carpet/oracarpet, /area/crew_quarters/heads/chief) -"bfW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_access = list(19) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge_hallway) -"bfY" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_access = list(19) - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge_hallway) "bgf" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -17361,29 +20738,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/stairs_one) -"bgN" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/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/tether/station/stairs_one) "bgO" = ( /obj/structure/table/standard, /obj/random/tech_supply, @@ -17461,25 +20815,6 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"bhr" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bht" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) "bhH" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -17616,92 +20951,6 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled, /area/storage/tools) -"bjo" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"bjt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) -"bjC" = ( -/obj/structure/table/reinforced, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "hop_office_desk"; - name = "HoP Office Privacy Shutters"; - opacity = 0 - }, -/obj/machinery/door/window/northleft{ - name = "Reception Window"; - icon_state = "right"; - dir = 1 - }, -/obj/machinery/door/window/brigdoor/eastright{ - dir = 2; - name = "Head of Personnel's Desk"; - req_access = list(57) - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bjX" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/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/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "bkm" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock{ @@ -17766,102 +21015,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"bkC" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bkE" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 8 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bll" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/camera/network/command{ - c_tag = "Bridge Hallway North"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"blr" = ( -/obj/machinery/computer/card{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"blx" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "hop_office_desk"; - layer = 3.3; - name = "Desk Privacy Shutter"; - pixel_x = -29; - pixel_y = 29 - }, -/obj/machinery/button/windowtint{ - id = "hop_office"; - layer = 3.3; - pixel_x = 26; - pixel_y = 29 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"blF" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/blue_hop, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"blS" = ( -/obj/effect/floor_decal/corner/blue/full{ - dir = 1 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bmc" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/station/bridge) "bmv" = ( /obj/structure/cable/green{ d1 = 1; @@ -17906,24 +21059,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"bmM" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bne" = ( -/obj/machinery/vending/tool, -/obj/machinery/ai_status_display{ - pixel_x = -32; - pixel_y = 0 - }, -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/storage/tools) "bnl" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 9; @@ -17952,38 +21087,6 @@ }, /turf/simulated/floor, /area/hallway/station/docks) -"bnv" = ( -/obj/structure/noticeboard{ - pixel_x = -32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/bridge_hallway) "bnw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -17992,22 +21095,6 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"bnB" = ( -/obj/effect/floor_decal/corner/paleblue/full{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/flora/pottedplant, -/obj/machinery/camera/network/command{ - c_tag = "Bridge Northeast"; - dir = 9 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) "bnI" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/disposalpipe/segment{ @@ -18015,57 +21102,6 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/heads/chief) -"bnL" = ( -/obj/machinery/disposal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bnW" = ( -/obj/machinery/computer/communications, -/obj/machinery/keycard_auth{ - pixel_x = -28 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bnY" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/landmark/start{ - name = "Colony Director" - }, -/obj/item/weapon/storage/secure/safe{ - pixel_x = -28 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bnZ" = ( -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) "boc" = ( /obj/structure/extinguisher_cabinet{ dir = 4; @@ -18094,71 +21130,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/stairs_one) -"boH" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"boL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"boM" = ( -/obj/structure/disposalpipe/sortjunction/flipped{ - name = "HoP Office"; - sortType = "HoP Office" - }, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) -"boN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"boU" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 32; - pixel_y = 4 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) "bpd" = ( /obj/structure/cable/green{ d1 = 4; @@ -18199,31 +21170,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"bph" = ( -/obj/structure/cable/green{ - 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/machinery/camera/network/tether{ - dir = 1 - }, -/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 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "bpi" = ( /obj/structure/cable/green{ d1 = 4; @@ -18300,57 +21246,6 @@ }, /turf/simulated/floor, /area/hallway/station/docks) -"bpD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bpJ" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/fireaxecabinet{ - pixel_x = 32; - pixel_y = 0 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bpM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bpQ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/red, -/obj/item/weapon/pen/multi, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) "bqb" = ( /obj/structure/cable/green{ d1 = 1; @@ -18388,294 +21283,6 @@ /obj/random/tool, /turf/simulated/floor, /area/hallway/station/docks) -"bql" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/donut, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bqo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bqs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bqx" = ( -/obj/structure/cable/green{ - 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/machinery/hologram/holopad, -/obj/item/device/radio/beacon, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bqA" = ( -/obj/structure/cable/green{ - 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 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bqD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bqF" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - 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 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bqP" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"bqR" = ( -/obj/structure/cable/green{ - 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/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access = list(19) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge) -"bqU" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/structure/cable/green{ - 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/disposalpipe/junction{ - icon_state = "pipe-j1"; - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"brd" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) -"brf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - 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/crew_quarters/heads/hop) -"brj" = ( -/obj/structure/cable/green{ - 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/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access = list(57) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/heads/hop) -"bro" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"brv" = ( -/obj/structure/table/standard, -/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/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/storage/tools) -"brD" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) "brV" = ( /obj/structure/cable/green{ d1 = 1; @@ -18709,17 +21316,6 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/toilet) -"bsl" = ( -/obj/structure/flora/pottedplant, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/hallway/station/docks) "bsv" = ( /obj/structure/bed/chair, /obj/machinery/power/apc{ @@ -18734,88 +21330,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"bsH" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/secure/briefcase, -/obj/machinery/button/remote/blast_door{ - id = "bridge blast"; - name = "Bridge Blastdoors"; - pixel_x = 0; - pixel_y = -20 - }, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/standard_operating_procedure, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bsM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"bsN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) -"bsO" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/papershredder, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bsP" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/omnihud, -/obj/machinery/light, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) -"bsR" = ( -/obj/machinery/camera/network/command{ - c_tag = "Head of Personnel Office"; - dir = 9 - }, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled, -/area/crew_quarters/heads/hop) "bto" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ @@ -18972,49 +21486,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"bvb" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_command{ - name = "Bridge"; - req_access = list(19) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge) -"bvd" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals8{ - dir = 1 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"bvk" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) "bvs" = ( /obj/structure/sink{ dir = 4; @@ -19059,155 +21530,9 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"bvN" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/item/weapon/folder/blue, -/obj/item/weapon/folder/red, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bvS" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 0 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bvW" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/device/radio{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/device/radio, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bvY" = ( -/obj/machinery/photocopier/faxmachine{ - department = "Bridge" - }, -/obj/structure/table/reinforced, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) "bwb" = ( /turf/space, /area/shuttle/tether/station) -"bwc" = ( -/obj/item/device/aicard, -/obj/item/weapon/storage/box/PDAs{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/weapon/storage/box/ids, -/obj/structure/table/reinforced, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bwh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"bwl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "bridge blast"; - name = "Bridge Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge) -"bwn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) -"bwq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_access = list(19) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge_hallway) -"bwx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 25 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/dark, -/area/bridge) "bwV" = ( /obj/machinery/door/airlock/glass, /obj/structure/cable{ @@ -19220,19 +21545,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/tether/station/dock_one) -"bxa" = ( -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "16-0" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/symbol/da{ - pixel_y = 32 - }, -/turf/simulated/floor, -/area/maintenance/station/bridge) "bxe" = ( /obj/machinery/door/airlock/glass, /obj/structure/cable{ @@ -19245,86 +21557,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/tether/station/dock_two) -"bxE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cap_office"; - layer = 3.1; - name = "Colony Directo's Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"bxJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - id_tag = "captaindoor"; - name = "Colony Director's Office"; - req_access = list(20) - }, -/turf/simulated/floor/tiled/dark, -/area/crew_quarters/captain) -"bxL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 2; - id = "cap_office"; - layer = 3.1; - name = "Colony Directo's Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"bxY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) -"bya" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_access = list(19) - }, -/turf/simulated/floor/tiled/steel_grid, -/area/bridge_hallway) -"byf" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) "byy" = ( /obj/machinery/recharge_station, /obj/machinery/light/small{ @@ -19394,71 +21626,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"byV" = ( -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"byW" = ( -/obj/machinery/camera/network/command, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"byY" = ( -/obj/structure/table/woodentable, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/item/device/megaphone, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bza" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/melee/chainofcommand, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/item/weapon/coin/phoron{ - desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; - name = "limited edition phoron coin" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bzc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "cap_office"; - layer = 3.1; - name = "Colony Directo's Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) "bzn" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -19477,19 +21644,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/tether/station/dock_two) -"bzI" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) "bzR" = ( /obj/structure/flora/pottedplant, /obj/machinery/status_display{ @@ -19497,143 +21651,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"bzY" = ( -/obj/structure/table/woodentable, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bAk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "cap_office"; - layer = 3.1; - name = "Colony Directo's Shutters" - }, -/turf/simulated/floor/plating, -/area/crew_quarters/captain) -"bAr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"bAv" = ( -/obj/machinery/cell_charger, -/obj/structure/table/steel, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/command) -"bAz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"bAB" = ( -/obj/structure/table/reinforced, -/obj/item/device/megaphone, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/standard_operating_procedure, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hop) -"bAC" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/substation/command) -"bAK" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"bAP" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/station/bridge) -"bAQ" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/station/bridge) -"bAS" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/maintenance/station/bridge) "bBo" = ( /obj/machinery/firealarm{ dir = 4; @@ -19648,178 +21665,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"bBr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - name = "Private Restroom"; - req_access = newlist(); - req_one_access = newlist() - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/captain) -"bBw" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - 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 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bBz" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"bBH" = ( -/obj/structure/cable/green{ - 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/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - id_tag = "captaindoor"; - name = "Colony Director's Office"; - req_access = list(20) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/crew_quarters/captain) -"bBJ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"bBK" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) -"bBP" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/substation/command) -"bBY" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"bCb" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/maintenance/station/bridge) -"bCd" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 1; - name = "Command Substation"; - req_one_access = list(11,24,47) - }, -/turf/simulated/floor, -/area/maintenance/substation/command) "bCg" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -19827,17 +21672,6 @@ /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"bCh" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/turf/simulated/floor, -/area/maintenance/station/bridge) "bDr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -19848,136 +21682,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"bDv" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bDX" = ( -/obj/structure/bed/chair/comfy/brown, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/light_switch{ - dir = 2; - name = "light switch "; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bEa" = ( -/obj/structure/table/woodentable, -/obj/machinery/computer/skills, -/obj/item/device/perfect_tele{ - desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command. This one is the Colony Director's, and they are authorized to use it."; - name = "director's translocator" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bEe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bEC" = ( -/obj/machinery/disposal, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bEG" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"bEN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) -"bES" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Command Subgrid"; - name_tag = "Command Subgrid" - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor, -/area/maintenance/substation/command) "bEW" = ( /obj/structure/flora/pottedplant, /obj/machinery/newscaster{ @@ -19985,19 +21689,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"bFe" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - name = "Electrical Maintenance"; - req_access = list(19) - }, -/turf/simulated/floor, -/area/bridge_hallway) "bFf" = ( /obj/structure/flora/pottedplant, /obj/machinery/computer/guestpass{ @@ -20005,31 +21696,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"bFg" = ( -/obj/machinery/power/smes/buildable{ - charge = 0; - output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - Command" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor, -/area/maintenance/substation/command) -"bFp" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/simulated/wall, -/area/maintenance/station/bridge) "bFE" = ( /obj/machinery/alarm{ dir = 4; @@ -20053,89 +21719,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"bFN" = ( -/obj/machinery/papershredder, -/turf/simulated/floor/tiled/dark, -/area/bridge) -"bFP" = ( -/obj/item/weapon/bedsheet/captain, -/obj/structure/bed/padded, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bFQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/command{ - name = "Colony Director's Quarters"; - req_access = list(20) - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bFT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bFV" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Captain's Office" - }, -/obj/structure/cable/green, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bFW" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"bGf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) "bGo" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -20174,80 +21757,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/tether/station/dock_two) -"bGQ" = ( -/obj/machinery/light/small, -/obj/item/device/radio/intercom{ - dir = 2; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bGW" = ( -/obj/structure/closet/secure_closet/captains, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bHe" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/blue, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bHg" = ( -/obj/structure/flora/pottedplant, -/obj/machinery/button/remote/blast_door{ - id = "cap_office"; - name = "Security Shutters"; - pixel_x = 0; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bHi" = ( -/obj/structure/table/rack, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/clothing/suit/armor/captain, -/obj/item/clothing/head/helmet/space/capspace, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/weapon/card/id/gold/captain/spare, -/obj/machinery/door/window/brigdoor/westright{ - name = "Colony Director's Storage"; - req_access = list(20) - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) -"bHk" = ( -/obj/machinery/camera/network/command{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - dir = 2; - pixel_y = -24 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "bHt" = ( /obj/machinery/access_button{ command = "cycle_exterior"; @@ -20412,35 +21921,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"bHY" = ( -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/tether/station/dock_two) -"bIL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/bridge_hallway) "bJl" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -20460,47 +21940,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/tether/station/dock_two) -"bJJ" = ( -/obj/machinery/shieldwallgen, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/teleporter) -"bJQ" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall, -/area/crew_quarters/captain) -"bJT" = ( -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_access = list(17) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/steel_grid, -/area/teleporter) -"bJY" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/teleporter) "bKo" = ( /obj/machinery/light{ icon_state = "tube1"; @@ -20511,125 +21950,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_one) -"bLL" = ( -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"bLN" = ( -/obj/machinery/light_switch{ - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"bLV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/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 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"bMd" = ( -/obj/item/weapon/stool/padded, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"bMi" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"bML" = ( -/obj/machinery/hologram/holopad, -/obj/item/device/radio/beacon, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"bMN" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"bNK" = ( -/obj/structure/closet/crate, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"bNL" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"bNV" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled, -/area/teleporter) -"bNW" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/teleporter) "bNZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -20858,39 +22178,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"bPP" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "trade_shuttle_dock_airlock"; - name = "interior access button"; - pixel_x = -28; - pixel_y = -26; - req_access = list(13) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 - }, -/turf/simulated/floor/tiled, -/area/tether/station/dock_one) -"bPQ" = ( -/obj/structure/closet/emcloset, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/tether/station/dock_one) "bPS" = ( /obj/machinery/access_button{ command = "cycle_interior"; @@ -21034,20 +22321,6 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/station/dock_one) -"bQq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "trade_shuttle_dock_pump" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/station/dock_one) "bQt" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1; @@ -21168,13 +22441,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"bWH" = ( -/obj/structure/bookcase, -/obj/item/weapon/book/manual/command_guide, -/obj/item/weapon/book/manual/standard_operating_procedure, -/obj/item/weapon/book/manual/security_space_law, -/turf/simulated/floor/wood, -/area/crew_quarters/captain) "bXl" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -21256,15 +22522,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/foyer) -"bYf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/heads/chief) "bYg" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -21320,10 +22577,6 @@ }, /turf/simulated/floor/carpet, /area/engineering/foyer) -"bYE" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/carpet, -/area/engineering/foyer) "bYJ" = ( /obj/effect/floor_decal/techfloor{ dir = 10 @@ -21345,19 +22598,6 @@ "bYP" = ( /turf/simulated/wall, /area/vacant/vacant_restaurant_lower) -"bZc" = ( -/obj/structure/table/reinforced, -/obj/fiftyspawner/rods, -/obj/fiftyspawner/rods, -/obj/item/stack/material/glass/phoronrglass{ - amount = 20 - }, -/obj/fiftyspawner/wood, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/engineering/workshop) "bZd" = ( /obj/structure/window/reinforced, /turf/simulated/floor/tiled, @@ -21450,27 +22690,11 @@ /obj/structure/stairs/west, /turf/simulated/floor, /area/vacant/vacant_restaurant_lower) -"bZY" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/tiled, -/area/hallway/station/docks) "bZZ" = ( /obj/structure/bed/chair, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"cae" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/docks) "cah" = ( /obj/structure/girder, /turf/simulated/floor, @@ -21506,25 +22730,6 @@ /obj/machinery/power/thermoregulator, /turf/simulated/floor, /area/engineering/storage) -"ccx" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/bridge_hallway) "col" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -21562,29 +22767,9 @@ }, /turf/simulated/floor/plating, /area/tether/station/dock_two) -"eAf" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) -"gkC" = ( -/obj/machinery/status_display, -/turf/simulated/wall/r_wall, -/area/bridge) +"eIG" = ( +/turf/space, +/area/ninja_dojo/orbit) "hPi" = ( /obj/machinery/light/small, /turf/simulated/floor, @@ -21646,26 +22831,6 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/station/dock_one) -"lxQ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge_hallway) "lGA" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -21678,16 +22843,6 @@ }, /turf/simulated/floor/plating, /area/tether/station/dock_one) -"mbn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - name = "Library"; - sortType = "Library" - }, -/turf/simulated/floor/tiled, -/area/hallway/station/atrium) "mNU" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -21729,6 +22884,9 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_one) +"ssv" = ( +/turf/space, +/area/skipjack_station/orbit) "tKI" = ( /obj/machinery/access_button{ command = "cycle_exterior"; @@ -25989,7 +27147,7 @@ ahW avf aCB aEa -aFK +alp aHT aJk aJk @@ -26267,7 +27425,7 @@ aqf arz arl arl -arl +aCi abZ abZ atO @@ -26413,20 +27571,20 @@ arn ark aue aAR -auA +aCg aEb aFL atO aJm -aLr +alL aRb -aYE +aCc aQa aSa bft bhj aRb -bYf +aCd bYJ aRb bZv @@ -26569,7 +27727,7 @@ bfv bnw aXC bYh -baV +aso aRb bZv bZv @@ -26850,7 +28008,7 @@ aYJ baA bcn aTR -aVB +anR aRb aRb aRb @@ -26976,7 +28134,7 @@ apq adY ade atf -auX +afT asy axG aue @@ -27113,7 +28271,7 @@ aac aac aac abZ -aoo +arO apu aqj aqM @@ -27147,9 +28305,9 @@ bYP bYj bYj awu -bZY +aCv btt -cae +axr aCG byE aDE @@ -27159,7 +28317,7 @@ bFE aFV bHy aHa -aHs +azQ aDE aDE aDE @@ -27167,10 +28325,10 @@ bFE aFV bPs aIU -bPP +aBm bPY bQj -bQq +aBQ bQz aJr aJr @@ -27264,7 +28422,7 @@ avd asA bkx aqM -aBm +akR auA auA bZt @@ -27451,7 +28609,7 @@ bHz aDG uWS aDG -bPQ +aCH aFU aDH aDH @@ -27541,14 +28699,14 @@ xMk hPi acz apv -aqk +aer aqM arr avg aen axO aqM -aBq +aCf aJw aJw cak @@ -27688,7 +28846,7 @@ acS aru avh aen -bZc +agd acS aqN aCM @@ -28270,7 +29428,7 @@ alI amY awm aXX -aZn +aCb alv bYl adp @@ -28283,7 +29441,7 @@ bYj bYj bYj awu -bsl +awH btu oEH awu @@ -28541,7 +29699,7 @@ arF asm awB axY -aen +aBq awl aCQ aen @@ -28560,7 +29718,7 @@ agR adT ajK awp -awP +aCp axu bkm ayw @@ -28689,7 +29847,7 @@ acS aqN aqN acS -aUp +alu aLU aXZ aZr @@ -28710,7 +29868,7 @@ bou azN aws aBb -btF +aCY aBZ aCJ aaa @@ -28957,7 +30115,7 @@ aiM aiM acz anl -anR +adA ano apb apJ @@ -28993,7 +30151,7 @@ ayy aws bQa aws -aAV +aCz btu aBZ awu @@ -29128,7 +30286,7 @@ agV aee bdu aws -bgN +auP biC axR ayy @@ -29227,14 +30385,14 @@ acz acR adu abx -abN +abl acq adq adU aeD aeV afm -afX +aCj aeV ahM aiG @@ -29251,7 +30409,7 @@ atF avx awO ayb -azf +ahc aBA aCV aEA @@ -29268,7 +30426,7 @@ bXJ aYb agU acp -bdr +bdu aws aws aws @@ -29415,11 +30573,11 @@ awt awU axz bkp -bne +auS azh azO awt -aAX +aAV btu aBZ aCJ @@ -29519,7 +30677,7 @@ aJs aiT afp akm -akR +akS alB aLh ajG @@ -29544,7 +30702,7 @@ aBC aAW aMl aoJ -beP +ams aQX bYt bgF @@ -29656,7 +30814,7 @@ aac arM acO adF -adZ +abN aJs aiT ajD @@ -29686,17 +30844,17 @@ aBX aAW aBX aoJ -bYE +aCa aRc aSL aoJ aoJ aoJ -agY +awP acp bdK awt -brv +aCS biK bks ayB @@ -29985,7 +31143,7 @@ axC bky ayD azj -azQ +awb aAm aBh btS @@ -30007,7 +31165,7 @@ aDJ aGa alV bPN -aJa +aCO aFZ bzq bzq @@ -30102,7 +31260,7 @@ asp atJ ajF apQ -aua +agH auz aAW aKU @@ -30131,7 +31289,7 @@ bha bqf bha btO -bha +auT bxe aDn aDK @@ -30229,13 +31387,13 @@ aJs ccl afs ako -akT +aoo alH amq ajI akp aJs -ams +adZ anC apg apQ @@ -30273,7 +31431,7 @@ azR aAo aBi aBi -aCc +auJ aCN byP aDL @@ -30281,15 +31439,15 @@ bBo bDr bFH aDK -bHY +azf aDL -aHx +aCA aDL aIc bDr bPc bPl -aIS +aDL bPO bPS bQd @@ -30383,7 +31541,7 @@ apg apX aqH ass -arO +aCh avL awT auc @@ -30414,8 +31572,8 @@ awu awu awu awu -awu -awu +avG +avX aCK aCK aCK @@ -30556,26 +31714,26 @@ ael bpz bqj awu -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa +avH +awc +awF +aya +aya +aya +azA +aya +aya +ayA +ayM +aya +ayZ +azv +aCl +azP +azY +aAg +aAY +ahW aaa aaa aaa @@ -30686,7 +31844,7 @@ asc aUF atq afC -ahc +arh acp bdT aaT @@ -30698,26 +31856,26 @@ azl azl aAq awu -aac -aac -aCO -aCO -aCO -aCO -aCO -aCO -aCO -aCO -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa +avJ +awd +axa +ayc +ayo +ayc +ayu +ayc +ayo +ayL +ayO +ayP +azm +azv +azC +azP +azP +aAh +aAY +ahW aaa aaa aaa @@ -30831,35 +31989,35 @@ afC ahG aip bee -awy -awy -awy -awy -gkC -awy -awy -awy -awy -awy -awy -aCO -aDp -bzI -aCO -aEP -bFP -aGc -aCO -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa +afI +afI +afI +afI +afI +afI +afI +afI +afI +avK +awf +acP +acP +acP +acP +acP +ayf +ayf +ayf +ayf +ayQ +azn +azw +azE +azS +azZ +aAi +aAY +ahW aaa aaa aaa @@ -30972,36 +32130,36 @@ afE afn ahF aio -bed -awz -axc -axc -afv -aZV -azm -bpD -bql -aBj -aBJ -bvN -aCO -aDq -aDN -bBr -aEQ -aFw -bGQ -aCO -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa +afW +agj +ahr +ahU +aCk +ahU +ahU +atw +auO +afI +avK +awq +acP +awI +axj +axN +acP +ayg +ayI +aBs +ayf +aAc +azo +azv +azF +azP +aAa +aAj +aAY +ahW aaa aaa aaa @@ -31114,37 +32272,37 @@ afJ age ahH aiq -beh -awz -axc -axd -afw -ayK -azn -azU -bqs -aBK -aBK -bvW -aCO -aDr -aDO -aCO -bDX -aFx -bGW -aCO -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa +ago +agk +ahC +aic +aig +aig +aic +atC +auU +agk +avK +awi +awv +awJ +axn +axS +acP +ayh +ayJ +aBt +aBM +ayS +azp +azv +azG +azP +aAb +aAl +aAY +ahW +ahW aaa aaa aaa @@ -31256,37 +32414,37 @@ afF age acp acp -beg -awz -axc -axc -afw -bcE -azo -azV -bqo +atM +agk +ahC +aie +aiv +asZ +atm +atD +avn +afI +avM +awj +acP +awK +axo +axT +acP +ayj aBk -azU -bvS -aCO -aCO -aCO -aCO -aCO -bFQ -aCO -aCO -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa -aaa +aBu +ayf +ayT +azp +azx +azx +azx +azx +azx +azz +azz +ahW aaa aaa aaa @@ -31343,10 +32501,10 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf aaa aaa aaa @@ -31398,37 +32556,37 @@ afN agg acr acp -beg -awz -axc -axc -afw -bkC -azp -azU -bqA -bsH -aBL -bwc -bJQ -byW -bnW -bnY -bEe -bFT -bWH -aCO -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa +aCq +afI +ahE +aie +aiA +ate +atn +atE +avt +avE +avN +awo +acP +acP +acP +acP +acP +ayf +ayf +ayf +ayf +ayU +azq +azx +azH +azT +aAX +aAK +aBc +aBj +ahW aaa aaa aaa @@ -31475,21 +32633,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -31540,37 +32698,37 @@ afC aYt ahI air -bei -awz -axc -axc -afw -ayN -azn +aAw +afI +ahP +aie +asC +aiA +atn +atL +avu +afI +avO +awq +aww +awL +axp +axX +aww +ayk +aBn +aBv +ayt +ayV +azr +azy +azK azU -bqx -azU -azU -bvY -aCO -byV -aDQ -aEr -bEa -aDu -bHe -aCO -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa +aAd +aAM +aBe +aBj +ahW aaa aaa aaa @@ -31617,21 +32775,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -31677,42 +32835,42 @@ aeU aeU afz afA -afD +anf aWn agh acp acp -beg -awz -axc -axc -afw -blS -azq -azU -bqA -azU -azU -azU -bxJ -aDu -aDR -aEs -aDu -aDu -aGi -aCO -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aaa +atM +agk +ahC +aie +aiA +ati +atr +atV +avy +agk +avK +awi +awG +axf +axF +ayd +aww +ayn +aBo +aBI +aBN +ayW +azs +azx +azL +azV +aAe +aAN +aBe +aBj +ahW aaa aaa aaa @@ -31758,22 +32916,22 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -31813,7 +32971,7 @@ alT aFe alT alT -aer +asY acm acm acm @@ -31824,37 +32982,37 @@ acm acm acp acp -beg -awz -axc -axc -afw -bkE -azr +atM +agk +ahC +aic +asE +asE +aic +aux +avA +afI +avT +auE +aww +axg +axM +aye +aww +ayr +aBr +aBJ +ayt +ayX +azt +azx +aCm azW -bqD -bvk -azU -bcs -bxE -aDu -aDu -aEt -aDu -aDu -bHg -aCO -aGK -aGK -aGK -aGK -aGK -aac -aac -aac -aac -aac -aaa +aAf +aAU +aBe +aBj +ahW aaa aaa aaa @@ -31900,21 +33058,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -31951,7 +33109,7 @@ ack afC azX agw -aDV +alh aFh aHb aIs @@ -31966,37 +33124,37 @@ adH adH bay acp -beg -awz -axc -axc -afw -ayQ -azn -azU -bqA -azU -azU -bFN -bxL -bza -aDu -aEu -aDu -aDu -bHk -aCO -aHf -aHf -aHM -aId -aGK -aac -aac -aac -aac -aac -aaa +atM +ahi +ahQ +aif +aif +atl +atv +auC +avC +afI +avU +ave +aww +aww +aww +aww +aww +ayt +ayt +ayt +aBO +ayY +azu +azz +azz +azz +azz +azz +azz +azz +ahW aaa aaa aaa @@ -32041,22 +33199,22 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -32108,37 +33266,37 @@ acm acm ahJ ais -bed -awz -axd -axc -afx -bnB -boH -bpJ -bqF -bwx -aBM -bDv -aCO -byY -bzY -bBw -bEC -bFV -bHi -aCO -bJJ -aHf -aHN -bNK -aGK -aGK -aac -aac -aac -aac -aaa +aAx +afI +afI +afI +afI +afI +afI +afI +afI +afI +aAn +avR +avV +avW +ail +aBL +ail +ail +ail +ail +ail +ail +aBL +auM +ail +aBF +auD +aat +aat +aat +ahW aaa aaa aaa @@ -32183,22 +33341,22 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -32250,36 +33408,36 @@ acy acy acy ahH -bek -awA -awE -awE -awy -gkC -boL -awy -bqR -awy -bvb -bwl -aCO -bzc -bAk -bBH -aCO -aCO -aCO -aCO -aGK -bLN -aHO -bNL -ame -aGK -aac -aac -aac -aac +aAy +acQ +ahp +aud +auf +aug +auq +auq +auq +auq +auu +avk +auD +awr +axs +ahj +ahj +ahj +ahj +ahj +ahj +ahj +ahj +ahj +ail +aBK +auD +aat +aat +aat aaa aaa aaa @@ -32325,22 +33483,22 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -32375,7 +33533,7 @@ ack ack ack aaT -agd +aih acm acy acy @@ -32391,37 +33549,37 @@ adl acC adm acy -acp -bej -bfW -axe -lxQ -aye -ayS -axF -azY -bqP -bnv -aBO -bwh -aCS -axF -azY -bBz -aEV -aFB -eAf -ccx -aGK -bLL -aHP -bNL -aIu -aGK -aac -aac -aac -aac +aCx +atU +agl +ahL +ahL +ahL +aui +aBK +adj +adj +adj +adj +auQ +avb +awx +awA +ahj +aqg +aAs +aAz +avr +awW +aAt +awW +ahj +ail +aBL +auD +aat +aat +aat aaa aaa aaa @@ -32467,22 +33625,22 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -32533,37 +33691,37 @@ adl adE amv acy -acp -bep -awC -axf -bjt -ayf -ayT -boM -ayT -brd -bsN -bsN -bwn -bxY -bsN -bsN -bBK -bEN -bGf -bGf -bIL -bJT -bLV -bML -bNV -aIu -aGK -aac -aac -aac -aac +acm +aAA +acQ +aAp +ail +ail +auj +aBL +adj +ait +aun +auL +avp +avb +awE +axq +awN +axh +ata +avi +ayl +awX +awW +awW +axm +ail +aAr +auD +aat +aat +aat aaa aaa aaa @@ -32609,22 +33767,22 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -32659,7 +33817,7 @@ ack ack ack aaT -afg +aAL acp acy acG @@ -32675,37 +33833,37 @@ adl amu amv acy -aCx -bem -bfY -axg -bjo -bll -ayU -afK -azZ -bqU -bsM -bvd -aCn -aCU -axg -bAr -bBJ -bEG -bFW -ayU -aGJ -aHi -aHB -aHR -aIh -aIu -aGK -aac -aac -aac -aac +acm +bdH +acQ +aBG +aix +aBx +aup +aut +ain +aiu +auK +auN +auR +avb +aBS +axy +ahj +ayz +auH +auF +auF +awY +axl +axl +ahj +aBL +ail +auD +aat +aat +aat aaa aaa aaa @@ -32752,21 +33910,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -32818,36 +33976,36 @@ amr amw acy acm -bev -awE -awE -awE -awI -awI -agm -agn -brj -awI -awI -bwq -bya -aDy -awE -awE -bFe -awE -aGl -awE -aGK -bMi -aHS -aIh -aIv -aGK -aac -aac -aac -aac +aAF +acV +acV +acV +acV +acV +acV +acV +acV +acV +acV +acV +acV +awe +aBP +ahj +auG +auI +avl +awV +axk +axl +axl +ahj +aBz +ail +auD +aat +aat +aat aaa aaa aaa @@ -32894,22 +34052,22 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -32960,36 +34118,36 @@ adl adl acy bbT -ber -awF -bhr -agj -blr -bnL -boN -bpM -brf -aBr -awI -aCp -aCW -aDz -bAv -bBP -bES -aDz -awE -aGK -bJY -bMd -bMN -bNW -aGK -aGK -aac -aac -aac -aac +aAB +afc +afH +agm +agm +agm +agm +aBY +agr +ags +agx +ayq +acV +avY +axy +ahN +ahN +ahN +ahN +ahN +ahN +ahN +ahN +ahN +ahN +asV +ahN +ahN +aat +aat aaa aaa aaa @@ -33037,21 +34195,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -33101,37 +34259,37 @@ acy adc adc acT -acp -beB -awG -bht -bjC -blx -ayW -ayW -ayW -bro -bsO -awI -aCq -byf -aDz -bAC -aEB -bFg -aDz -aac -aGK -aHk -aHE -aHU -aIj -aGK -aac -aac -aac -aac -aac +aCX +aCr +acV +aAv +agn +agn +agn +agn +ame +agn +agE +agy +agK +ahl +avY +aAE +ahN +aht +ayK +awy +aia +aiB +aia +aiH +alm +asH +aia +aia +atz +aat +aat aaa aaa aaa @@ -33179,21 +34337,21 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf +aaf aaa aaa aaa @@ -33244,36 +34402,36 @@ acm acm acm acp -bez -awG -axj -agk -ayj -ayX -azy -bpQ -ayX -aBt -awI -afV -aCY -aDz -bAz -bBY -aFb -aDz -aac -aGK -aGK -aGK -aGK -aGK -aGK -aac -aac -aac -aac -aac +acc +aiw +asR +afd +afd +afd +agA +agB +agC +agD +ahg +agM +ahm +avY +axy +ahN +aht +ayR +awy +aia +aia +aia +aia +aln +awz +awz +aln +atz +aat +aat aaa aaa aaa @@ -33328,13 +34486,13 @@ aaa aaa aaa aaa +aaf +aaf aaa aaa aaa -aaa -aaa -aaa -aaa +aaf +aaf aaa aaa aaa @@ -33386,36 +34544,36 @@ acm acm acm acp -bez -awG -axj -agk -blF -ayX -azz -aAd -aAG -aBu -awI -aCs -aCZ -aDz -bAK -bCd -aDz -aDz -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac +aAD +acV +acV +acV +acV +acV +acV +acV +afK +agE +avQ +agS +ahm +axK +awC +axc +axi +axJ +axV +axV +ayE +axV +ayF +awS +asB +asW +avv +atz +aat +aat aaa aaa aaa @@ -33528,36 +34686,36 @@ acY acY acT acp -beE -awG -axj -agk -ayl -ayX -azA -bAB -ayX -bsP -awI -aCt -aCt -aDA -bxa -bCb -bFp -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac +acN +ahm +adr +aeo +aep +aeJ +aeT +acV +afR +agE +azc +ahe +ahm +avY +aCW +ahN +aiE +axI +aia +aia +awQ +aym +ayG +axd +axe +asX +avv +atz +aat +aat aaa aaa aaa @@ -33670,36 +34828,36 @@ uiN adl acy acp -beH -awH -bmM -agl -aym -bnZ -boU -aAf -brD -bsR -awI -aCu -aCu -aDA -bAQ -aEF -awK -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac +acN +ahm +adJ +aej +aeu +aej +aeY +afh +afl +ahh +azd +azg +ahn +avY +axy +ahN +aia +axI +aia +aia +auV +aia +ayH +aln +aub +aub +aln +atz +aat +aat aaa aaa aaa @@ -33784,7 +34942,7 @@ aac adO ajv aje -akJ +afD ajm ajM adO @@ -33812,35 +34970,35 @@ adk amx acy acp -beF -awI -awI -awI -awI -awI -awI -awI -awI -awI -awI -awE -awE -aDA -bAP -aEG -awK -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac -aac +aAC +ahm +adB +aem +aej +aeK +aeZ +afv +afw +aom +asM +axL +afV +aqx +aAu +ahN +aia +axI +aia +aia +atR +aia +ayv +aAJ +ayN +aza +aBW +atz +aat aat aaa aaa @@ -33954,34 +35112,34 @@ adE amv acy acp -beK -awJ -axk -axk -ayn -ayZ -axk -axk -axk -ayZ -ayZ -ayZ -axk -axk -bAS -bCh -awK -aac -aac -aac -aqd -aqd -aqd -aqd -aqd -aqd -aqd -aac +aAG +ahm +aed +aej +aev +aej +afa +afx +awg +agt +agG +ahk +acV +awh +asF +ahN +aiI +aBT +atc +atP +asG +asG +asG +asG +asG +asG +asG +ahN aat aat aaa @@ -34070,14 +35228,14 @@ ahv ajj aey ajq -alh +ajQ adO -alo +ajT ajV aka adO ahw -alL +afX afC agv acp @@ -34096,27 +35254,27 @@ amu amv acy acp -aqg -awK -axl -axM -bmc -aza -awK -awK -awK -awK -awK -awK -awK -awK -awK -awK -awK -amU -amU -aqd -aqd +aAI +ahm +adN +ahu +aeH +aeN +auX +acV +acV +acV +acV +acV +acV +axs +axs +alN +alN +alN +alN +asG +asG aqW ari ars @@ -34238,14 +35396,14 @@ acZ amH acy acp -aqx -awK -awK -awK -awK -awK -awK -amU +aAI +acV +acV +acV +acV +acV +acV +alN ana ann anm @@ -34379,8 +35537,8 @@ acy acy acy acy -mbn -ago +ahH +azb alM amL amP @@ -34505,7 +35663,7 @@ akP alU akQ afC -aAL +aCt aCx bNZ adH @@ -34530,7 +35688,7 @@ acm amQ aum amV -anf +anp ans anI anS @@ -34650,24 +35808,24 @@ afC aAH aCw aDZ -aFz +aCw aHz aIT aKQ aML -aFz aCw +aCu aCw aTA aCw aWJ -aFz +aCw baI bch beS bgf bhH -bjX +aCs bmv amS amT @@ -34689,7 +35847,7 @@ aqY aro arG arY -aso +arP ast aat aat @@ -34926,7 +36084,7 @@ alj alj akt akC -alp +afb adO aac aac @@ -35062,7 +36220,7 @@ aac adO ajx ajX -ajx +aCo alC aey all @@ -35209,7 +36367,7 @@ adO adP adb akc -adb +asT adP adP adP @@ -35232,13 +36390,13 @@ atx atx auo auZ -awa +aCU asI bhL aus -age +asY acm -bph +bpi aaT anm anA @@ -35374,7 +36532,7 @@ aty aty baQ ava -awb +aua asI bid aus @@ -35511,7 +36669,7 @@ amg amg amg ash -asN +awa asN asN asI @@ -35778,7 +36936,7 @@ aiL aiS akz akG -alu +akJ adP adP aac @@ -36222,7 +37380,7 @@ amg amg asi aVx -aXy +aqk alA aus aus @@ -36233,8 +37391,8 @@ aus aav aaJ aaW +aCn abd -abl abd abd abd @@ -36353,14 +37511,14 @@ aac aac ash alA -amN +alo aFI alA alA alA alA aOO -arh +amN alA alA alA @@ -36608,10 +37766,10 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf +aaa +aaa +aaa +aaa aaa aaa aaa @@ -36740,21 +37898,21 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -36882,21 +38040,21 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -37023,22 +38181,22 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -37165,21 +38323,21 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -37306,22 +38464,22 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -37448,22 +38606,22 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -37590,22 +38748,22 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -37732,22 +38890,6 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf aaa aaa aaa @@ -37763,6 +38905,22 @@ aaa aaa aaa aaa +ssv +ssv +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -37874,27 +39032,27 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf aaa aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +aaa +aaa +aaa aaa aaa aaa @@ -38017,25 +39175,25 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +aaa +aaa aaa aaa aaa @@ -38159,26 +39317,26 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +aaa +aaa +aaa aaa aaa aaa @@ -38302,24 +39460,24 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +aaa +aaa aaa aaa aaa @@ -38444,21 +39602,6 @@ aaa aaa aaa aaa -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf -aaf aaa aaa aaa @@ -38466,6 +39609,21 @@ aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +aaa +aaa aaa aaa aaa @@ -38593,23 +39751,19 @@ aaa aaa aaa aaa -aaf -aaf -aaa -aaa -aaa -aaf -aaf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -38633,6 +39787,10 @@ aaa aaa aaa aaa +eIG +eIG +eIG +eIG aaa aaa aaa @@ -38733,6 +39891,22 @@ aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -38754,28 +39928,12 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +eIG +eIG +eIG +eIG +eIG +eIG aaa aaa aaa @@ -38873,6 +40031,25 @@ aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -38893,32 +40070,13 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +eIG +eIG +eIG +eIG +eIG +eIG +eIG aaa aaa aaa @@ -39016,6 +40174,24 @@ aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -39033,35 +40209,17 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG aaa aaa aaa @@ -39158,6 +40316,24 @@ aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -39177,33 +40353,15 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG aaa aaa aaa @@ -39300,6 +40458,24 @@ aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -39319,33 +40495,15 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG aaa aaa aaa @@ -39442,6 +40600,24 @@ aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -39461,33 +40637,15 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG aaa aaa aaa @@ -39584,6 +40742,24 @@ aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -39601,35 +40777,17 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG +eIG aaa aaa aaa @@ -39725,6 +40883,25 @@ aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -39745,32 +40922,13 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +eIG +eIG +eIG +eIG +eIG +eIG +eIG aaa aaa aaa @@ -39869,6 +41027,22 @@ aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -39890,28 +41064,12 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +eIG +eIG +eIG +eIG +eIG +eIG aaa aaa aaa @@ -40013,6 +41171,19 @@ aaa aaa aaa aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -40036,23 +41207,10 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +eIG +eIG +eIG +eIG aaa aaa aaa @@ -40155,19 +41313,19 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -40293,19 +41451,19 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -40435,19 +41593,19 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -40577,19 +41735,19 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -40719,19 +41877,19 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv +ssv aaa aaa aaa @@ -40871,8 +42029,8 @@ aaa aaa aaa aaa -aaa -aaa +ssv +ssv aaa aaa aaa diff --git a/maps/tether/tether-06-station2.dmm b/maps/tether/tether-06-station2.dmm index 3aa1c1477a..56d54fdc72 100644 --- a/maps/tether/tether-06-station2.dmm +++ b/maps/tether/tether-06-station2.dmm @@ -322,17 +322,14 @@ /turf/simulated/floor/tiled, /area/security/security_cell_hallway) "aI" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/structure/table/steel, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/toy/stickhorse, -/turf/simulated/floor/tiled/dark, -/area/security/recstorage) +/turf/simulated/floor/tiled, +/area/security/security_cell_hallway) "aJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -558,6 +555,10 @@ pixel_x = -28; req_access = list(1,2) }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/security/security_cell_hallway) "aZ" = ( @@ -1291,6 +1292,7 @@ icon_state = "bordercolor"; dir = 9 }, +/obj/machinery/camera/network/exploration, /turf/simulated/floor/tiled, /area/tether/exploration/crew) "bW" = ( @@ -1771,21 +1773,31 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled, /area/security/security_cell_hallway) "cD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 5 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, -/area/security/security_cell_hallway) +/area/security/brig) "cE" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -1836,26 +1848,25 @@ /turf/simulated/floor/tiled, /area/tether/exploration/crew) "cG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 8 }, -/obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 +/obj/effect/floor_decal/corner/red/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 }, -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start{ - name = "Pilot" +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 22 }, -/obj/machinery/camera/network/exploration, /turf/simulated/floor/tiled, -/area/tether/exploration/crew) +/area/security/brig/visitation) "cH" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -1984,6 +1995,10 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/dark, /area/security/brig) "cR" = ( @@ -2234,26 +2249,25 @@ /turf/simulated/floor/plating, /area/engineering/shaft) "di" = ( -/obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 8 +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, -/obj/effect/floor_decal/corner/red/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 8 +/obj/effect/floor_decal/corner/purple/border{ + icon_state = "bordercolor"; + dir = 1 }, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 9 +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - pixel_y = 22 +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Pilot" }, -/obj/machinery/camera/network/security, /turf/simulated/floor/tiled, -/area/security/brig/visitation) +/area/tether/exploration/crew) "dj" = ( /turf/simulated/wall, /area/security/brig/visitation) @@ -2894,7 +2908,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/maintenance/command, +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor, /area/maintenance/evahallway) "ei" = ( @@ -3289,6 +3303,7 @@ dir = 5 }, /obj/machinery/vending/cigarette, +/obj/machinery/camera/network/exploration, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "eL" = ( @@ -3310,6 +3325,10 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/tether/exploration/staircase) "eM" = ( @@ -3405,18 +3424,8 @@ /turf/simulated/floor/tiled, /area/security/brig) "eT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) +/turf/simulated/floor, +/area/maintenance/station/micro) "eU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -3525,27 +3534,17 @@ /turf/simulated/floor, /area/security/interrogation) "fc" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/effect/floor_decal/borderfloorblack{ dir = 4 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, +/obj/structure/table/steel, +/obj/item/toy/stickhorse, /obj/machinery/camera/network/security{ icon_state = "camera"; dir = 8 }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) +/turf/simulated/floor/tiled/dark, +/area/security/recstorage) "fd" = ( /turf/simulated/wall/r_wall, /area/security/interrogation) @@ -3586,14 +3585,23 @@ /turf/simulated/floor, /area/tether/exploration/staircase) "fh" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/camera/network/command{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/security_cell_hallway) "fi" = ( /obj/machinery/alarm{ dir = 4; @@ -3832,10 +3840,6 @@ /obj/machinery/cryopod{ dir = 4 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 4 - }, /turf/simulated/floor/tiled, /area/security/brig) "fE" = ( @@ -3913,15 +3917,31 @@ "fK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/bed/chair, +/obj/machinery/camera/network/interrogation, /turf/simulated/floor/tiled/dark, /area/security/interrogation) "fL" = ( -/obj/machinery/camera/network/security{ - icon_state = "camera"; +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/purple/border{ + icon_state = "bordercolor"; dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/tether/exploration/crew) "fM" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, @@ -4199,6 +4219,10 @@ /obj/effect/floor_decal/techfloor{ dir = 10 }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/bluegrid, /area/ai_upload) "gl" = ( @@ -4490,9 +4514,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/machinery/camera/network/exploration{ - dir = 8 - }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "gJ" = ( @@ -4667,13 +4688,6 @@ /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 - }, -/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/security_cell_hallway) "gX" = ( @@ -4719,6 +4733,10 @@ icon_state = "comfychair_preview"; dir = 1 }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) "ha" = ( @@ -4866,6 +4884,24 @@ /turf/simulated/floor, /area/maintenance/station/exploration) "hn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/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 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/security/security_cell_hallway) +"ho" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -4876,28 +4912,8 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/obj/machinery/camera/network/exploration{ - dir = 1 - }, /turf/simulated/floor/tiled, /area/tether/exploration/staircase) -"ho" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/reinforced, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/tech_supply, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) "hp" = ( /obj/structure/cable/green{ d1 = 1; @@ -5326,19 +5342,19 @@ /turf/simulated/floor/tiled/dark, /area/security/interrogation) "hZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 }, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/reinforced, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/engineering/locker_room) "ia" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -5387,6 +5403,7 @@ /obj/effect/floor_decal/techfloor{ dir = 9 }, +/obj/machinery/camera/network/command, /turf/simulated/floor/bluegrid, /area/ai_upload) "ie" = ( @@ -5456,6 +5473,7 @@ /obj/effect/floor_decal/techfloor{ dir = 5 }, +/obj/machinery/camera/network/command, /turf/simulated/floor/bluegrid, /area/ai_upload) "il" = ( @@ -5544,6 +5562,9 @@ /obj/structure/table/reinforced, /obj/random/powercell, /obj/random/tech_supply, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/engineering/locker_room) "ir" = ( @@ -5594,12 +5615,20 @@ /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) "iw" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/camera/network/engineering{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/interrogation) "ix" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5658,10 +5687,6 @@ /obj/machinery/alarm{ pixel_y = 22 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, /turf/simulated/floor, /area/security/riot_control) "iA" = ( @@ -5838,23 +5863,14 @@ /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "iK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 +/obj/effect/floor_decal/techfloor{ + dir = 6 }, -/obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/exploration, -/turf/simulated/floor/tiled, -/area/tether/exploration/hallway) +/turf/simulated/floor/bluegrid, +/area/ai_upload) "iL" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -5920,6 +5936,10 @@ dir = 4 }, /obj/structure/flora/pottedplant/crystal, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "iP" = ( @@ -6057,6 +6077,10 @@ dir = 5 }, /obj/machinery/vending/coffee, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "iZ" = ( @@ -6281,33 +6305,14 @@ /turf/simulated/floor, /area/maintenance/station/sec_lower) "jm" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - 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/machinery/camera/network/exploration{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/exploration/hallway) +/turf/simulated/floor/bluegrid, +/area/ai_upload) "jn" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, @@ -6408,6 +6413,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "jr" = ( @@ -6848,13 +6857,8 @@ /obj/effect/floor_decal/techfloor{ dir = 6 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/command{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled/techfloor, /area/ai_upload) "jV" = ( /turf/simulated/wall/r_wall, @@ -6908,17 +6912,29 @@ /turf/simulated/floor/bluegrid, /area/ai_upload) "kc" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/effect/floor_decal/corner/purple/border{ + icon_state = "bordercolor"; dir = 1 }, -/obj/machinery/camera/network/command{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) +/obj/structure/table/rack/shelf, +/obj/item/device/multitool/tether_buffered{ + pixel_y = 2 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = -4 + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled, +/area/tether/exploration/equipment) "kd" = ( /obj/structure/table/standard, /obj/item/weapon/aiModule/freeform, @@ -6963,9 +6979,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) "kh" = ( @@ -6986,6 +6999,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) "ki" = ( @@ -7098,6 +7114,10 @@ dir = 10 }, /obj/effect/floor_decal/techfloor/hole/right, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) "kw" = ( @@ -7114,15 +7134,18 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_upload) "kx" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor/hole, -/obj/machinery/camera/network/command{ +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) +/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 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "ky" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -7263,6 +7286,9 @@ pixel_y = 0 }, /obj/structure/cable/green, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, /turf/simulated/floor, /area/maintenance/substation/exploration) "kI" = ( @@ -7316,6 +7342,7 @@ pixel_x = 3; pixel_y = -3 }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/plating, /area/storage/tech) "kP" = ( @@ -7482,19 +7509,19 @@ /turf/simulated/floor/tiled, /area/hallway/station/starboard) "la" = ( -/obj/machinery/camera/network/tether, /obj/effect/floor_decal/borderfloor{ - dir = 1 + dir = 6 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 }, +/obj/structure/filingcabinet/filingcabinet, /turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/area/tether/exploration/pathfinder_office) "lb" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -7512,6 +7539,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, +/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, /area/hallway/station/starboard) "lc" = ( @@ -7670,6 +7698,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, /area/hallway/station/starboard) "ln" = ( @@ -8289,6 +8318,7 @@ pixel_x = 1; pixel_y = -1 }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled/dark, /area/storage/tech) "mf" = ( @@ -8544,6 +8574,7 @@ /area/tether/exploration/pathfinder_office) "mA" = ( /obj/machinery/message_server, +/obj/machinery/camera/network/command, /turf/simulated/floor/tiled/techfloor, /area/ai_server_room) "mB" = ( @@ -9029,22 +9060,8 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_upload_foyer) "ng" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/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, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) "nh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9240,25 +9257,16 @@ /turf/simulated/floor/tiled/dark, /area/storage/tech) "nu" = ( +/obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/tech) -"nv" = ( -/obj/machinery/requests_console{ - department = "Tech storage"; - pixel_x = -28; - pixel_y = 0 - }, -/obj/machinery/camera/network/engineering{ dir = 4 }, -/turf/simulated/floor, -/area/storage/tech) +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload_foyer) +"nv" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/ai_cyborg_station) "nw" = ( /obj/structure/table/rack{ dir = 8; @@ -9661,17 +9669,14 @@ /turf/simulated/floor, /area/storage/tech) "od" = ( -/obj/structure/table/steel, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 +/obj/effect/floor_decal/borderfloor{ + dir = 5 }, -/obj/item/stack/cable_coil, -/obj/machinery/camera/network/engineering{ - dir = 8 +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 }, -/turf/simulated/floor, -/area/storage/tech) +/turf/simulated/floor/tiled, +/area/engineering/foyer_mezzenine) "oe" = ( /obj/structure/railing{ dir = 1 @@ -9817,6 +9822,7 @@ /area/maintenance/station/exploration) "or" = ( /obj/machinery/computer/aifixer, +/obj/machinery/camera/network/command, /turf/simulated/floor/tiled/techfloor, /area/ai_cyborg_station) "os" = ( @@ -10068,6 +10074,9 @@ /obj/structure/table/steel, /obj/item/device/aicard, /obj/item/weapon/aiModule/reset, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, /turf/simulated/floor, /area/storage/tech) "oK" = ( @@ -10288,22 +10297,11 @@ /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) "pf" = ( -/obj/effect/floor_decal/borderfloor/corner{ +/obj/structure/catwalk, +/obj/machinery/camera/network/tether{ dir = 4 }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, +/turf/simulated/open, /area/engineering/foyer_mezzenine) "pg" = ( /obj/structure/railing{ @@ -10554,30 +10552,11 @@ /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) "pA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for exiting EVA."; - id = "evadoors"; - name = "EVA Door Control"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/camera/network/command{ - c_tag = "EVA - Fore" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) +/area/storage/tech) "pB" = ( /obj/structure/cable/green{ d1 = 1; @@ -10713,22 +10692,13 @@ /turf/simulated/floor/tiled/steel_grid, /area/engineering/foyer_mezzenine) "pN" = ( -/obj/machinery/camera/network/tether{ - dir = 1 +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_x = -28; + pixel_y = 0 }, -/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/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/turf/simulated/floor, +/area/storage/tech) "pO" = ( /turf/simulated/wall/r_wall, /area/hallway/station/port) @@ -11152,24 +11122,26 @@ /turf/simulated/floor/tiled, /area/hallway/station/port) "qx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/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/borderfloor/corner{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, /turf/simulated/floor/tiled, -/area/hallway/station/port) +/area/engineering/foyer_mezzenine) "qy" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -11337,20 +11309,14 @@ /turf/simulated/floor/tiled/dark, /area/tether/station/public_meeting_room) "qI" = ( -/obj/structure/table/woodentable, -/obj/structure/plushie/ian{ - dir = 8; - icon_state = "ianplushie"; - pixel_y = 6 +/obj/structure/table/steel, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/psych) +/obj/item/stack/cable_coil, +/turf/simulated/floor, +/area/storage/tech) "qJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -11359,6 +11325,10 @@ /area/medical/psych) "qK" = ( /obj/structure/flora/pottedplant/fern, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/wood, /area/medical/psych) "qL" = ( @@ -11542,6 +11512,10 @@ /obj/machinery/photocopier/faxmachine{ department = "Pathfinder's Office" }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/tether/exploration/pathfinder_office) "ra" = ( @@ -11725,15 +11699,27 @@ /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) "ro" = ( -/obj/structure/table/steel, -/obj/machinery/camera/network/medbay{ - dir = 8 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/techfloor{ - dir = 4 +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for exiting EVA."; + id = "evadoors"; + name = "EVA Door Control"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) "rp" = ( /obj/item/device/radio/intercom{ dir = 8; @@ -11826,6 +11812,10 @@ /obj/effect/floor_decal/techfloor{ dir = 4 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) "rA" = ( @@ -11943,6 +11933,10 @@ /obj/effect/floor_decal/industrial/warning{ dir = 4 }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) "rL" = ( @@ -12085,18 +12079,21 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8" + icon_state = "4-8"; + pixel_x = 0 }, -/obj/machinery/camera/network/tether{ +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/station/port) @@ -12149,16 +12146,18 @@ /turf/simulated/floor/tiled, /area/hallway/station/port) "rZ" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 }, -/obj/machinery/camera/network/medbay{ - dir = 1 +/obj/structure/table/reinforced, +/obj/fiftyspawner/rglass, +/obj/fiftyspawner/rods, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) +/turf/simulated/floor/tiled, +/area/ai_monitored/storage/eva) "sa" = ( /obj/structure/bed/chair{ dir = 1 @@ -12376,21 +12375,17 @@ /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) "sq" = ( -/obj/machinery/light{ - icon_state = "tube1"; +/obj/structure/table/woodentable, +/obj/structure/plushie/ian{ + dir = 8; + icon_state = "ianplushie"; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/structure/table/reinforced, -/obj/machinery/camera/network/security{ - dir = 8 - }, -/obj/fiftyspawner/rglass, -/obj/fiftyspawner/rods, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/ai_monitored/storage/eva) +/turf/simulated/floor/wood, +/area/medical/psych) "sr" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -12561,9 +12556,17 @@ /turf/simulated/floor/wood, /area/medical/psych) "sH" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood, -/area/medical/psych) +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery_hallway) "sI" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall, @@ -12653,26 +12656,10 @@ /turf/simulated/floor/tiled/white, /area/medical/morgue) "sN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/table/steel, +/obj/effect/floor_decal/techfloor{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) "sO" = ( @@ -12997,20 +12984,9 @@ /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) "tt" = ( -/obj/structure/sign/department/morgue{ - pixel_x = 32 - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/medical/psych) "tu" = ( /turf/simulated/wall, /area/medical/resleeving) @@ -13023,15 +12999,19 @@ /turf/simulated/floor/tiled/white, /area/medical/resleeving) "tw" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = list(64); - req_one_access = list(5) +/obj/structure/table/reinforced, +/obj/item/clothing/head/welding, +/obj/item/weapon/storage/belt/utility, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/camera/network/medbay{ - dir = 4 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) +/turf/simulated/floor/tiled, +/area/ai_monitored/storage/eva) "tx" = ( /obj/machinery/suit_cycler/security{ req_access = null @@ -13348,48 +13328,13 @@ /turf/simulated/floor/plating, /area/medical/resleeving) "tU" = ( -/obj/structure/closet{ - name = "spare clothes" - }, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/grey, -/obj/item/clothing/under/color/white, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/under/color/green, -/obj/item/clothing/under/color/lightpurple, -/obj/item/clothing/under/color/yellow, -/obj/item/clothing/under/color/lightred, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/white, -/obj/item/clothing/shoes/blue, -/obj/item/clothing/shoes/green, -/obj/item/clothing/shoes/purple, -/obj/item/clothing/shoes/yellow, -/obj/item/clothing/shoes/red, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, /obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, /obj/effect/floor_decal/corner/paleblue/border{ dir = 9 }, -/obj/machinery/computer/guestpass{ - pixel_y = 32 - }, +/obj/machinery/vending/loadout/uniform, /turf/simulated/floor/tiled/white, /area/medical/resleeving) "tV" = ( @@ -13438,23 +13383,25 @@ /turf/simulated/floor/tiled, /area/medical/resleeving) "tY" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/effect/floor_decal/techfloor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/white, -/area/medical/resleeving) +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) "tZ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -13798,19 +13745,10 @@ /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) "uG" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/head/welding, -/obj/item/weapon/storage/belt/utility, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, +/obj/effect/floor_decal/industrial/warning, /obj/machinery/camera/network/command{ - dir = 4 + icon_state = "camera"; + dir = 10 }, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) @@ -13912,6 +13850,7 @@ pixel_x = 0; pixel_y = -25 }, +/obj/machinery/camera/network/command, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) "uO" = ( @@ -14386,6 +14325,10 @@ dir = 4 }, /obj/effect/floor_decal/techfloor, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/dark, /area/medical/resleeving) "vB" = ( @@ -14498,12 +14441,14 @@ /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) "vJ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/command{ +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/ai_monitored/storage/eva) +/area/tether/station/stairs_two) "vK" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable/green, @@ -14553,23 +14498,31 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_cyborg_station) "vP" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/tether/station/stairs_two) -"vQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, /obj/machinery/camera/network/tether{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, /turf/simulated/floor/tiled, -/area/tether/station/stairs_two) +/area/hallway/station/port) +"vQ" = ( +/obj/structure/sign/department/morgue{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery_hallway) "vR" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 2; @@ -14832,8 +14785,14 @@ /turf/simulated/floor, /area/maintenance/evahallway) "wo" = ( -/turf/simulated/wall/r_wall, -/area/bridge/meeting_room) +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/station/micro) "wp" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -14885,25 +14844,12 @@ /turf/simulated/floor/tiled/white, /area/medical/biostorage) "wt" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 +/obj/structure/closet/secure_closet/chemical{ + req_access = list(64); + req_one_access = list(5) }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/biostorage) +/turf/simulated/floor/carpet/blue, +/area/medical/psych) "wu" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, @@ -14911,6 +14857,10 @@ "wv" = ( /obj/structure/table/woodentable, /obj/item/weapon/clipboard, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/carpet/blue, /area/medical/psych) "ww" = ( @@ -15024,6 +14974,11 @@ /obj/machinery/light, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/computer/guestpass{ + dir = 1; + icon_state = "guest"; + pixel_y = -28 + }, /turf/simulated/floor/tiled/white, /area/medical/resleeving) "wG" = ( @@ -15166,66 +15121,96 @@ /turf/simulated/floor, /area/maintenance/evahallway) "wQ" = ( -/obj/structure/table/woodentable, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/computer/guestpass{ - pixel_y = 32 +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/micro) "wR" = ( -/obj/structure/table/woodentable, -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/machinery/keycard_auth{ - pixel_y = 28 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/micro) "wS" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Command Conf Room" +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/obj/machinery/door/airlock/maintenance/command{ + req_access = list(19) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "secondary_bridge_blast"; + name = "Secondary Command Office Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/micro) "wT" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"wU" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"wV" = ( -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"wW" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"wX" = ( -/obj/structure/flora/pottedplant, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"wY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance/command{ + req_access = list(19) + }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "secondary_bridge_blast"; + name = "Secondary Command Office Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor, +/area/maintenance/station/micro) +"wU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 6 + }, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room) +"wV" = ( +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor, +/area/maintenance/station/micro) "wZ" = ( /obj/effect/landmark/start{ name = "Medical Doctor" @@ -15256,20 +15241,23 @@ /turf/simulated/wall, /area/medical/surgery) "xc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 }, /obj/effect/floor_decal/borderfloorwhite{ - dir = 8 + dir = 1 }, /obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, +/obj/machinery/camera/network/medbay, /turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) +/area/medical/resleeving) "xd" = ( /obj/structure/cable/green{ d1 = 1; @@ -15311,37 +15299,6 @@ "xg" = ( /turf/simulated/wall, /area/maintenance/station/medbay) -"xh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"xi" = ( -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/structure/table/standard, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/biostorage) "xj" = ( /obj/structure/window/reinforced, /turf/simulated/floor/tiled/white, @@ -15413,22 +15370,26 @@ /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) "xo" = ( -/obj/structure/table/standard, -/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/structure/bed/chair/wheelchair{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/camera/network/medbay, /obj/effect/floor_decal/borderfloorwhite{ - dir = 9 + dir = 4 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; dir = 9 }, /turf/simulated/floor/tiled/white, -/area/medical/surgery) +/area/medical/biostorage) "xp" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/surgery, @@ -15472,25 +15433,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/maintenance/evahallway) -"xs" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/cups, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"xt" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "xu" = ( /obj/structure/bed/chair, /obj/machinery/power/apc{ @@ -15636,22 +15578,21 @@ /turf/simulated/floor/tiled/white, /area/medical/surgery2) "xG" = ( -/obj/structure/table/standard, -/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/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/machinery/camera/network/medbay, /obj/effect/floor_decal/borderfloorwhite{ - dir = 5 + dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 }, /turf/simulated/floor/tiled/white, -/area/medical/surgery2) +/area/medical/surgery_hallway) "xH" = ( /obj/structure/cable/green{ d1 = 2; @@ -15675,46 +15616,18 @@ /obj/structure/railing, /turf/simulated/floor, /area/maintenance/station/medbay) -"xJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/command{ - req_access = list(19) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/bridge/meeting_room) "xK" = ( -/obj/structure/table/woodentable, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 }, -/obj/machinery/camera/network/command{ - c_tag = "Command Meeting Room West"; - dir = 4 +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"xL" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"xM" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"xN" = ( -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) +/turf/simulated/floor/tiled/white, +/area/medical/biostorage) "xO" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/syringegun, @@ -15862,6 +15775,10 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) "xZ" = ( @@ -15884,30 +15801,21 @@ /turf/simulated/floor/tiled/white, /area/medical/surgery) "ya" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/camera/network/exploration, -/obj/structure/table/rack/shelf, -/obj/item/device/multitool/tether_buffered{ +/obj/structure/table/standard, +/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/toolbox/mechanical{ - pixel_y = -4 +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 }, -/obj/item/weapon/hand_labeler, -/turf/simulated/floor/tiled, -/area/tether/exploration/equipment) +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) "yb" = ( /obj/effect/floor_decal/industrial/loading, /turf/simulated/floor/tiled/white, @@ -15990,149 +15898,22 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgery2) -"yh" = ( -/turf/simulated/open, -/area/bridge/meeting_room) -"yi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/cable/green{ - 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/bridge/meeting_room) -"ym" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"yn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"yo" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Command Secretary" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yp" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/manual/security_space_law, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yq" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/red, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yr" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Command Secretary" - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) "ys" = ( -/obj/machinery/camera/network/command{ - c_tag = "Command Meeting Room East"; - dir = 9 +/obj/structure/table/standard, +/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 }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) "yt" = ( /obj/machinery/light{ icon_state = "tube1"; @@ -16215,17 +15996,6 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/equipment) -"yB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance/command{ - req_access = list(19) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/station/micro) "yC" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, @@ -16322,102 +16092,6 @@ "yJ" = ( /turf/simulated/wall/r_wall, /area/maintenance/station/micro) -"yK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yN" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"yO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"yP" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yQ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yR" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/blue, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yS" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yT" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"yU" = ( -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "yV" = ( /obj/structure/table/standard, /obj/item/device/glasses_kit, @@ -16489,25 +16163,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgery) -"zb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance/command{ - req_access = list(19) - }, -/turf/simulated/floor, -/area/bridge/meeting_room) -"zc" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) "zd" = ( /obj/structure/cable/green{ d1 = 1; @@ -16736,6 +16391,10 @@ /obj/effect/floor_decal/corner/white/bordercorner2{ dir = 6 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/medical/surgery) "zu" = ( @@ -16753,6 +16412,10 @@ /obj/effect/floor_decal/corner/white/bordercorner2{ dir = 8 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/medical/surgery2) "zv" = ( @@ -16903,13 +16566,6 @@ }, /turf/simulated/floor/plating, /area/medical/patient_a) -"zG" = ( -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/small{ - pixel_y = 12 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "zH" = ( /obj/structure/table/standard, /obj/effect/floor_decal/borderfloorwhite{ @@ -17131,9 +16787,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -17178,9 +16831,6 @@ /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -17253,6 +16903,7 @@ dir = 8 }, /obj/machinery/vending/coffee, +/obj/machinery/camera/network/medbay, /turf/simulated/floor/wood, /area/medical/surgery_hallway) "Ah" = ( @@ -17345,7 +16996,6 @@ /area/medical/surgery_hallway) "Ap" = ( /obj/structure/table/glass, -/obj/machinery/camera/network/medbay, /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -17576,7 +17226,6 @@ /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, -/obj/machinery/camera/network/medbay, /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -18171,6 +17820,10 @@ /obj/item/weapon/storage/box/masks, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) "BB" = ( @@ -18925,15 +18578,16 @@ /area/medical/surgery_hallway) "CG" = ( /obj/structure/closet/emcloset, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, /obj/effect/floor_decal/corner/paleblue/border{ dir = 6 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) "CH" = ( @@ -19088,6 +18742,10 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2{ dir = 8 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/medical/ward) "CV" = ( @@ -19250,23 +18908,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Dh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/camera/network/exploration{ - dir = 1 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled, -/area/tether/exploration/pathfinder_office) "Di" = ( /obj/structure/cable/green{ d1 = 4; @@ -19287,11 +18928,22 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_server_room) "Dk" = ( -/obj/machinery/camera/network/command{ - dir = 1 +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_server_room) +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) "Dl" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -19299,15 +18951,12 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_server_room) "Dm" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/camera/network/engineering{ + dir = 8 }, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) +/turf/simulated/floor/tiled, +/area/engineering/locker_room) "Dn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -19356,13 +19005,6 @@ /turf/simulated/floor/tiled/white, /area/medical/ward) "Dq" = ( -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"Dr" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -19372,8 +19014,16 @@ icon_state = "intercom"; pixel_x = 32 }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload_foyer) +"Dr" = ( +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/medical/surgery_hallway) "Ds" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 @@ -19480,13 +19130,6 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_lower) -"Dz" = ( -/obj/machinery/recharge_station, -/obj/machinery/camera/network/command{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_cyborg_station) "DA" = ( /obj/structure/railing{ dir = 4 @@ -19792,28 +19435,17 @@ /turf/simulated/floor, /area/maintenance/station/exploration) "Ea" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera/network/tether, /obj/effect/floor_decal/borderfloor{ - dir = 1 + dir = 4 }, /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/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/camera/network/civilian{ + dir = 9 }, -/turf/simulated/floor/tiled, -/area/hallway/station/port) +/turf/simulated/floor/tiled/dark, +/area/tether/station/public_meeting_room) "Eb" = ( /obj/structure/ladder/up, /turf/simulated/floor, @@ -19892,30 +19524,14 @@ /turf/simulated/floor/tiled, /area/tether/exploration/crew) "Ei" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; +/obj/machinery/atmospherics/portables_connector{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/exploration{ - dir = 4 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/tether/exploration/crew) +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) "Ej" = ( /obj/effect/floor_decal/rust, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -20162,17 +19778,12 @@ /turf/simulated/floor, /area/maintenance/station/sec_lower) "EE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/machinery/camera/network/engineering{ +/obj/effect/floor_decal/corner/white/border{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/engineering/foyer_mezzenine) +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled/monotile, +/area/security/brig) "EF" = ( /obj/structure/cable/green{ d1 = 4; @@ -20266,23 +19877,16 @@ /turf/simulated/floor/tiled/white, /area/medical/exam_room) "EM" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/structure/cable/green, -/obj/machinery/camera/network/medbay{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/pink/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) +/turf/simulated/floor/tiled, +/area/security/brig) "EN" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin{ @@ -20313,25 +19917,24 @@ /turf/simulated/floor/tiled/white, /area/medical/ward) "EP" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/brig/visitation) "EQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -20457,6 +20060,10 @@ icon_state = "1-4" }, /obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/security/brig/visitation) "Fa" = ( @@ -20470,12 +20077,12 @@ /turf/simulated/floor/tiled/white, /area/medical/ward) "Fb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 }, -/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, -/area/security/brig) +/area/security/brig/visitation) "Fc" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, @@ -20798,24 +20405,25 @@ /turf/simulated/floor, /area/maintenance/station/sec_lower) "Fu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, /obj/effect/floor_decal/borderfloor{ - dir = 4 + 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{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/area/hallway/station/port) "Fv" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, @@ -20838,6 +20446,53 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/steel_dirty, /area/security/brig) +"Fx" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "sec_riot_control" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/security/brig) +"Fy" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/exploration/equipment) +"Fz" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "FA" = ( /obj/structure/railing{ dir = 8 @@ -20848,6 +20503,28 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_lower) +"FB" = ( +/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/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "FC" = ( /obj/structure/table/rack{ dir = 8; @@ -20857,6 +20534,15 @@ /obj/random/maintenance/engineering, /turf/simulated/floor, /area/maintenance/station/sec_lower) +"FD" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_two) "FI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -20962,13 +20648,6 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_lower) -"Hg" = ( -/obj/machinery/keycard_auth{ - pixel_y = -28 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "Hq" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -21788,29 +21467,6 @@ }, /turf/simulated/floor/tiled, /area/security/brig/visitation) -"PP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) "PR" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -22339,16 +21995,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/tether/station/public_meeting_room) -"Us" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "sec_riot_control" - }, -/turf/simulated/floor/plating, -/area/security/brig) "UE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -22570,17 +22216,6 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/sec_lower) -"Wk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/camera/network/security, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) "Ww" = ( /obj/effect/floor_decal/rust, /obj/structure/closet, @@ -22648,12 +22283,6 @@ }, /turf/simulated/floor/tiled/white, /area/maintenance/station/sec_lower) -"Xd" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "Xk" = ( /obj/structure/table/steel, /obj/item/device/flashlight/lamp{ @@ -22789,30 +22418,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"XX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"Yc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/station/public_meeting_room) "Yd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -28385,7 +27990,7 @@ aP lv ej mE -nu +pA nY aP pd @@ -28659,7 +28264,7 @@ bW fX gs gS -ho +hZ hL iq iZ @@ -28669,7 +28274,7 @@ kK lx mg mG -nv +pN nZ oa kJ @@ -29217,12 +28822,12 @@ ch ch af RE -XX +EP PM an EZ Ix -Dq +BV dx fX gw @@ -29522,7 +29127,7 @@ lA ml mK nz -od +qI oL kJ pJ @@ -29642,7 +29247,7 @@ ax Za Fq af -di +cG do dt af @@ -29786,7 +29391,7 @@ bj af aq cp -BV +Fb af bN ep @@ -29797,7 +29402,7 @@ gw gw gw hP -iw +Dm jb jF fX @@ -29805,7 +29410,7 @@ ac ac kf mM -mO +pf oe oM oM @@ -30067,7 +29672,7 @@ ah aA MC HH -PP +cD Qy cr Lx @@ -30078,7 +29683,7 @@ eS fD Pm aS -Us +Fx Op hQ iu @@ -30103,7 +29708,7 @@ sw sw uQ vp -vP +FD sw ac ac @@ -30347,7 +29952,7 @@ at UO XH aS -ak +EE aB ak bm @@ -30380,20 +29985,20 @@ oM pK qp re -rP +vP sw te te te te vr -vQ +vJ sw uu vC wl wM -xi +xK xO vT aP @@ -30502,7 +30107,7 @@ bw bD bF ZH -Fb +EM Rq cs cu @@ -30930,7 +30535,7 @@ aS Ld Ui aS -Wk +gW Eu dR aJ @@ -31223,16 +30828,16 @@ Yq TY TY kj -kf -EE +hQ +od nD oj oN -pf +qx pM qt rj -rW +rV KI qH rp @@ -31243,7 +30848,7 @@ Yf vT uA vU -wt +xo xa xk xS @@ -31368,10 +30973,10 @@ KJ kj kj nE -hr -hr -hr -hr +kj +kj +kj +kj qu rk rX @@ -31498,7 +31103,7 @@ aS bq fZ aS -gW +hn ht hV hV @@ -31778,7 +31383,7 @@ QH ds dT Vm -fc +fh fI ga cq @@ -31798,14 +31403,14 @@ ph mS DO hr -qx +Fu Vw Xq TO Do VK Gf -Yc +Ea LL po po @@ -31950,7 +31555,7 @@ KI KI KI po -tw +wt uU vX wv @@ -32082,11 +31687,11 @@ fq jj pj kj -Ea +rW rk fM pn -qI +sq rq rA sh @@ -32097,7 +31702,7 @@ tK tK ww xb -xo +ya xZ yY An @@ -32210,7 +31815,7 @@ gb gE fb WL -hZ +iw fd fN jQ @@ -32337,17 +31942,17 @@ PV RS aj lp -cD +aI aj lp -cD +aI cA as az -aI +fc Kv fd -fL +Mp gc Mp fe @@ -32540,7 +32145,7 @@ Cs CJ CS De -EM +wU BF aa aa @@ -32658,7 +32263,7 @@ qL ru rD pp -sH +tt tq tO uZ @@ -32798,7 +32403,7 @@ fQ pq qM rv -rZ +sH pp sI po @@ -32813,7 +32418,7 @@ zf xw xw zY -rv +Dr rv AK Ba @@ -32948,7 +32553,7 @@ tQ vb wb wC -xc +xG wb yf tQ @@ -33058,7 +32663,7 @@ de de eB Eh -Ei +fL gz gN hI @@ -33067,7 +32672,7 @@ iY ke ky ea -la +kx lJ lJ lJ @@ -33218,7 +32823,7 @@ pm DJ DS DV -Fu +FB pU oW pt @@ -33227,7 +32832,7 @@ ry sc pp sj -tt +vQ tS vc wd @@ -33356,7 +32961,7 @@ hy hy hC nM -pN +pQ DL DL DL @@ -33392,7 +32997,7 @@ Cw Fi CW Dp -EP +Dk EV Fc BL @@ -33510,7 +33115,7 @@ pV pV pV sk -sN +tY tu tU vd @@ -33621,7 +33226,7 @@ RS xy cY bA -cG +di dy dm eF @@ -33631,7 +33236,7 @@ Ek gZ bA iy -jm +jK kn kn ea @@ -34080,12 +33685,12 @@ pV so ti tu -tY +xc Fj wi wI xf -xG +ys yx zm Fg @@ -34500,7 +34105,7 @@ ac ac uW qE -ro +sN rz sf sE @@ -34634,7 +34239,7 @@ zA kp li nN -pN +pQ DL ac ac @@ -34650,11 +34255,11 @@ uW tu tu vx -wo -wo -wo -wo -yB +yJ +yJ +yJ +yJ +wT sB ac ac @@ -34772,7 +34377,7 @@ ks Es El pF -As +Fy kp nc nN @@ -34792,10 +34397,10 @@ ac tu uq vy -wo -yh -yh -wo +yJ +eT +eT +yJ yC sB ac @@ -34906,7 +34511,7 @@ eW fC eb eb -hn +ho cZ iy jx @@ -34918,7 +34523,7 @@ As kp nh nN -pQ +Fz DL ac ac @@ -34934,10 +34539,10 @@ ac tu ur vz -wo -yh -yh -wo +yJ +eT +eT +yJ yD sB ac @@ -35053,7 +34658,7 @@ cZ iJ jy kp -ya +kc lk pF As @@ -35076,10 +34681,10 @@ ac tu us vA -wo -yi -yK -wo +yJ +eT +eT +yJ yE sB ac @@ -35192,7 +34797,7 @@ gj gL hB cZ -iK +iB jo kp lq @@ -35200,7 +34805,7 @@ lY qb Bt kp -ng +nh nR pQ DL @@ -35218,10 +34823,10 @@ ac tu ut vB -wo +yJ eT -yK -wo +eT +yJ yF sB ac @@ -35360,10 +34965,10 @@ sF sF sF sF -wo -yj -yL -wo +yJ +eT +wV +yJ yG sB ac @@ -35502,10 +35107,10 @@ vF wn wP xr -xJ -yk -yM -zb +wQ +wR +wR +wS yI sB ac @@ -35641,13 +35246,13 @@ uc pv pv vG -wo -wo -wo -wo -yl -xh -wo +yJ +yJ +yJ +yJ +eT +eT +yJ yJ yJ ac @@ -35783,15 +35388,15 @@ oY oY oY oY -wo -wQ -xs -xK -ym -yO -wV -zG -wo +yJ +eT +eT +eT +eT +eT +eT +eT +yJ ac ac ac @@ -35908,7 +35513,7 @@ kt lO mz qZ -Dh +la kt nh nR @@ -35925,15 +35530,15 @@ ud uE vi oY -wo -wR -wV -wV -yn -yO -wV -yN -wo +yJ +eT +eT +eT +eT +eT +eT +eT +yJ ac ac ac @@ -36067,15 +35672,15 @@ qc qc qc oY -wo -wS -wV -wV -yn -yO -wV -yT -wo +yJ +eT +eT +eT +eT +eT +eT +eT +yJ ac ac ac @@ -36209,16 +35814,16 @@ ue uF tD oY -wo -wT -xt -xL -yo -yP -xN -yU -wo -wo +yJ +eT +eT +eT +eT +eT +eT +eT +yJ +yJ ac ac ac @@ -36348,19 +35953,19 @@ qe sP ty qe -uG +tw vj vH -wo -wU -wV -xM -yp -yQ -zc -wV -wV -wo +yJ +eT +eT +eT +eT +eT +eT +eT +eT +yJ aP aP aP @@ -36493,16 +36098,16 @@ qc pz qc vI -wo -wV -wV -xM -yq -yR -zc -wV -wV -wo +yJ +eT +eT +eT +eT +eT +eT +eT +eT +yJ aP aP aP @@ -36624,7 +36229,7 @@ kG kY le pb -pA +ro qf qS rI @@ -36634,17 +36239,17 @@ tA uf pz qc -vJ -wo -wW -wV -xN -yr -yS -xN -wV -wV -wo +uG +yJ +eT +eT +eT +eT +eT +eT +eT +eT +yJ aP aP aP @@ -36755,12 +36360,12 @@ dZ dZ ie iQ -jU +iK dZ hh mV rf -Dk +ng hh lm lJ @@ -36777,16 +36382,16 @@ ug pB qg vK -wo -Xd -wV -wV -wV -wV -wV -wV -yU -wo +yJ +eT +eT +eT +eT +eT +eT +eT +eT +yJ aP aP aP @@ -36890,7 +36495,7 @@ aP aP dZ ek -fh +fE fE gk dZ @@ -36912,23 +36517,23 @@ pC qh qU rK -sq +rZ sS tC uh uH vk vL -wo -wX -wV -wV -ys -wV -wV -wV -Hg -wo +yJ +eT +eT +eT +eT +eT +eT +eT +eT +yJ aP aP aP @@ -37062,15 +36667,15 @@ uI tD oY oY -wY -wY -wY -wY -wY -wY -wY -wY wo +wo +wo +wo +wo +wo +wo +wo +yJ aP aP aP @@ -37186,7 +36791,7 @@ kv hA ne sV -Dm +nu hA Dt nU @@ -37466,11 +37071,11 @@ hG ii iV ka -kx +jU lS nj sV -Dr +Dq DH Dv lJ @@ -37765,7 +37370,7 @@ ac ac aa oY -sX +Ei sX oY uN @@ -37891,12 +37496,12 @@ dZ dZ ij iW -kc +jm dZ hl np xX -Dz +nv hl ac ac diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm index 86d22f4719..2e2bffa524 100644 --- a/maps/tether/tether-07-station3.dmm +++ b/maps/tether/tether-07-station3.dmm @@ -167,12 +167,21 @@ /turf/simulated/floor/tiled, /area/security/briefing_room) "ar" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Security" +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hos) +/obj/machinery/meter{ + frequency = 1443; + id = "dist_aux_meter"; + name = "Distribution Loop" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/eva) "as" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_security{ @@ -225,20 +234,19 @@ /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) "aw" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, -/obj/item/device/radio/intercom/department/security{ - dir = 4; - icon_state = "secintercom"; - pixel_x = 24; +/obj/effect/floor_decal/borderfloor{ + dir = 1; pixel_y = 0 }, -/turf/simulated/floor/tiled/dark, -/area/security/range) +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/security/eva) "ax" = ( /obj/machinery/access_button{ command = "cycle_interior"; @@ -384,14 +392,15 @@ /turf/simulated/floor/tiled, /area/security/hallway) "aH" = ( -/obj/machinery/camera/network/security{ - dir = 1 +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 + dir = 4 }, -/turf/simulated/floor/tiled, -/area/security/eva) +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) "aI" = ( /turf/simulated/wall, /area/maintenance/station/sec_upper) @@ -653,20 +662,20 @@ /turf/simulated/floor/tiled/dark, /area/security/range) "bb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + icon_state = "secintercom"; + pixel_x = 24; + pixel_y = 0 }, -/obj/machinery/meter{ - frequency = 1443; - id = "dist_aux_meter"; - name = "Distribution Loop" +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/eva) +/turf/simulated/floor/tiled/dark, +/area/security/range) "bc" = ( /turf/simulated/wall, /area/security/eva) @@ -689,6 +698,10 @@ /obj/effect/floor_decal/borderfloorblack/corner2{ dir = 1 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) "bh" = ( @@ -704,6 +717,10 @@ /obj/effect/floor_decal/borderfloorblack/corner2{ dir = 4 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) "bj" = ( @@ -759,10 +776,6 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 4 - }, /obj/machinery/light_switch{ dir = 4; icon_state = "light1"; @@ -992,6 +1005,7 @@ d2 = 8; icon_state = "0-8" }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor, /area/maintenance/substation/security) "bB" = ( @@ -1128,16 +1142,15 @@ /turf/simulated/floor/tiled, /area/security/hallwayaux) "bL" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/hallwayaux) +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) "bM" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -1205,20 +1218,23 @@ /turf/simulated/floor/tiled/dark, /area/security/armory/blue) "bS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/photocopier, -/obj/machinery/camera/network/security, -/obj/machinery/alarm{ - pixel_y = 22 +/obj/machinery/button/remote/blast_door{ + id = "armoryred"; + name = "Red Armory Access"; + pixel_x = 8; + pixel_y = -24; + req_access = list(3) }, /turf/simulated/floor/tiled/dark, -/area/security/warden) +/area/security/armory/red) "bT" = ( /obj/structure/table/steel, /obj/machinery/cell_charger, @@ -1505,6 +1521,10 @@ "cm" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/structure/closet/bombcloset/double, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) "cn" = ( @@ -1541,15 +1561,11 @@ /turf/simulated/floor/tiled, /area/security/hallwayaux) "cp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/exploration, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) +/turf/simulated/floor/tiled, +/area/security/eva) "cq" = ( /obj/random/trash_pile, /obj/effect/decal/cleanable/cobweb{ @@ -2103,12 +2119,15 @@ /turf/simulated/floor/carpet, /area/security/breakroom) "du" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/effect/landmark{ + name = "tripai" }, -/obj/machinery/disposal, -/turf/simulated/floor/wood, -/area/security/breakroom) +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai) "dv" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -2416,13 +2435,19 @@ /turf/simulated/floor, /area/maintenance/cargo) "dU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/exploration{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) "dV" = ( /turf/simulated/wall/r_wall, /area/maintenance/station/ai) @@ -2599,16 +2624,8 @@ "ej" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/camera/network/security{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, /turf/simulated/floor/tiled, /area/security/hallwayaux) @@ -2639,25 +2656,51 @@ /turf/simulated/floor/wood, /area/security/breakroom) "em" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/exploration{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; +/obj/structure/cable{ + d1 = 4; d2 = 8; - icon_state = "2-8" + icon_state = "4-8" }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) +/turf/simulated/floor/bluegrid, +/area/ai) "en" = ( -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/security/breakroom) +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/stunshells{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/flashshells{ + pixel_x = 1; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/beanbags{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "armoryblue"; + name = "Blue Armory Access"; + pixel_x = 24; + pixel_y = -8; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) "eo" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -2684,10 +2727,18 @@ /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) "er" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/excursion/tether) +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) "es" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -2798,6 +2849,10 @@ dir = 8 }, /obj/machinery/vending/snack, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled, /area/security/hallwayaux) "eB" = ( @@ -3542,37 +3597,17 @@ /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) "fJ" = ( -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 5 - }, -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/camera/network/security, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) "fK" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -3719,32 +3754,11 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "fU" = ( -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/upper) +/turf/simulated/floor/bluegrid, +/area/ai) "fV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -3842,6 +3856,10 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/white/border, /obj/machinery/dnaforensics, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/white, /area/security/forensics) "gd" = ( @@ -4307,16 +4325,14 @@ /turf/simulated/floor/tiled, /area/security/eva) "gX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red/border{ +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/structure/table/reinforced, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled, /area/security/eva) "gY" = ( @@ -4371,16 +4387,13 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/tether) "hd" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Security" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/table/rack/steel, /obj/machinery/camera/network/security, -/turf/simulated/floor/tiled/dark, -/area/security/armory/blue) +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) "he" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -4601,12 +4614,19 @@ /area/security/armory/blue) "hC" = ( /obj/effect/floor_decal/borderfloorblack{ - dir = 6 + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 }, -/obj/effect/floor_decal/borderfloorblack/corner2, -/obj/structure/table/rack/shelf/steel, /turf/simulated/floor/tiled/dark, -/area/security/armory/blue) +/area/security/security_equiptment_storage) "hD" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 @@ -4675,26 +4695,31 @@ /turf/simulated/floor/tiled/dark, /area/security/armory/red) "hH" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/structure/table/steel, /obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/security{ dir = 1 }, -/obj/machinery/button/remote/blast_door{ - id = "armoryred"; - name = "Red Armory Access"; - pixel_x = 8; - pixel_y = -24; - req_access = list(3) +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 }, -/turf/simulated/floor/tiled/dark, -/area/security/armory/red) +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/obj/item/device/megaphone, +/obj/effect/floor_decal/borderfloor/shifted, +/obj/effect/floor_decal/corner/red/border/shifted, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/security/observation) "hI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4779,21 +4804,46 @@ /turf/simulated/floor/tiled, /area/security/eva) "hQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/suit_cycler/security, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 }, /turf/simulated/floor/tiled, /area/security/eva) "hR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/obj/machinery/camera/network/command, -/turf/simulated/floor/bluegrid, -/area/ai) +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) "hS" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -4949,6 +4999,7 @@ d2 = 4; icon_state = "0-4" }, +/obj/machinery/camera/network/command, /turf/simulated/floor/bluegrid, /area/ai) "id" = ( @@ -5110,6 +5161,10 @@ name = "RED ARMORY"; pixel_y = 32 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled/dark, /area/security/warden) "ik" = ( @@ -5238,6 +5293,10 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/security/hallway) "iq" = ( @@ -5709,13 +5768,10 @@ /turf/simulated/floor/tiled, /area/security/hallwayaux) "iS" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/hallwayaux) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/weapon/bone/skull/unathi, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) "iT" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -5994,46 +6050,21 @@ /area/security/armory/blue) "jv" = ( /obj/effect/floor_decal/borderfloorblack{ - dir = 4 + dir = 5 }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 +/obj/effect/floor_decal/corner/red/border{ + dir = 5 }, /obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 5 + dir = 4 }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/stunshells{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/flashshells{ - pixel_x = 1; - pixel_y = 0 - }, -/obj/item/weapon/storage/box/beanbags{ - pixel_x = 4; - pixel_y = -5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "armoryblue"; - name = "Blue Armory Access"; - pixel_x = 24; - pixel_y = -8; - req_access = list(3) +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 }, +/obj/structure/closet/wardrobe/red, +/obj/machinery/camera/network/security, /turf/simulated/floor/tiled/dark, -/area/security/armory/blue) +/area/security/security_lockerroom) "jw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -6874,20 +6905,15 @@ /turf/simulated/floor, /area/maintenance/station/sec_upper) "kK" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +/obj/effect/landmark{ + name = "tripai" }, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/machinery/camera/network/security{ +/obj/machinery/camera/network/command{ icon_state = "camera"; - dir = 4 + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) +/turf/simulated/floor/bluegrid, +/area/ai) "kL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -6927,59 +6953,27 @@ /turf/simulated/floor/tiled, /area/security/observation) "kO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/red, -/obj/item/weapon/pen, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/obj/item/device/megaphone, -/obj/effect/floor_decal/borderfloor/shifted, -/obj/effect/floor_decal/corner/red/border/shifted, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 10 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/security/observation) -"kP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/security{ - icon_state = "camera"; +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/firealarm{ +/obj/item/device/radio/intercom/department/security{ dir = 4; - pixel_x = 24 + icon_state = "secintercom"; + pixel_x = 24; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"kP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/item/device/radio/intercom/department/security{ + dir = 2; + icon_state = "secintercom"; + pixel_y = -24 }, /turf/simulated/floor/tiled, -/area/security/hallwayaux) +/area/security/briefing_room) "kQ" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 @@ -6997,11 +6991,15 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/tether) "kS" = ( -/obj/effect/landmark{ - name = "tripai" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/bluegrid, -/area/ai) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/exploration, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) "kT" = ( /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor{ @@ -7657,6 +7655,10 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/bluegrid, /area/ai) "lT" = ( @@ -7680,14 +7682,33 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/ai) "lU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/machinery/camera/network/command{ - dir = 1 +/obj/effect/floor_decal/corner/red/border{ + dir = 8 }, -/turf/simulated/floor/bluegrid, -/area/ai) +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/steel, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/security/security_processing) "lV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -7886,21 +7907,21 @@ /area/security/security_lockerroom) "mg" = ( /obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 + dir = 8 }, /obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 4 + icon_state = "borderfloorcorner2_black"; + dir = 8 }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 }, -/obj/structure/closet/wardrobe/red, -/obj/machinery/camera/network/security, /turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) +/area/security/evidence_storage) "mh" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -8031,13 +8052,14 @@ /turf/simulated/floor/tiled/monotile, /area/tether/exploration) "mu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) "mv" = ( @@ -8160,17 +8182,36 @@ /turf/simulated/floor, /area/security/forensics) "mG" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - dir = 1 - }, /obj/structure/window/reinforced{ - dir = 8 + dir = 4 }, -/turf/simulated/open, -/area/security/hallway) +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) "mH" = ( /turf/simulated/wall/r_wall, /area/security/hallway) @@ -8509,16 +8550,19 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "nh" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/folder/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) "ni" = ( /obj/structure/bookcase, /obj/item/weapon/book/manual/security_space_law, @@ -8716,11 +8760,36 @@ /turf/simulated/floor/tiled/monotile, /area/tether/exploration) "nA" = ( -/obj/machinery/camera/network/exploration{ - dir = 1 +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) +/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/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) "nB" = ( /obj/structure/cable/green{ d1 = 1; @@ -8808,21 +8877,27 @@ /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) "nG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" }, -/obj/item/device/radio/intercom/department/security{ - dir = 4; - icon_state = "secintercom"; - pixel_x = 24; - pixel_y = 0 +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 +/obj/structure/cable/green{ + icon_state = "0-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hos) +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) "nH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -9343,6 +9418,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/computer/secure_data, +/obj/machinery/camera/network/security, /turf/simulated/floor/tiled, /area/security/security_processing) "oD" = ( @@ -9440,18 +9516,20 @@ /turf/simulated/floor/tiled, /area/security/briefing_room) "oK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/item/device/radio/intercom/department/security{ - dir = 2; - icon_state = "secintercom"; - pixel_y = -24 +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 }, -/obj/machinery/camera/network/security{ - dir = 1 +/obj/item/weapon/hand_labeler, +/obj/item/weapon/folder/yellow, +/obj/machinery/camera/network/cargo{ + dir = 1; + name = "security camera" }, /turf/simulated/floor/tiled, -/area/security/briefing_room) +/area/quartermaster/storage) "oL" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -9838,37 +9916,18 @@ /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) "pl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/table/steel, -/obj/item/weapon/folder/red, -/obj/item/weapon/folder/red{ - pixel_x = 2; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, /turf/simulated/floor/tiled, -/area/security/security_processing) +/area/quartermaster/office) "pm" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -10089,11 +10148,22 @@ /turf/simulated/floor/tiled, /area/security/hallway) "pH" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/camera/network/security{ +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/security/hallway) "pI" = ( @@ -10315,22 +10385,16 @@ /turf/simulated/floor, /area/security/detectives_office) "qg" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +/obj/structure/table/woodentable, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - icon_state = "borderfloorcorner2_black"; - dir = 8 +/obj/item/device/radio/intercom/department/security{ + pixel_y = -24 }, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) +/turf/simulated/floor/carpet, +/area/security/detectives_office) "qh" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -10761,40 +10825,17 @@ /turf/simulated/floor/tiled, /area/security/hallway) "qS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 9 }, -/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/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, +/obj/structure/closet/lawcloset, /obj/machinery/camera/network/security{ icon_state = "camera"; - dir = 8 + dir = 5 }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) +/turf/simulated/floor/tiled/dark, +/area/lawoffice) "qT" = ( /turf/simulated/floor, /area/maintenance/station/elevator) @@ -10839,18 +10880,16 @@ /turf/simulated/floor, /area/quartermaster/delivery) "qZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +/obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ - dir = 9 + dir = 5 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 9 + dir = 5 }, +/obj/machinery/camera/network/cargo, /turf/simulated/floor/tiled, -/area/quartermaster/delivery) +/area/quartermaster/office) "ra" = ( /obj/structure/disposalpipe/sortjunction/untagged/flipped{ dir = 1 @@ -11388,28 +11427,20 @@ /turf/simulated/floor/tiled, /area/quartermaster/delivery) "rM" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 5 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 }, -/obj/machinery/camera/network/cargo, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) +/turf/simulated/floor/tiled/dark, +/area/lawoffice) "rN" = ( /obj/structure/cable/green{ d1 = 4; @@ -11569,16 +11600,19 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "rY" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/camera/network/cargo, +/obj/structure/table/steel, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, /obj/effect/floor_decal/borderfloor{ - dir = 5 + dir = 6 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 5 + dir = 6 }, /turf/simulated/floor/tiled, -/area/quartermaster/office) +/area/quartermaster/delivery) "rZ" = ( /obj/structure/noticeboard, /turf/simulated/wall, @@ -11958,6 +11992,10 @@ /obj/effect/floor_decal/corner/brown/bordercorner2{ dir = 9 }, +/obj/machinery/camera/network/cargo{ + dir = 1; + name = "security camera" + }, /turf/simulated/floor/tiled, /area/quartermaster/office) "sD" = ( @@ -11979,22 +12017,28 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "sE" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/bed/chair{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/cargo{ - dir = 1; - name = "security camera" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/brown/bordercorner2, /turf/simulated/floor/tiled, -/area/quartermaster/office) +/area/quartermaster/foyer) "sF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12225,6 +12269,7 @@ icon_state = "pipe-j1"; dir = 4 }, +/obj/machinery/camera/network/security, /turf/simulated/floor/tiled, /area/security/hallway) "sY" = ( @@ -12292,25 +12337,12 @@ /turf/simulated/floor/tiled, /area/security/hallway) "tb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/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/machinery/camera/network/security, -/turf/simulated/floor/tiled, -/area/security/hallway) +/turf/simulated/mineral/floor/vacuum, +/area/security/nuke_storage) "tc" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 @@ -12617,6 +12649,9 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2{ dir = 9 }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/hallway/station/upper) "tu" = ( @@ -13835,17 +13870,24 @@ /turf/simulated/wall, /area/lawoffice) "vv" = ( -/obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 9 +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 }, -/obj/structure/closet/lawcloset, -/obj/machinery/camera/network/security{ - icon_state = "camera"; +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) +/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 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) "vw" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; @@ -13964,20 +14006,17 @@ /turf/simulated/floor/tiled/dark, /area/lawoffice) "vD" = ( -/obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) +/turf/simulated/floor/tiled, +/area/security/lobby) "vE" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -14030,6 +14069,10 @@ dir = 5 }, /obj/machinery/computer/security, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, /turf/simulated/floor/tiled, /area/security/lobby) "vH" = ( @@ -14219,23 +14262,37 @@ /turf/simulated/floor/tiled, /area/quartermaster/delivery) "vY" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/machinery/camera/network/cargo{ - dir = 1; - name = "security camera" +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 }, /obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/quartermaster/delivery) +/area/hallway/station/upper) "vZ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, @@ -14511,31 +14568,18 @@ /turf/simulated/open, /area/tether/exploration) "wF" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27; - pixel_y = 0 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 }, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/quartermaster/foyer) +/area/hallway/station/upper) "wG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -14584,11 +14628,16 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "wL" = ( -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior South" +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, -/turf/simulated/mineral/floor/vacuum, -/area/security/nuke_storage) +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) "wM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/table/reinforced, @@ -14788,25 +14837,25 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "xc" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 }, -/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/floor_decal/steeldecal/steel_decals4{ + dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/hallway/station/upper) +/area/quartermaster/office) "xd" = ( /obj/structure/cable{ icon_state = "1-2" @@ -14884,17 +14933,11 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "xg" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/structure/table/bench/wooden, +/obj/machinery/camera/network/tether{ 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 - }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/wood, /area/hallway/station/upper) "xh" = ( /obj/structure/sign/directions/cargo{ @@ -15122,12 +15165,24 @@ /turf/simulated/wall/r_wall, /area/security/nuke_storage) "xx" = ( -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior North"; +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/mineral/floor/vacuum, -/area/security/nuke_storage) +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) "xy" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; @@ -15317,21 +15372,31 @@ /turf/simulated/floor/tiled, /area/security/lobby) "xM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/security/lobby) +/area/hallway/station/upper) "xN" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, @@ -15357,40 +15422,14 @@ /turf/simulated/floor, /area/maintenance/station/elevator) "xP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27; - pixel_y = 0 - }, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/upper) +/obj/item/device/megaphone, +/turf/simulated/floor/wood, +/area/quartermaster/qm) "xQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15830,19 +15869,12 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "yB" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/camera/network/tether, -/obj/structure/table/bench/standard, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/upper) +/turf/space, +/area/security/nuke_storage) "yC" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 6 @@ -16069,19 +16101,15 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "yR" = ( -/obj/machinery/camera/network/tether{ - dir = 1 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) "yS" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, @@ -16149,26 +16177,19 @@ /turf/simulated/floor/tiled, /area/quartermaster/foyer) "yY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /obj/effect/floor_decal/borderfloor{ - dir = 6 + dir = 9 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 6 + dir = 9 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/obj/structure/closet/emcloset, +/obj/machinery/camera/network/cargo, /turf/simulated/floor/tiled, -/area/quartermaster/foyer) +/area/quartermaster/delivery) "yZ" = ( /obj/machinery/door/airlock/glass_mining{ id_tag = "cargodoor"; @@ -16198,20 +16219,15 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "zb" = ( -/obj/structure/table/standard, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -24 +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" }, -/obj/item/device/retail_scanner/civilian{ - dir = 1 +/obj/machinery/camera/network/cargo{ + dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/brown/bordercorner2, -/turf/simulated/floor/tiled, -/area/quartermaster/office) +/turf/simulated/floor, +/area/quartermaster/delivery) "zc" = ( /obj/structure/table/standard, /obj/item/weapon/hand_labeler, @@ -16789,23 +16805,24 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "zX" = ( -/obj/effect/floor_decal/borderfloor{ +/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/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 2; + pixel_y = -24 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, /area/hallway/station/upper) "zY" = ( @@ -17233,6 +17250,10 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 5 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) "AA" = ( @@ -17360,15 +17381,16 @@ /turf/simulated/floor/wood, /area/quartermaster/qm) "AK" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/item/device/megaphone, -/obj/machinery/camera/network/cargo, -/turf/simulated/floor/wood, -/area/quartermaster/qm) +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) "AL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17514,14 +17536,11 @@ /area/medical/reception) "Ba" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 + dir = 1 }, -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_three) "Bb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -17957,6 +17976,10 @@ /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 4 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) "BC" = ( @@ -18035,20 +18058,18 @@ /turf/simulated/floor/tiled, /area/maintenance/station/cargo) "BL" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "cargo_bay"; + layer = 3.3; + name = "cargo bay hatch controller"; + pixel_x = 30; + pixel_y = 0; + req_one_access = list(13,31); + tag_door = "cargo_bay_door" }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "BM" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -18098,12 +18119,24 @@ /turf/simulated/floor/wood, /area/quartermaster/qm) "BQ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/camera/network/cargo{ +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) "BR" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, @@ -18270,29 +18303,15 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "Cg" = ( -/obj/machinery/camera/network/tether{ - dir = 1 +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 }, -/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/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 2; - pixel_y = -24 +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" }, /turf/simulated/floor/tiled, -/area/hallway/station/upper) +/area/quartermaster/warehouse) "Ch" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 @@ -18937,27 +18956,26 @@ /turf/simulated/wall, /area/medical/reception) "Dm" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/structure/table/rack, +/obj/item/device/defib_kit/compact/loaded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 4 }, -/obj/machinery/camera/network/medbay{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 }, -/obj/effect/floor_decal/borderfloorwhite{ +/obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) "Dn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -19165,17 +19183,26 @@ /turf/simulated/floor/tiled, /area/teleporter/departing) "DF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/table/glass, +/obj/item/weapon/storage/box/cups, +/obj/item/weapon/storage/box/cups{ + pixel_x = 4; + pixel_y = 4 }, -/obj/effect/floor_decal/corner_steel_grid{ +/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/machinery/camera/network/medbay{ + icon_state = "camera"; dir = 10 }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/teleporter/departing) +/turf/simulated/floor/tiled/white, +/area/medical/reception) "DG" = ( /obj/structure/cable{ d1 = 4; @@ -19240,6 +19267,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 }, +/obj/machinery/camera/network/tether{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/tether/station/stairs_three) "DL" = ( @@ -19399,6 +19429,9 @@ icon_state = "0-2" }, /obj/structure/cable/green, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) "DV" = ( @@ -19656,11 +19689,15 @@ /turf/simulated/floor/tiled/white, /area/medical/reception) "Ep" = ( -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "Quartermaster-Office" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/floor/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/toy/plushie/squid/blue, +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) "Eq" = ( /obj/structure/table/standard, @@ -19696,15 +19733,10 @@ /turf/simulated/floor/wood, /area/quartermaster/qm) "Et" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/engine, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/excursion/tether) "Eu" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, @@ -19799,29 +19831,30 @@ /turf/simulated/floor/tiled, /area/tether/station/stairs_three) "EF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/machinery/button/remote/blast_door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -26; + pixel_y = 0; + req_access = list(31) }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, -/area/tether/station/stairs_three) +/area/quartermaster/storage) "EG" = ( -/obj/structure/table/woodentable, -/obj/item/device/taperecorder{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/machinery/camera/network/security{ +/obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, -/obj/item/device/radio/intercom/department/security{ - pixel_y = -24 +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) "EH" = ( /obj/structure/window/reinforced{ dir = 8 @@ -20160,40 +20193,23 @@ /turf/simulated/floor/tiled/white, /area/medical/reception) "Fi" = ( -/obj/structure/table/rack, -/obj/item/device/defib_kit/compact/loaded, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/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/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_bay) +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) "Fj" = ( /turf/simulated/wall, /area/quartermaster/warehouse) "Fk" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 +/obj/vehicle/train/engine{ + dir = 1 }, /obj/structure/cable/green{ d1 = 1; @@ -20229,22 +20245,12 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "Fm" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "cargo_bay"; - layer = 3.3; - name = "cargo bay hatch controller"; - pixel_x = 30; - pixel_y = 0; - req_one_access = list(13,31); - tag_door = "cargo_bay_door" - }, -/obj/machinery/camera/network/cargo{ - c_tag = "CRG - Cargo Bay East"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) "Fn" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -20748,24 +20754,27 @@ /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) "Gc" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 }, -/obj/machinery/camera/network/cargo{ - c_tag = "CRG - Cargo Warehouse"; - dir = 9 +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 }, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) "Gd" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley, -/obj/machinery/light{ - dir = 8 +/obj/vehicle/train/trolley{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 }, /obj/structure/cable/green{ d1 = 1; @@ -20793,6 +20802,9 @@ /area/teleporter/departing) "Gh" = ( /obj/effect/floor_decal/techfloor/orange, +/obj/machinery/camera/network/tether{ + dir = 1 + }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) "Gi" = ( @@ -20882,17 +20894,23 @@ /area/medical/reception) "Gp" = ( /obj/structure/table/glass, -/obj/item/weapon/storage/box/cups, -/obj/item/weapon/storage/box/cups{ - pixel_x = 4; - pixel_y = 4 +/obj/item/weapon/storage/box/body_record_disk, +/obj/item/device/sleevemate, +/obj/item/weapon/paper{ + desc = ""; + info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing."; + name = "Body Designer Note" }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; dir = 9 }, /turf/simulated/floor/tiled/white, @@ -21019,27 +21037,22 @@ /turf/simulated/floor/tiled/white, /area/medical/reception) "Gx" = ( +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, /obj/structure/table/glass, -/obj/item/weapon/storage/box/body_record_disk, -/obj/item/device/sleevemate, -/obj/item/weapon/paper{ - desc = ""; - info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing."; - name = "Body Designer Note" - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, /obj/effect/floor_decal/borderfloorwhite{ - dir = 6 + dir = 4 }, /obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 + dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, /turf/simulated/floor/tiled/white, -/area/medical/reception) +/area/medical/sleeper) "Gy" = ( /obj/machinery/power/apc{ dir = 2; @@ -21209,15 +21222,17 @@ /area/quartermaster/warehouse) "GK" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/vehicle/train/trolley, +/obj/vehicle/train/trolley{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, /turf/simulated/floor/tiled, /area/quartermaster/storage) "GL" = ( @@ -21234,29 +21249,10 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "GN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/camera/network/cargo{ - c_tag = "CRG - Cargo Office South"; - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/quartermaster/office) +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) "GO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -21950,22 +21946,32 @@ pixel_x = 0; pixel_y = 32 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) "HL" = ( -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/sleeper) "HM" = ( @@ -22063,6 +22069,10 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 8 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) "HU" = ( @@ -22721,6 +22731,9 @@ d2 = 8; icon_state = "0-8" }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, /turf/simulated/floor, /area/maintenance/substation/cargo) "IQ" = ( @@ -22758,18 +22771,12 @@ /turf/simulated/floor/tiled, /area/quartermaster/warehouse) "IU" = ( -/obj/machinery/button/remote/blast_door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -26; - pixel_y = 0; - req_access = list(31) - }, -/obj/machinery/camera/network/cargo{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/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, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) "IV" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; @@ -22909,15 +22916,21 @@ /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) "Jk" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 }, /obj/machinery/camera/network/medbay{ - dir = 8 + icon_state = "camera"; + dir = 9 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/cmo) +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) "Jl" = ( /obj/structure/cable/green{ d1 = 1; @@ -23113,6 +23126,10 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) "JE" = ( @@ -23423,15 +23440,19 @@ /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) "Kc" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/weapon/soap/nanotrasen, -/obj/machinery/camera/network/medbay{ - dir = 1 +/obj/structure/closet/wardrobe/virology_white, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) +/area/medical/virologyaccess) "Kd" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/weapon/soap/nanotrasen, @@ -23480,20 +23501,10 @@ /turf/simulated/open, /area/medical/medbay_primary_storage) "Kj" = ( -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/item/weapon/tool/screwdriver, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, +/obj/machinery/vending/cola, +/obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, -/area/medical/sleeper) +/area/crew_quarters/medbreak) "Kk" = ( /obj/structure/cable/green{ d1 = 1; @@ -23562,32 +23573,30 @@ /turf/simulated/floor/tiled/white, /area/medical/sleeper) "Kq" = ( -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior West"; - dir = 8 - }, -/turf/space, +/obj/machinery/camera/network/security, +/turf/simulated/mineral/floor/vacuum, /area/security/nuke_storage) "Kr" = ( -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/structure/table/glass, -/obj/machinery/camera/network/medbay{ +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 +/obj/effect/floor_decal/corner/red/border{ + dir = 8 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/medical/sleeper) +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) "Ks" = ( /obj/structure/table/glass, /obj/item/bodybag/cryobag, @@ -24014,11 +24023,12 @@ /turf/simulated/floor/tiled/white, /area/medical/sleeper) "Lf" = ( -/obj/structure/flora/pottedplant, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/medbreak) +/area/medical/virology) "Lg" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -24377,30 +24387,10 @@ /turf/simulated/floor/tiled/white, /area/medical/sleeper) "LS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/medical/sleeper) +/obj/machinery/camera/network/security, +/mob/living/simple_mob/animal/sif/shantak/scruffy, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) "LT" = ( /obj/effect/landmark/start{ name = "Paramedic" @@ -25076,12 +25066,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/conveyor_switch/oneway{ +/obj/machinery/conveyor_switch{ id = "gloriouscargopipeline"; - layer = 3.3; - name = "Surface delivery conveyor"; - pixel_x = 14; - pixel_y = -3 + name = "Mining Supply conveyor switch"; + pixel_x = 0; + pixel_y = 0 }, /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) @@ -25302,15 +25291,16 @@ /turf/simulated/floor/tiled/white, /area/medical/sleeper) "Ne" = ( -/obj/machinery/camera/network/medbay{ - dir = 1 +/obj/structure/closet/crate/freezer, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, -/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, /turf/simulated/floor/tiled/white, -/area/medical/sleeper) +/area/medical/virology) "Nf" = ( /obj/structure/bed/chair{ dir = 1 @@ -25368,20 +25358,21 @@ /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) "Nk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/hallway/secondary/escape/medical_escape_pod_hallway) +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) "Nl" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) @@ -25407,16 +25398,29 @@ /obj/structure/table/standard, /obj/item/weapon/storage/box/cups, /obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) "Np" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8; - icon_state = "propulsion_l" +/obj/structure/closet/secure_closet/detective, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/gun/energy/taser, +/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 }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/large_escape_pod1/station) +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) "Nq" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets, @@ -25585,20 +25589,41 @@ /turf/simulated/floor/tiled/white, /area/medical/sleeper) "NE" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/machinery/firealarm{ +/obj/effect/floor_decal/borderfloor{ dir = 4; - pixel_x = 24 + pixel_x = -16 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/effect/floor_decal/corner/red/border{ + dir = 4; + pixel_x = -16 }, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) +/obj/structure/table/steel, +/obj/item/bodybag/cryobag{ + pixel_x = 6 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = -9 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) "NF" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ frequency = 1380; @@ -25645,12 +25670,14 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) "NI" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/large_escape_pod1/station) +/turf/simulated/floor/tiled, +/area/security/hallwayaux) "NJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 @@ -25717,24 +25744,29 @@ /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) "NQ" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -8; - pixel_y = -28; - req_access = list(39) +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/obj/machinery/light{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 6 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) "NR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -25789,13 +25821,30 @@ /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) "NY" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8; - icon_state = "propulsion_r" +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/large_escape_pod1/station) +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) "NZ" = ( /obj/structure/shuttle/engine/heater{ dir = 8 @@ -25966,14 +26015,27 @@ /turf/simulated/floor/tiled/white, /area/medical/virology) "Or" = ( -/obj/machinery/disease2/diseaseanalyser, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +/obj/structure/closet/l3closet/virology, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -8; + pixel_y = -28; + req_access = list(39) + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/camera/network/medbay{ + dir = 1 }, /turf/simulated/floor/tiled/white, -/area/medical/virology) +/area/medical/virologyaccess) "Os" = ( /obj/structure/window/reinforced{ dir = 8 @@ -26217,18 +26279,23 @@ dir = 8 }, /obj/machinery/disposal, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) "OQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/camera/network/medbay{ +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) +/obj/machinery/disposal, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) "OR" = ( /obj/structure/table/glass, /obj/item/weapon/storage/fancy/vials, @@ -26287,6 +26354,15 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) +"OW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) "OX" = ( /obj/effect/floor_decal/techfloor{ dir = 8 @@ -26298,14 +26374,12 @@ /turf/simulated/floor/bluegrid, /area/ai_core_foyer) "OY" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = -28 +/obj/machinery/camera/network/cargo{ + icon_state = "camera"; + dir = 8 }, -/obj/structure/table/glass, -/obj/item/weapon/storage/lockbox/vials, -/obj/item/weapon/reagent_containers/dropper, -/turf/simulated/floor/tiled/white, -/area/medical/virology) +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "OZ" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -26509,6 +26583,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) +"Pq" = ( +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/open, +/area/security/hallway) +"Pr" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_core_foyer) "Ps" = ( /obj/machinery/atmospherics/tvalve/bypass, /obj/machinery/light{ @@ -26519,6 +26608,18 @@ }, /turf/simulated/floor/plating, /area/medical/virology) +"Pt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) "Pu" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/monkeycubes, @@ -26548,26 +26649,22 @@ /turf/simulated/floor/tiled/white, /area/medical/virology) "Pw" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 +/obj/machinery/disease2/diseaseanalyser, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 }, +/obj/machinery/camera/network/medbay, /turf/simulated/floor/tiled/white, /area/medical/virology) "Px" = ( -/obj/machinery/smartfridge/secure/virology, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) "Py" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -26587,20 +26684,13 @@ /turf/simulated/floor/airless, /area/medical/virology) "PA" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_medical{ - name = "Virology Laboratory"; - req_access = list(39) +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, -/turf/simulated/floor/tiled/white, -/area/medical/virology) +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1/station) "PB" = ( /turf/simulated/wall/r_wall, /area/medical/virologyisolation) @@ -26612,15 +26702,16 @@ /turf/simulated/floor/bluegrid, /area/ai_core_foyer) "PD" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/machinery/smartfridge/secure/virology, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 }, /obj/machinery/camera/network/medbay{ - dir = 4 + icon_state = "camera"; + dir = 9 }, /turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) +/area/medical/virology) "PE" = ( /obj/structure/cable/green{ d1 = 1; @@ -26679,6 +26770,17 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) +"PI" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) "PJ" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/green, @@ -26814,18 +26916,199 @@ /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) +"PZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) "Qa" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/medical/virologyisolation) +"Qb" = ( +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/open, +/area/tether/exploration) +"Qc" = ( +/obj/structure/table/standard, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = -24 + }, +/obj/item/device/retail_scanner/civilian{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/machinery/camera/network/cargo{ + dir = 1; + name = "security camera" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"Qd" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Quartermaster-Office" + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Qe" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/machinery/camera/network/cargo{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor, +/area/quartermaster/storage) "Qf" = ( /obj/structure/toilet{ pixel_y = 15 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) +"Qg" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Qh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/trolley{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Qi" = ( +/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/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Qj" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Qk" = ( +/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/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ql" = ( +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/open, +/area/security/brig) +"Qm" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/station/ai) +"Qn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/door/window/southright{ + req_access = list(58) + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"Qo" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = -28 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/lockbox/vials, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) +"Qp" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1/station) +"Qq" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_r" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1/station) "Qr" = ( /obj/machinery/shower{ pixel_y = 10 @@ -26843,6 +27126,22 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) +"Qs" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "Virology Laboratory"; + req_access = list(39) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/medical/virology) "Qt" = ( /turf/simulated/wall, /area/tether/exploration) @@ -27026,13 +27325,6 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"QZ" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/camera/network/command{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_core_foyer) "Ra" = ( /obj/structure/railing, /obj/structure/railing{ @@ -27120,22 +27412,6 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/elevator) -"Rl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/machinery/suit_cycler/security, -/turf/simulated/floor/tiled, -/area/security/eva) "Rm" = ( /obj/effect/floor_decal/techfloor{ dir = 6 @@ -27393,16 +27669,6 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/ai) -"RL" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/maintenance/station/ai) "RM" = ( /obj/structure/catwalk, /obj/structure/cable{ @@ -27808,38 +28074,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"SJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4; - pixel_x = -16 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4; - pixel_x = -16 - }, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/structure/table/steel, -/obj/item/bodybag/cryobag{ - pixel_x = 6 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 32; - pixel_y = -9 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 32; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled, -/area/security/hallway) "SK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -28028,16 +28262,6 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/tether) -"Tv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/toy/plushie/squid/blue, -/turf/simulated/floor/outdoors/grass/forest, -/area/quartermaster/qm) "TD" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -28152,16 +28376,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/shuttle/excursion/tether) -"TZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/door/window/brigdoor/southright{ - id = "tactical_pet_storage" - }, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) "Ua" = ( /obj/machinery/light{ icon_state = "tube1"; @@ -28488,13 +28702,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/tether) -"Vb" = ( -/obj/machinery/camera/network/exploration{ - dir = 1 - }, -/obj/structure/stasis_cage, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) "Vd" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -28735,15 +28942,6 @@ "VM" = ( /turf/simulated/open, /area/ai_core_foyer) -"VN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, -/obj/item/weapon/bone/skull/unathi, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) "VQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; @@ -28888,14 +29086,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/shuttle/excursion/tether) -"Wz" = ( -/obj/machinery/vending/cola, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medbreak) "WB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -29152,19 +29342,6 @@ }, /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) -"XR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/exploration{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) "XT" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -29224,18 +29401,6 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Yi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) "Yj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -29337,10 +29502,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/shuttle/excursion/tether) -"YO" = ( -/mob/living/simple_mob/animal/sif/shantak/scruffy, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) "YQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -33484,7 +33645,7 @@ aa aa ae aa -Kq +yB aa ae aa @@ -33602,7 +33763,7 @@ aa ab ZF je -YO +LS WH Uk my @@ -33745,8 +33906,8 @@ ab ZF je Ui -VN -TZ +iS +Qn Yu Vp Ve @@ -33910,7 +34071,7 @@ xw xw ze zS -Ba +yR BV CT xw @@ -34039,7 +34200,7 @@ ov oZ fr qc -fJ +mG rh wS sO @@ -34047,7 +34208,7 @@ tJ qc vs vt -xx +tb xw xw zf @@ -34057,7 +34218,7 @@ BW CU xw xw -wL +Kq vt vt vt @@ -34315,7 +34476,7 @@ ab ab ab je -ar +hd WN et Yx @@ -34459,7 +34620,7 @@ ab je kI Uy -nG +kO oa ox ff @@ -34723,7 +34884,7 @@ ab ab ao ao -hd +aH hA hS ig @@ -34737,7 +34898,7 @@ ja kc ko tQ -kK +hC kY eT mc @@ -35008,14 +35169,14 @@ ai ai ao hf -hC +fJ bx ii bd iN jc ji -jv +en kd jS rA @@ -35045,7 +35206,7 @@ nn nn vu uO -zX +xx Bi Cb sp @@ -35179,9 +35340,9 @@ qG ro sj sT -EG +qg uJ -vv +qS wg wg xy @@ -35189,7 +35350,7 @@ yi og zY Bj -Ca +Qk Da Da Da @@ -35450,7 +35611,7 @@ kC fB fY eT -mg +jv mD nl nM @@ -35463,7 +35624,7 @@ qI rm sl sR -tN +Np uJ vx wh @@ -35475,7 +35636,7 @@ Aa Bl SI Da -DF +AK EB Fp Gf @@ -35599,7 +35760,7 @@ mh mh ep pg -pH +pG fH qe eO @@ -35720,7 +35881,7 @@ gP bZ bv dI -bS +dU ez bE RB @@ -35739,7 +35900,7 @@ dX ew lz lz -lz +Kr ph pI aA @@ -36002,7 +36163,7 @@ gr gE gO hi -hH +bS dI dI bq @@ -36011,7 +36172,7 @@ cd dI mv dM -ej +er cP cP jL @@ -36019,7 +36180,7 @@ eD cP lB lB -mG +lB no as as @@ -36157,7 +36318,7 @@ ek cP QV kD -kO +hH cP lC lC @@ -36168,7 +36329,7 @@ nN oz pj pJ -qg +mg qK rt oz @@ -36183,7 +36344,7 @@ yo og Af Bp -Cg +zX Df Df Df @@ -36317,7 +36478,7 @@ fN sZ tW uO -vD +rM wi wN xG @@ -36348,7 +36509,7 @@ MB MS No Jm -Wz +Kj KW vt vt @@ -36470,7 +36631,7 @@ Br Ci Dh DL -EF +Ba Fu Gk Gk @@ -36573,7 +36734,7 @@ ai ai ai ai -ci +NY iR cg jk @@ -36598,7 +36759,7 @@ oA oA oA oA -tb +pH tT uQ vE @@ -36623,7 +36784,7 @@ Hj HV ID Jp -Kc +Fm Jr KZ LE @@ -36734,7 +36895,7 @@ jk jk lv oB -pl +lU pM qh fK @@ -36755,7 +36916,7 @@ Ck yl Al BE -Dm +BQ Ef EZ FH @@ -37000,7 +37161,7 @@ aC aR bf bs -bL +ej cf cT jy @@ -37015,7 +37176,7 @@ jk jk jk jk -jk +Ql of oD pn @@ -37319,7 +37480,7 @@ yu zq fT kn -Ck +Qj yJ Az BG @@ -37335,7 +37496,7 @@ II Ju Ki KG -Lf +GN Ld Mn MI @@ -37421,7 +37582,7 @@ gk gf gk gR -aw +bb aE dQ bf @@ -37459,7 +37620,7 @@ wU xL yv zq -fU +xM kw pN yl @@ -37606,7 +37767,7 @@ mX pS Dl AA -BL +FK Dq Ek Fe @@ -37617,7 +37778,7 @@ HK HZ IK Jv -Kj +Gc KH Li LG @@ -37719,7 +37880,7 @@ jU cY kr kr -kP +hR ld lF mk @@ -37731,7 +37892,7 @@ oG pq pR qm -qS +nA rz aL ti @@ -37740,7 +37901,7 @@ aN vL wq wV -xM +vD yx yL jf @@ -37753,7 +37914,7 @@ Cl El Cl Cl -Gp +DF Iy Hq Lh @@ -37773,11 +37934,11 @@ ab NW Ok OA -OQ +Lf NW Ok OA -OQ +Lf NW aa aa @@ -37872,12 +38033,12 @@ at eX pr lC -lC +Pq mH rB mH tj -SJ +NE mH uP uP @@ -38002,7 +38163,7 @@ eJ el kh kh -du +OQ YT dO lG @@ -38058,7 +38219,7 @@ Nr Om OC OR -OY +Qo Pf OC KA @@ -38205,7 +38366,7 @@ Pg Po Pu NW -PD +PI PN PS PW @@ -38278,7 +38439,7 @@ hM aW aU iG -iS +NI YT jo ds @@ -38333,11 +38494,11 @@ LN Jz Mt Lh -Ne +IU Nt -NE +Kc NK -NQ +Or Nr Oo OE @@ -38346,7 +38507,7 @@ Pb Pi Pp Pv -PA +Qs PE PO PT @@ -38437,7 +38598,7 @@ lH jh lH ok -oK +kP le mH mH @@ -38475,7 +38636,7 @@ LO JA Mu Lh -Nf +Pt Nr Nr Nr @@ -38556,7 +38717,7 @@ ab ab ab aU -gX +aw hr hM aY @@ -38593,7 +38754,7 @@ tn tn tn sp -yB +wF zw Ar Ax @@ -38629,7 +38790,7 @@ OU OE Pl NR -Pw +Ne NW PH PQ @@ -38701,7 +38862,7 @@ aU bk hr hP -Rl +hQ aU iH iT @@ -38709,7 +38870,7 @@ YT ni dg tP -en +eJ eF Xe YH @@ -38721,7 +38882,7 @@ mN nt nS om -oI +OW le tl tl @@ -38765,13 +38926,13 @@ ab ab ab NW -Or +Pw OG OV Pd Pm Ps -Px +PD NW PJ PR @@ -38889,7 +39050,7 @@ Du EJ Fh FP -Gx +Gp Iy HI Ig @@ -38981,7 +39142,7 @@ gg gj gl gx -bb +ar gY hv hP @@ -39037,7 +39198,7 @@ HJ Ih Jb JD -Kr +Gx KO Ll LM @@ -39171,7 +39332,7 @@ Bu Cs DM EL -Fi +Dm FQ FQ yT @@ -39189,11 +39350,11 @@ MK Iy ab NL -Np -NI -NI -NI -NY +PA +Qp +Qp +Qp +Qq NL vt vt @@ -39268,7 +39429,7 @@ aU aU aU ay -aH +cp bm bB by @@ -39317,7 +39478,7 @@ Ct Ct Gy yT -HL +EG Ij Jd JE @@ -39410,7 +39571,7 @@ aa bc bJ Ur -hQ +gX bm bm bm @@ -39444,7 +39605,7 @@ uY uY ww wY -xP +vY yG zA Av @@ -39608,7 +39769,7 @@ JF Kt KQ Lq -LS +HL Iy MK MK @@ -39867,7 +40028,7 @@ sq tr um uZ -uZ +xg wx xb xR @@ -39977,21 +40138,21 @@ cC cI df dm -dU cC cC cC -df +cC +mu dm cI cC cC cC -dU +cC dm lQ lV -mq +Px mq be es @@ -40037,7 +40198,7 @@ Lt LW My MM -Nk +Jk Nv NG NM @@ -40398,7 +40559,7 @@ aa aa aa be -bX +kS cE cK cK @@ -40416,7 +40577,7 @@ Zy WG dj XA -er +Et ms Oz be @@ -40437,7 +40598,7 @@ sq sq sq sq -xc +vv xS fF AH @@ -40540,7 +40701,7 @@ aa aa aa be -cp +bX cE cK cK @@ -40558,7 +40719,7 @@ UJ Xb dj XN -er +Et ms Xq be @@ -40597,7 +40758,7 @@ GS Hd HR IA -Jk +Fi JS Ky Fz @@ -40700,9 +40861,9 @@ iW WS dj XN -er +Et ms -Vb +Xq be os oV @@ -40983,7 +41144,7 @@ jZ WR Xo XN -er +Et cK ms Xq @@ -41005,7 +41166,7 @@ qr qr qr qr -xg +Qi xR yQ zF @@ -41141,7 +41302,7 @@ pX qs qY rJ -rJ +zb tu ur ve @@ -41413,7 +41574,7 @@ dj cK ms mq -Ox +Qb Ox Ox be @@ -41423,7 +41584,7 @@ iV px pt qr -qZ +yY rK sw sw @@ -41551,7 +41712,7 @@ ea kx dj XN -er +Et cK ms mq @@ -41575,10 +41736,10 @@ vW wD xk xY -yR +wL zJ zL -Tv +Ep Vl TU zL @@ -41708,7 +41869,7 @@ iV iV qr qr -rM +nG sy tx uu @@ -41836,9 +41997,9 @@ kQ TG dj XN -er +Et ms -nA +mq be oU RV @@ -41855,7 +42016,7 @@ sz ty uv vi -vY +rY wD xm ya @@ -41865,7 +42026,7 @@ AJ BM CD ZV -Ep +Qd zL Ee EY @@ -41960,7 +42121,7 @@ aa aa aa be -cp +bX cE cK cK @@ -41978,7 +42139,7 @@ kR Vd dj XN -er +Et ms QL be @@ -42003,7 +42164,7 @@ he ht hO zL -AK +xP BN CE Dv @@ -42102,7 +42263,7 @@ aa aa aa be -bX +kS cE cK cK @@ -42120,7 +42281,7 @@ ZE ZB dj XB -er +Et ms Sq be @@ -42140,7 +42301,7 @@ qu ux vj vj -wF +sE xn yb yU @@ -42293,7 +42454,7 @@ CG CD Es zK -Gc +Cg GJ Hy Mc @@ -42533,21 +42694,21 @@ cC dc dl dH -em +bL Wk Wk Wk -Yi +Nk VI YQ SK Wk Wk -XR +Wk VI YQ lW -mu +PZ nB Ro PP @@ -42561,7 +42722,7 @@ sH wb wJ xq -sE +pl tA uA vk @@ -42572,17 +42733,17 @@ ya yX zO SD -BQ +Qg CI Dx -Et Fk Gd GK +Qh HA Mg -IU -nh +EF +oK zO ab ab @@ -42711,7 +42872,7 @@ vZ vZ xo yc -yY +NQ zO AP BR @@ -42832,7 +42993,7 @@ Pk RA RA RG -RL +Qm Ry RR Ss @@ -42965,7 +43126,7 @@ eI fp mT dx -Rx +nh dV fy fy @@ -42995,7 +43156,7 @@ Ev Fl FE GI -GN +xc HC In Io @@ -43110,7 +43271,7 @@ dV Rx fy fy -kS +du fy fy RI @@ -43279,7 +43440,7 @@ wc sJ xs yg -zb +Qc qu AT BU @@ -43412,7 +43573,7 @@ gJ gJ qu qu -rY +qZ rX sJ sJ @@ -43533,7 +43694,7 @@ gK gK eI fy -hR +em jt kl kX @@ -43708,15 +43869,15 @@ qu qu qu AW -BU +OY CO DC Ey -Fm +BL Ge GP HF -HF +Qe IY zO ab @@ -43829,7 +43990,7 @@ mZ Nw Pe QI -QZ +Pr fP gJ gJ @@ -43965,7 +44126,7 @@ jD lk jD lN -lU +fU fy na qa @@ -44530,7 +44691,7 @@ aa aa fy fy -kS +kK fy fy ab diff --git a/maps/tether/tether-09-solars.dmm b/maps/tether/tether-09-solars.dmm index 09d6f78bbb..1492f503ae 100644 --- a/maps/tether/tether-09-solars.dmm +++ b/maps/tether/tether-09-solars.dmm @@ -334,10 +334,17 @@ /turf/simulated/floor/virgo3b, /area/tether/outpost/solars_outside) "aK" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Solar Farm Output"; + name_tag = "Solar Farm Output" + }, /turf/simulated/floor/virgo3b, /area/tether/outpost/solars_outside) "aL" = ( @@ -382,28 +389,10 @@ /turf/simulated/floor/virgo3b_indoors, /area/tether/outpost/solars_shed) "aP" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/landmark{ + name = "bluespacerift" }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Solar Farm Input"; - name_tag = "Solar Farm Input" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/virgo3b, -/area/tether/outpost/solars_outside) -"aQ" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Solar Farm Output"; - name_tag = "Solar Farm Output" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/virgo3b, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/tether/outpost/solars_outside) "aR" = ( /obj/effect/decal/cleanable/dirt, @@ -513,6 +502,14 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Solar Farm Input"; + name_tag = "Solar Farm Input" + }, /turf/simulated/floor/virgo3b, /area/tether/outpost/solars_outside) "bd" = ( @@ -18860,7 +18857,7 @@ ad ad at aI -aP +aW aW bc bf @@ -20564,7 +20561,7 @@ ad ad ad aK -aQ +aX aX bl bn @@ -24016,7 +24013,7 @@ ad ad ad ad -ad +aP ad ad ad diff --git a/maps/tether/tether-10-colony.dmm b/maps/tether/tether-10-colony.dmm index 8b29e3ea3f..e27ea01c40 100644 --- a/maps/tether/tether-10-colony.dmm +++ b/maps/tether/tether-10-colony.dmm @@ -2,9 +2,6 @@ "aa" = ( /turf/unsimulated/wall/planetary/virgo3b, /area/space) -"ab" = ( -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) "ac" = ( /turf/unsimulated/mineral/virgo3b, /area/space) @@ -12,26 +9,31 @@ /turf/unsimulated/wall/planetary/virgo3b, /area/centcom/specops) "ae" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_l"; - dir = 8 +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" }, -/turf/unsimulated/floor/shuttle_ceiling, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/specialops/centcom) +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) "af" = ( /turf/simulated/shuttle/wall/dark{ join_group = "shuttle_ert" }, /area/shuttle/specialops/centcom) "ag" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion"; - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/turf/unsimulated/floor/shuttle_ceiling, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/specialops/centcom) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "ah" = ( /turf/unsimulated/wall, /area/centcom/specops) @@ -264,11 +266,11 @@ /obj/item/weapon/shield/energy, /obj/item/weapon/shield/energy, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/window/reinforced{ dir = 1 @@ -524,13 +526,21 @@ }, /area/shuttle/specialops/centcom) "aV" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_r"; +/obj/machinery/door/window/survival_pod{ dir = 8 }, -/turf/unsimulated/floor/shuttle_ceiling, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/specialops/centcom) +/obj/machinery/shower{ + dir = 8; + icon_state = "shower"; + pixel_x = 2; + pixel_y = 0 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/mothership/bathroom2) "aW" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/black_vest, @@ -693,6 +703,32 @@ join_group = "shuttle_ert" }, /area/shuttle/specialops/centcom) +"bi" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/wrench, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"bj" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) "bk" = ( /obj/machinery/iv_drip, /turf/unsimulated/floor{ @@ -886,6 +922,20 @@ icon_state = "dark" }, /area/centcom/specops) +"by" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/mothership/dorm5) "bz" = ( /obj/structure/table/rack, /obj/item/weapon/rig/ert/assetprotection, @@ -1051,6 +1101,29 @@ icon_state = "wood" }, /area/centcom/specops) +"bN" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4; + icon_state = "map" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) "bO" = ( /obj/structure/sign/nanotrasen, /turf/unsimulated/wall, @@ -1599,6 +1672,25 @@ icon_state = "dark" }, /area/centcom/specops) +"cJ" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/telecomms1) +"cK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"cL" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) "cM" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/industrial/outline/blue, @@ -1651,6 +1743,32 @@ icon_state = "dark" }, /area/centcom/specops) +"cR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"cS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"cT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + icon_state = "intact"; + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) "cU" = ( /obj/structure/table/steel_reinforced, /obj/item/clothing/gloves/yellow, @@ -3210,6 +3328,19 @@ icon_state = "dark" }, /area/tdome/tdomeobserve) +"fP" = ( +/obj/machinery/door/blast/regular{ + id = "ship-mechbay-inner"; + name = "Mech Bay" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) "fQ" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/green, @@ -3368,6 +3499,31 @@ name = "plating" }, /area/centcom/control) +"gh" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"gi" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = -29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"gj" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/computer/HolodeckControl/holodorm/warship, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) "gk" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, @@ -3375,7 +3531,7 @@ /obj/item/clothing/suit/armor/tdome/red, /obj/item/clothing/head/helmet/thunderdome, /obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword/red, /turf/unsimulated/floor{ icon_state = "vault"; dir = 5 @@ -3426,7 +3582,7 @@ /obj/item/clothing/suit/armor/tdome/green, /obj/item/clothing/head/helmet/thunderdome, /obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword/green, /turf/unsimulated/floor{ icon_state = "vault"; dir = 5 @@ -3477,48 +3633,93 @@ }, /turf/unsimulated/floor/steel, /area/centcom/control) +"gw" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) "gx" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/table/woodentable, +/obj/item/weapon/book/codex, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) "gy" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/railing{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) "gz" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/railing{ - dir = 1 +/obj/item/device/defib_kit/jumper_kit, +/obj/structure/table/steel_reinforced, +/obj/item/device/robotanalyzer, +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) "gA" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"gB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-lounge"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/railing{ - dir = 1 +/turf/simulated/floor/plating, +/area/mothership/breakroom) +"gC" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"gB" = ( -/obj/structure/railing{ - dir = 1 +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) "gD" = ( /obj/machinery/recharger{ pixel_y = 4 @@ -3680,14 +3881,11 @@ /turf/unsimulated/floor/steel, /area/centcom/control) "gX" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" }, -/obj/structure/railing{ - dir = 8 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/area/mothership/hydroponics) "gY" = ( /turf/unsimulated/floor/steel, /area/shuttle/large_escape_pod2/centcom{ @@ -3878,19 +4076,6 @@ /obj/structure/filingcabinet/filingcabinet, /turf/unsimulated/floor/steel, /area/centcom/control) -"hx" = ( -/obj/machinery/button/remote/blast_door{ - id = "ArmouryC5"; - name = "Armoury Access"; - pixel_x = 0; - pixel_y = -28; - req_access = list(3) - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/centcom/control) "hy" = ( /obj/machinery/button/remote/blast_door{ id = "ArmouryC4"; @@ -4054,6 +4239,16 @@ }, /turf/unsimulated/floor/steel, /area/centcom/evac) +"hP" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) "hQ" = ( /obj/machinery/door/airlock/centcom{ name = "General Access"; @@ -4111,15 +4306,11 @@ /turf/unsimulated/wall/planetary/virgo3b, /area/centcom/security) "hY" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 +/obj/effect/floor_decal/techfloor{ + dir = 1 }, -/obj/structure/railing{ - dir = 8 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) "hZ" = ( /obj/effect/floor_decal/corner_steel_grid/diagonal, /turf/unsimulated/floor/steel, @@ -4325,11 +4516,11 @@ /obj/item/weapon/shield/energy, /obj/item/weapon/shield/energy, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, -/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, /turf/unsimulated/floor{ icon_state = "vault"; dir = 5 @@ -4449,12 +4640,11 @@ /turf/unsimulated/floor/steel, /area/centcom/evac) "iA" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 +/obj/item/modular_computer/console/preset/ert{ + dir = 4 }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) "iB" = ( /obj/machinery/door/blast/regular{ id = "thunderdomehea"; @@ -4484,16 +4674,10 @@ }, /area/centcom/security) "iE" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) "iF" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 @@ -4501,61 +4685,49 @@ /turf/unsimulated/floor/steel, /area/centcom/evac) "iG" = ( -/obj/effect/floor_decal/derelict/d9, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm2) "iH" = ( -/obj/effect/floor_decal/derelict/d10, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) "iI" = ( -/obj/effect/floor_decal/derelict/d11, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) "iJ" = ( -/obj/effect/floor_decal/derelict/d12, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/mothership/telecomms1) "iK" = ( -/obj/effect/floor_decal/derelict/d13, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) "iL" = ( -/obj/effect/floor_decal/derelict/d14, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +/obj/machinery/light{ + dir = 4 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "iM" = ( -/obj/effect/floor_decal/derelict/d15, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "iN" = ( -/obj/effect/floor_decal/derelict/d16, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) "iO" = ( /obj/effect/floor_decal/rust, /obj/effect/floor_decal/industrial/warning/dust{ @@ -4569,21 +4741,27 @@ }, /turf/unsimulated/floor/steel, /area/centcom/evac) -"iQ" = ( -/obj/machinery/light/spot{ +"iR" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/gloves, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"iS" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"iR" = ( -/obj/effect/floor_decal/rust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"iS" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "iT" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/red, @@ -4812,58 +4990,63 @@ }, /area/centcom/security) "jk" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/obj/structure/railing{ - dir = 8 +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "jl" = ( /obj/effect/floor_decal/rust/steel_decals_rusted2, /obj/effect/floor_decal/industrial/warning/dust, /turf/unsimulated/floor/steel, /area/centcom/evac) -"jm" = ( -/obj/effect/floor_decal/derelict/d1, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) "jn" = ( -/obj/effect/floor_decal/derelict/d2, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) "jo" = ( -/obj/effect/floor_decal/derelict/d3, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm3) "jp" = ( -/obj/effect/floor_decal/derelict/d4, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/door/airlock/multi_tile/metal, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "jq" = ( -/obj/effect/floor_decal/derelict/d5, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"jr" = ( -/obj/effect/floor_decal/derelict/d6, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"js" = ( -/obj/effect/floor_decal/derelict/d7, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/cryotube) "jt" = ( -/obj/effect/floor_decal/derelict/d8, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) "ju" = ( /obj/effect/floor_decal/industrial/warning/dust, /turf/unsimulated/floor/steel, @@ -4894,13 +5077,6 @@ /area/shuttle/large_escape_pod1/centcom{ base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b }) -"jz" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) "jA" = ( /obj/structure/table/rack, /obj/effect/floor_decal/industrial/outline/yellow, @@ -5694,9 +5870,11 @@ /turf/unsimulated/floor/steel, /area/centcom/security) "kP" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/computer/prisoner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) "kQ" = ( /obj/machinery/door/airlock/glass_medical{ name = "Virology Laboratory" @@ -5889,53 +6067,55 @@ /turf/unsimulated/floor/steel, /area/centcom/security) "li" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ +/obj/machinery/computer/station_alert/all{ + dir = 8; + icon_state = "computer" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"lj" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"lk" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"ll" = ( +/obj/machinery/atmospherics/pipe/tank/air{ dir = 4 }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"lj" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/railing, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"lk" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/structure/railing, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"ll" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/railing, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) "lm" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 }, -/obj/structure/railing, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/wood, +/area/mothership/dorm1) "ln" = ( -/obj/structure/railing, -/obj/machinery/light/flamp/noshade, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/telecomms1) "lo" = ( /obj/item/weapon/stool/padded, /turf/unsimulated/floor/steel{ @@ -6194,6 +6374,38 @@ }, /turf/unsimulated/floor/steel, /area/centcom/security) +"lE" = ( +/obj/machinery/cryopod/robot, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"lF" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"lG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) "lH" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/borderfloorwhite{ @@ -6844,9 +7056,9 @@ /turf/unsimulated/wall, /area/centcom/evac) "mR" = ( -/obj/machinery/door/airlock/glass_external, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) "mS" = ( /obj/machinery/shower{ dir = 4; @@ -7037,40 +7249,36 @@ /turf/unsimulated/floor/steel, /area/centcom/security) "nk" = ( -/obj/structure/table/reinforced, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/item/roller{ - pixel_y = 16 +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) -"nl" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/obj/effect/floor_decal/corner_steel_grid/diagonal{ - dir = 4 - }, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "nm" = ( /turf/unsimulated/floor/steel, /area/centcom/evac) "nn" = ( -/obj/structure/grille, -/obj/structure/railing{ - dir = 8 +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/centcom/evac) +/obj/item/weapon/pen/multi, +/obj/item/weapon/folder/yellow_ce, +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) "no" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) "np" = ( /obj/structure/sink{ icon_state = "sink"; @@ -7344,9 +7552,14 @@ /turf/unsimulated/floor/steel, /area/centcom/security) "nO" = ( -/obj/structure/sign/warning/caution, -/turf/unsimulated/wall, -/area/centcom/evac) +/obj/item/clothing/suit/space/void/medical/alt, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "nP" = ( /obj/structure/table/standard, /obj/item/weapon/surgical/hemostat, @@ -7454,33 +7667,11 @@ }, /area/centcom/medical) "nW" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = -4; - pixel_y = 8 +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/space) +/area/mothership/bathroom1) "nX" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -7984,9 +8175,11 @@ /turf/unsimulated/floor/steel, /area/centcom/security) "oN" = ( -/obj/structure/table/reinforced, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/obj/machinery/computer/transhuman/resleeving{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) "oO" = ( /obj/structure/table/standard, /obj/item/weapon/surgical/bonesetter, @@ -8163,12 +8356,20 @@ /turf/unsimulated/floor/steel, /area/centcom/holding) "ph" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/area/centcom/evac) +/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, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "pi" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -9355,9 +9556,11 @@ /turf/unsimulated/wall, /area/centcom/terminal) "ro" = ( -/obj/machinery/door/blast/regular, -/turf/unsimulated/floor/techfloor_grid, -/area/centcom/terminal) +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) "rp" = ( /obj/structure/sign/warning{ name = "\improper STAND AWAY FROM TRACK EDGE" @@ -9368,10 +9571,6 @@ /obj/structure/sign/warning/nosmoking_2, /turf/unsimulated/wall, /area/centcom/terminal) -"rr" = ( -/obj/machinery/door/airlock/glass_external, -/turf/unsimulated/floor/steel, -/area/centcom/terminal) "rs" = ( /turf/unsimulated/wall, /area/centcom/terminal) @@ -10242,8 +10441,7 @@ req_one_access = list(101) }, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /turf/unsimulated/floor/steel, /area/centcom/security) @@ -10399,8 +10597,7 @@ dir = 8 }, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /turf/unsimulated/floor/steel, /area/centcom/security) @@ -10681,8 +10878,7 @@ dir = 10 }, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/structure/window/reinforced, /turf/unsimulated/floor/steel, @@ -10741,9 +10937,9 @@ base_turf = /turf/unsimulated/floor/techfloor_grid }) "uc" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/unsimulated/floor/steel, -/area/centcom/main_hall) +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) "ud" = ( /obj/effect/wingrille_spawn/reinforced/crescent, /turf/unsimulated/floor{ @@ -11161,7 +11357,7 @@ dir = 1 }, /turf/unsimulated/floor/steel, -/area/centcom/main_hall) +/area/centcom/terminal) "va" = ( /obj/machinery/cryopod/robot/door/dorms{ base_icon_state = "door_closed"; @@ -13759,8 +13955,7 @@ "yR" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/machinery/computer/skills, /obj/effect/floor_decal/borderfloorblack{ @@ -13983,8 +14178,7 @@ "zj" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -14210,8 +14404,7 @@ "zB" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/machinery/recharger{ pixel_y = 4 @@ -15284,8 +15477,7 @@ dir = 10 }, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /turf/unsimulated/floor{ icon_state = "vault"; @@ -15342,22 +15534,9 @@ name = "\improper CentCom Residential Security" }) "Bx" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/turf/unsimulated/floor{ - icon_state = "vault"; - dir = 5 - }, -/area/centcom/security{ - name = "\improper CentCom Residential Security" - }) +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) "By" = ( /obj/machinery/porta_turret/crescent{ density = 1 @@ -15417,8 +15596,7 @@ dir = 1 }, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/machinery/door/blast/regular{ density = 0; @@ -15626,8 +15804,7 @@ /area/centcom/living) "BS" = ( /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -15892,8 +16069,7 @@ }, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 + dir = 8 }, /obj/machinery/door/blast/regular{ density = 0; @@ -15973,34 +16149,30 @@ /turf/unsimulated/floor/steel, /area/centcom/command) "CC" = ( -/obj/machinery/telecomms/receiver/preset_cent, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/area/centcom/command) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "CD" = ( -/obj/machinery/telecomms/bus/preset_cent, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/machinery/door/blast/regular{ + id = "ship-mechbay-inner"; + name = "Mech Bay" }, -/area/centcom/command) -"CE" = ( -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) -"CF" = ( -/obj/machinery/telecomms/processor/preset_cent, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) "CG" = ( -/obj/machinery/telecomms/server/presets/centcomm, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 4 }, -/area/centcom/command) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) "CH" = ( /obj/machinery/computer/card{ dir = 4 @@ -16292,19 +16464,19 @@ /turf/unsimulated/floor/steel, /area/centcom/command) "CZ" = ( -/obj/machinery/door/airlock/security{ - name = "Security" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "Da" = ( -/obj/structure/toilet, -/turf/unsimulated/floor{ - icon_state = "freezer" +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" }, -/area/centcom/bathroom) +/area/mothership/bridge) "Db" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/corner/blue/border, @@ -16376,160 +16548,152 @@ /turf/unsimulated/floor/steel, /area/centcom/command) "Di" = ( -/obj/machinery/telecomms/relay/preset/centcom, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 }, -/area/centcom/command) -"Dj" = ( -/obj/machinery/telecomms/broadcaster/preset_cent, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 }, -/area/centcom/command) -"Dk" = ( -/obj/machinery/telecomms/hub/preset_cent, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) -"Dl" = ( -/obj/machinery/computer/rdservercontrol{ - badmin = 1; - dir = 1; - name = "Master RnD Server Controller" - }, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "Dm" = ( -/obj/machinery/r_n_d/server/centcom, -/turf/unsimulated/floor{ - icon_state = "steel" - }, -/area/centcom/command) -"Dn" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) -"Do" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) -"Dp" = ( -/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 - }, -/turf/unsimulated/floor/steel, -/area/centcom/living) -"Dq" = ( -/obj/machinery/computer/cryopod/dorms{ - name = "Company Property Retention System"; - pixel_y = -28 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/unsimulated/floor/steel, -/area/centcom/living) -"Dr" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Dn" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Do" = ( +/obj/machinery/atmospherics/portables_connector{ dir = 8 }, -/turf/unsimulated/floor/steel, -/area/centcom/living) +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Dp" = ( +/obj/machinery/account_database{ + name = "CentComm Accounts database" + }, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"Dq" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"Dr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) "Ds" = ( -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "Dt" = ( -/obj/structure/closet/crate/bin, -/turf/unsimulated/floor{ - icon_state = "freezer" +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" }, -/area/centcom/bathroom) +/area/mothership/security) "Du" = ( -/obj/machinery/door/airlock{ - name = "Sitting Restrooms" +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) }, -/turf/unsimulated/floor{ - icon_state = "freezer" +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/area/centcom/living) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "Dv" = ( -/obj/machinery/door/airlock{ - name = "Standing Restrooms" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/unsimulated/floor{ - icon_state = "freezer" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/area/centcom/living) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) "Dw" = ( -/obj/structure/urinal{ - pixel_y = 30 +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/turf/unsimulated/floor{ - icon_state = "freezer" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/area/centcom/bathroom) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) "Dx" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r"; + dir = 8 }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32; - pixel_y = 0 - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) +/turf/unsimulated/floor/shuttle_ceiling, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/specialops/centcom) "Dy" = ( -/obj/machinery/camera/network/crescent, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) +/obj/structure/closet/secure_closet/sar, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) "Dz" = ( -/obj/structure/sink{ +/obj/machinery/atmospherics/trinary/atmos_filter{ dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 + filter_type = 3; + filtered_out = list("carbon_dioxide") }, -/obj/structure/mirror{ - pixel_x = 29 - }, -/turf/unsimulated/floor{ - icon_state = "freezer" - }, -/area/centcom/bathroom) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) "DA" = ( -/turf/unsimulated/wall/planetary/virgo3b, -/area/centcom/bathroom) +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(101) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) "DB" = ( /obj/effect/landmark{ name = "Commando" @@ -16546,12 +16710,176 @@ icon_state = "white" }, /area/centcom/medical) -"DR" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 +"DD" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"DE" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"DF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"DG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"DH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"DI" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm3) +"DJ" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"DK" = ( +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/phoron, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"DL" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"DM" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"DN" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell M1" + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"DP" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"DQ" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"DR" = ( +/obj/machinery/ntnet_relay, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"DS" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"DT" = ( +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/plasmacutter, +/obj/item/rig_module/device/plasmacutter, +/obj/item/rig_module/device/orescanner, +/obj/item/rig_module/device/orescanner, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"DU" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"DV" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"DW" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"DX" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"DY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"DZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) "Ea" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/firstaid/clotting, @@ -16561,12 +16889,158 @@ dir = 5 }, /area/centcom/specops) -"Ei" = ( -/obj/effect/floor_decal/corner_steel_grid{ +"Eb" = ( +/obj/item/modular_computer/telescreen/preset/generic{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Ec" = ( +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ed" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ee" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 5 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"Eg" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/westleft, +/obj/machinery/door/window/eastright, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/chemistry) +"Eh" = ( +/obj/machinery/vending/robotics, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Ei" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"Ej" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"Ek" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"El" = ( +/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/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Em" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"En" = ( +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Eo" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/midpoint, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"Ep" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Er" = ( +/obj/machinery/shower{ + dir = 4; + icon_state = "shower"; + pixel_x = 2; + pixel_y = 0 + }, +/obj/machinery/door/window/survival_pod, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/floor/tiled/white, +/area/mothership/bathroom1) +"Es" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm4) +"Et" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Eu" = ( +/obj/machinery/disposal, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ev" = ( +/obj/effect/floor_decal/derelict/d5, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ew" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Ex" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm4) +"Ey" = ( +/obj/machinery/iv_drip, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) "Ez" = ( /obj/structure/table/reinforced, /obj/item/weapon/cell/hyper, @@ -16585,6 +17059,77 @@ icon_state = "dark" }, /area/centcom/specops) +"EA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"EB" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"EC" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/stamp/ward, +/obj/item/weapon/stamp/denied{ + pixel_x = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"ED" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"EE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"EF" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"EG" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) "EI" = ( /obj/structure/table/rack, /obj/item/weapon/gun/launcher/rocket, @@ -16601,12 +17146,265 @@ icon_state = "dark" }, /area/centcom/specops) +"EJ" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"EK" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/base_low, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"EL" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"EM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"EN" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"EO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"EP" = ( +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"EQ" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"ES" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"EU" = ( +/obj/structure/closet/crate/secure/gear{ + req_one_access = list(108) + }, +/obj/item/rig_module/chem_dispenser/injector/advanced, +/obj/item/rig_module/vision/multi, +/obj/item/weapon/rig/military/equipped, +/obj/item/weapon/rig/pmc/commander, +/obj/item/weapon/rig/pmc/medical, +/obj/item/weapon/rig/pmc/engineer, +/obj/item/weapon/rig/pmc/security, +/obj/item/weapon/rig/pmc/security, +/obj/item/weapon/rig/light/ninja, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"EV" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"EW" = ( +/obj/structure/closet/excavation, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"EY" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2; + req_one_access = list(1) + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Fa" = ( +/obj/structure/prop/blackbox, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Fb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Fc" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm3) +"Fd" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm4-door"; + name = "Dorm 4 Lock"; + pixel_x = -6; + pixel_y = 26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"Fe" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm1) +"Ff" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/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/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Fg" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Fh" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Fi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "Fj" = ( /obj/machinery/power/emitter, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) +"Fk" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"Fl" = ( +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Fm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Fn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) "Fo" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/box/survival/comp{ @@ -16631,6 +17429,147 @@ icon_state = "dark" }, /area/centcom/specops) +"Fp" = ( +/obj/effect/floor_decal/derelict/d6, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Fq" = ( +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Fr" = ( +/obj/machinery/gear_painter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"Fs" = ( +/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/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Ft" = ( +/obj/machinery/computer/supplycomp{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Fu" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Fv" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Fw" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Fx" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/teleporter) +"Fy" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"Fz" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"FA" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"FB" = ( +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"FC" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"FD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"FE" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"FF" = ( +/obj/machinery/door_timer/cell_2{ + id = "Cell M2"; + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"FH" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/breakroom) +"FK" = ( +/obj/item/device/holowarrant, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) "FL" = ( /obj/structure/table/rack, /obj/item/clothing/accessory/storage/brown_vest, @@ -16649,6 +17588,188 @@ icon_state = "dark" }, /area/centcom/control) +"FM" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"FN" = ( +/obj/machinery/teleport/station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"FO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"FP" = ( +/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/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"FR" = ( +/obj/machinery/power/smes/buildable{ + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 1e+006; + output_level = 1e+006; + RCon = 0 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"FS" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"FT" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"FU" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/surgery) +"FV" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"FW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"FX" = ( +/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/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"FZ" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm5) +"Ga" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Gb" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Gc" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Gd" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"Ge" = ( +/obj/machinery/seed_storage/xenobotany, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Gf" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Gg" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Gh" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"Gi" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Gk" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Gl" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) "Gm" = ( /obj/structure/table/rack, /obj/item/weapon/rig/ert/engineer, @@ -16658,6 +17779,143 @@ icon_state = "dark" }, /area/centcom/control) +"Gn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Go" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"Gp" = ( +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Gr" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Gs" = ( +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Gt" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-med-treatment"; + name = "Blast Doors Controls"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Gu" = ( +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(103) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Gv" = ( +/obj/machinery/atmospherics/trinary/atmos_filter{ + dir = 4; + filter_type = 4; + filtered_out = list("sleeping_agent") + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Gw" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Gx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Gy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"Gz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"GB" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/camera, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"GC" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/bathroom2) +"GD" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"GF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) "GG" = ( /obj/structure/table/rack, /obj/item/weapon/gun/launcher/grenade, @@ -16666,12 +17924,169 @@ icon_state = "dark" }, /area/centcom/specops) +"GI" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"GJ" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"GK" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) "GL" = ( /obj/machinery/pipedispenser/disposal/orderable, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) +"GM" = ( +/obj/machinery/computer/cryopod{ + pixel_y = -32 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"GN" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"GO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-med-surgery"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"GP" = ( +/obj/machinery/vending/engineering, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"GQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"GR" = ( +/obj/machinery/vending/loadout, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"GS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"GT" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"GU" = ( +/obj/structure/particle_accelerator/end_cap{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"GV" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/station_high, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"GW" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 4; + icon_state = "on"; + unlocked = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"GX" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"GY" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"GZ" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/closet/secure_closet/pathfinder, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Ha" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Hb" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Hc" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"Hd" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/sechallway) +"He" = ( +/obj/machinery/door/blast/regular{ + dir = 4 + }, +/turf/unsimulated/floor/techfloor_grid, +/area/centcom/terminal) "Hf" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/xray, @@ -16680,30 +18095,330 @@ icon_state = "dark" }, /area/centcom/specops) +"Hg" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Hh" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"Hi" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/teleporter) +"Hj" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"Hk" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"Hl" = ( +/obj/item/rig_module/mounted, +/obj/item/rig_module/mounted, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Hm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "Hn" = ( /obj/structure/reagent_dispensers/watertank, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"Hs" = ( -/obj/effect/floor_decal/corner_steel_grid{ +"Ho" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/button/remote/blast_door{ + id = "ship-lounge"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Hp" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/microwave, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Hq" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/unknown/dorm4) +"Hr" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"Ht" = ( +/obj/effect/floor_decal/derelict/d13, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Hu" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) "Hv" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_mid, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 }, -/area/centcom/command) +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Hw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Hy" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Hz" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"HA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"HB" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"HC" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"HD" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"HE" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"HF" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"HG" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"HH" = ( +/obj/machinery/vending/loadout/gadget, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"HI" = ( +/obj/machinery/atmospherics/trinary/mixer{ + dir = 8; + node1_concentration = 0.21; + node2_concentration = 0.79 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"HJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) "HL" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/midpoint, -/turf/unsimulated/floor{ - icon_state = "steel" +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/area/centcom/command) +/obj/structure/cable/cyan{ + 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 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"HN" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = -29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"HO" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"HP" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"HQ" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 1; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/breakroom) +"HR" = ( +/obj/machinery/power/terminal{ + icon_state = "term"; + dir = 1 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"HS" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"HT" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) "HU" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/lasercannon, @@ -16712,6 +18427,23 @@ icon_state = "dark" }, /area/centcom/specops) +"HV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"HW" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"HX" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + icon_state = "door_closed"; + dir = 2 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) "HY" = ( /obj/structure/table/rack, /obj/item/clothing/suit/armor/swat, @@ -16753,30 +18485,1000 @@ icon_state = "dark" }, /area/centcom/specops) +"HZ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ia" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/holodeck) +"Ib" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Ic" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"Id" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"If" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Ig" = ( +/obj/structure/particle_accelerator/end_cap{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Ii" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Ij" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm5-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm5) +"Ik" = ( +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Il" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/warden) +"Im" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Io" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"Iq" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l"; + dir = 8 + }, +/turf/unsimulated/floor/shuttle_ceiling, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/specialops/centcom) +"Is" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell M2" + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"It" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Iu" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Iv" = ( +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/carbine, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/item/weapon/gun/energy/frontier/locked/holdout, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Iw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ix" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-med-treatment"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/treatment) +"Iy" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm2-door"; + name = "Dorm 2 Lock"; + pixel_x = -6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"IA" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"IB" = ( +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"ID" = ( +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"IE" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"IF" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"IG" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/sci_outpost, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) "IH" = ( /obj/machinery/shield_capacitor, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"JB" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_low, -/turf/unsimulated/floor{ - icon_state = "steel" +"II" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" }, -/area/centcom/command) +/area/mothership/telecomms2) +"IJ" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"IK" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"IM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/space) +"IN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"IO" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/mothership/telecomms2) +"IP" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"IQ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"IR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"IS" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) +"IT" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/breakroom) +"IV" = ( +/obj/item/rig_module/rescue_pharm, +/obj/item/rig_module/rescue_pharm, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/combat, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"IW" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm3-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm3) +"IX" = ( +/obj/item/clothing/suit/armor/vest/ert/command, +/obj/item/clothing/head/helmet/ert/command, +/obj/item/weapon/storage/backpack/ert/commander, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"IY" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"IZ" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ja" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/telecomms2) +"Jb" = ( +/obj/machinery/door/airlock/multi_tile/metal/mait{ + dir = 2; + req_one_access = list(103) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + destroy_hits = 100; + id = "ship-armory"; + name = "Armory" + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-armory"; + name = "Blast Doors Controls"; + pixel_x = 0; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Jc" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/rnd) +"Jd" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"Je" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Jf" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Jg" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/morgue) +"Jh" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ji" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Jj" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/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/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"Jk" = ( +/obj/structure/prop/alien/computer{ + icon_state = "console-c"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Jl" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"Jm" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"Jo" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Jp" = ( +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Jq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-lounge"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/breakroom) +"Jr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Js" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"Jt" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"Ju" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Jv" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Jw" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/security) +"Jx" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"Jy" = ( +/obj/machinery/light, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"Jz" = ( +/obj/machinery/power/fractal_reactor/fluff/converter, +/obj/structure/cable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"JA" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) "JC" = ( /obj/machinery/power/thermoregulator, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"JW" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_low, -/turf/unsimulated/floor{ - icon_state = "steel" +"JD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 }, -/area/centcom/command) +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-warden"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/warden) +"JE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"JF" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unkfour" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"JG" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"JH" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/bathroom1) +"JJ" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"JK" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"JL" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"JM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"JN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/pillbottles, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"JO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"JP" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"JQ" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"JR" = ( +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"JS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"JT" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/sleeping_agent, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"JU" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"JV" = ( +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"JW" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"JX" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/voidcraft/vertical{ + id_tag = "ship-holodeck-door"; + opacity = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"JY" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"JZ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "Ka" = ( /obj/machinery/vending/nifsoft_shop{ categories = 111; @@ -16789,6 +19491,229 @@ dir = 5 }, /area/centcom/specops) +"Kb" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"Kc" = ( +/obj/structure/bed/chair/shuttle{ + icon_state = "shuttle_chair"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Kd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Ke" = ( +/obj/structure/closet{ + name = "mechanical equipment" + }, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/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/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/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/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/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/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 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Kf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Kh" = ( +/obj/item/clothing/suit/space/void/atmos, +/obj/item/clothing/head/helmet/space/void/atmos, +/obj/item/weapon/tank/oxygen/red, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Ki" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/kitchen) +"Kj" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Kk" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm6) +"Kl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"Km" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"Kn" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"Ko" = ( +/obj/machinery/mech_recharger, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"Kp" = ( +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + dir = 1; + name = "Master RnD Server Controller" + }, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Kq" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Kr" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ks" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Kt" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"Ku" = ( +/obj/effect/floor_decal/derelict/d1, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Kv" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) "Kw" = ( /obj/structure/table/reinforced, /obj/item/weapon/storage/firstaid/combat{ @@ -16801,12 +19726,311 @@ dir = 5 }, /area/centcom/specops) -"Lb" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_high, -/turf/unsimulated/floor{ - icon_state = "steel" +"Kx" = ( +/obj/machinery/door/airlock/security, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/area/centcom/command) +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"Ky" = ( +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Kz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"KA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"KB" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + icon_state = "map-supply"; + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KC" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/weapon/rcd, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rig/ce/equipped, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KD" = ( +/obj/machinery/door/airlock/engineeringatmos, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KE" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/obj/structure/window/reinforced/survival_pod, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"KF" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"KG" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Scan Records" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"KH" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/bridge) +"KI" = ( +/obj/machinery/button/remote/airlock{ + id = "ship-vault-door"; + name = "Vault Lock"; + pixel_x = -6; + pixel_y = -26; + req_one_access = list(108); + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"KK" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/unknown/dorm1) +"KL" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/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/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"KM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/computer/cryopod/dorms{ + name = "Company Property Retention System"; + pixel_x = -28; + pixel_y = 0 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"KN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"KP" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"KR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"KS" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"KT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/pipedispenser/orderable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KU" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/base_mid, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"KV" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/obj/item/clothing/accessory/storage/pouches/large/blue, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"KW" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"KX" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"KY" = ( +/obj/effect/floor_decal/derelict/d15, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"KZ" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"La" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored{ + dir = 8; + name = "Filter Bypass" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Lb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Lc" = ( +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/ce, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ld" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/medical) "Le" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/gun/burst, @@ -16815,31 +20039,449 @@ icon_state = "dark" }, /area/centcom/specops) +"Lf" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "Lg" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 9 - }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) "Lh" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal{ - dir = 4 +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 }, -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/unsimulated/floor/steel, -/area/centcom/evac) +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Li" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Lj" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Lk" = ( +/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/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Ll" = ( +/obj/structure/closet/secure_closet/detective, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Lm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Ln" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/resleeving) +"Lo" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Lp" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/medical) +"Lr" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Ls" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Lu" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"Lv" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm3-door"; + name = "Dorm 3 Lock"; + pixel_x = 6; + pixel_y = 26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"Lw" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/treatment) +"Lx" = ( +/obj/structure/closet/crate/secure/gear{ + req_one_access = list(108) + }, +/obj/item/device/subspaceradio, +/obj/item/weapon/storage/firstaid/insiderepair, +/obj/item/weapon/storage/firstaid/combat, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/item/weapon/storage/box/syndie_kit/demolitions_super_heavy{ + name = "Super Heavy Demolitions kit" + }, +/obj/item/weapon/storage/box/syndie_kit/demolitions_heavy{ + name = "Heavy Demolitions kit" + }, +/obj/item/weapon/storage/box/syndie_kit/demolitions_heavy{ + name = "Heavy Demolitions kit" + }, +/obj/item/weapon/storage/box/syndie_kit/demolitions_heavy{ + name = "Heavy Demolitions kit" + }, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/storage/box/emps{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/cell/device/weapon/recharge/alien, +/obj/item/weapon/material/knife/machete/deluxe{ + default_material = "durasteel" + }, +/obj/item/clothing/accessory/holster/machete, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Ly" = ( +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Lz" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"LA" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"LC" = ( +/obj/machinery/vending/loadout/loadout_misc, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) "LD" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) +"LE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-hydroponics"; + name = "Blast Doors Controls"; + pixel_x = 20; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"LG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"LI" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"LJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"LL" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"LM" = ( +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"LN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"LO" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"LP" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 2; + target_pressure = 200 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"LQ" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Centcom Autolathe" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"LR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 4; + icon_state = "pdoor0"; + id = "ship-lounge"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/mothership/breakroom) "LS" = ( /obj/machinery/shieldgen, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) +"LT" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"LV" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/warden) +"LW" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"LX" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"LY" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"LZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Ma" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Mb" = ( +/obj/machinery/cryopod, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"Mc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/voidcraft, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Md" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) "Me" = ( /obj/item/weapon/storage/firstaid/regular, /turf/unsimulated/floor{ @@ -16847,6 +20489,80 @@ icon_state = "dark" }, /area/centcom/control) +"Mf" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Mg" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"Mh" = ( +/obj/machinery/vending/food/arojoan{ + density = 0; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Mi" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"Mj" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/mothership/engineering) +"Mk" = ( +/obj/machinery/door/airlock/research, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Ml" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"Mm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/structure/closet/emcloset/legacy, +/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/space, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/box/syndie_kit/space, +/obj/item/weapon/storage/box/syndie_kit/space, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Mn" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"Mp" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"Mr" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Ms" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) "Mt" = ( /obj/structure/table/rack, /obj/item/weapon/extinguisher/mini, @@ -16858,12 +20574,383 @@ dir = 5 }, /area/centcom/specops) +"Mu" = ( +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Mv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/mothership/dorm1) "Mw" = ( /obj/machinery/shield_gen/external, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) +"My" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"MA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"MB" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"MC" = ( +/obj/structure/closet/secure_closet/RD, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"MD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"ME" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"MF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"MG" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/treatment) +"MI" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"MJ" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/surgery) +"MK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"ML" = ( +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"MM" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"MN" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"MO" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"MP" = ( +/obj/structure/closet/secure_closet/nanotrasen_commander, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hos, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"MQ" = ( +/obj/machinery/door/airlock/security, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"MS" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"MT" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"MU" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm6-door"; + name = "Dorm 6 Lock"; + pixel_x = -6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"MV" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/rnd) +"MW" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"MX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"MZ" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/reagentgrinder, +/obj/item/weapon/storage/box/beakers, +/obj/machinery/button/remote/blast_door{ + id = "ship-kitchen"; + name = "Blast Doors Controls"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Na" = ( +/obj/machinery/vending/loadout/overwear, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"Nb" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Nd" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ne" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Nf" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Ng" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Nh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"Ni" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Nj" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/defib_kit/compact/combat/loaded, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Nk" = ( +/obj/item/clothing/suit/space/void/exploration, +/obj/item/clothing/head/helmet/space/void/exploration, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Nl" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"Nm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Nn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"No" = ( +/obj/machinery/telecomms/hub/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Np" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Nq" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Nr" = ( +/obj/machinery/computer/transhuman{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Ns" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Nt" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"Nu" = ( +/obj/machinery/telecomms/processor/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Nv" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Nw" = ( +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) "Nx" = ( /obj/structure/table/rack, /obj/item/weapon/plastique, @@ -16878,13 +20965,230 @@ icon_state = "dark" }, /area/centcom/specops) -"NI" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal{ +"Nz" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"NA" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ship-mechbay"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"NB" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"NC" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/sechallway) +"ND" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"NE" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/westleft, +/obj/machinery/door/window/eastright, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"NF" = ( +/obj/machinery/status_display{ + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"NG" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"NI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"NJ" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"NK" = ( +/obj/machinery/computer/rdconsole/core, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"NL" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"NM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"NN" = ( +/obj/item/rig_module/vision/multi, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"NO" = ( +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"NP" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/cryotube) +"NQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"NR" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/evidence, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"NS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"NT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"NU" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"NV" = ( +/obj/machinery/door/airlock/security, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"NW" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"NX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"NY" = ( +/obj/machinery/chemical_dispenser/ert, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"Oa" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Ob" = ( +/obj/structure/cable/cyan{ + 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 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "Oc" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/blood/OMinus, @@ -16898,6 +21202,50 @@ dir = 5 }, /area/centcom/specops) +"Od" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Oe" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/gun/energy/modular/cannon, +/obj/item/weapon/gun/energy/modular/carbine, +/obj/item/weapon/gun/energy/modular/pistol, +/obj/item/weapon/gun/energy/medigun, +/obj/item/weapon/gun/energy/captain, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Of" = ( +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "Og" = ( /obj/structure/table/rack, /obj/item/weapon/gun/projectile/automatic/l6_saw, @@ -16914,21 +21262,1362 @@ icon_state = "dark" }, /area/centcom/specops) +"Oh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Oi" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Oj" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 1; + icon_state = "heater"; + use_power = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ok" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"Ol" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"Om" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"On" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + 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 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Oo" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Op" = ( +/obj/machinery/door/airlock/research, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Oq" = ( +/obj/machinery/telecomms/server/presets/centcomm, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Or" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm2-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm2) +"Os" = ( +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Ot" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ou" = ( +/obj/structure/particle_accelerator/power_box{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Ov" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Ow" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/warden) +"Ox" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Oy" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Oz" = ( +/obj/structure/cable/cyan{ + 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/white, +/area/mothership/resleeving) +"OA" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/vault/bolted{ + id_tag = "ship-vault-door"; + req_one_access = list(109) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + destroy_hits = 100; + id = "ship-vault"; + name = "Vault" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"OB" = ( +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + 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/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/steel_reinforced, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/rods, +/obj/item/stack/rods, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"OC" = ( +/obj/machinery/mech_recharger, +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) "OD" = ( /obj/machinery/power/port_gen/pacman, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) +"OE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-kitchen"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/kitchen) +"OF" = ( +/turf/space, +/area/space) +"OG" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"OH" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/processing) +"OI" = ( +/obj/effect/floor_decal/derelict/d9, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"OJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"OK" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 4; + id = "Cell M1"; + name = "Cell 1"; + req_access = list(2) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell1"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/mothership/sechallway) +"OL" = ( +/obj/machinery/door/airlock/security, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"OM" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ship-mechbay"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"ON" = ( +/obj/machinery/status_display{ + pixel_x = 32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"OO" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"OP" = ( +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"OQ" = ( +/obj/machinery/status_display{ + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"OR" = ( +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"OS" = ( +/obj/machinery/vending/blood, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"OT" = ( +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/sprinter, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"OU" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/engineering) +"OV" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"OW" = ( +/obj/machinery/cooker/fryer, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"OX" = ( +/obj/structure/sink/kitchen, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/hydroponics) +"OY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"OZ" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 0; + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Pa" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"Pb" = ( +/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/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Pc" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Pe" = ( +/obj/machinery/door_timer/cell_1{ + id = "Cell M1"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Pf" = ( +/obj/machinery/telecomms/relay/preset/centcom/underdark, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"Ph" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2; + req_one_access = list(5) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/treatment) +"Pi" = ( +/obj/machinery/door/blast/regular{ + dir = 1 + }, +/turf/unsimulated/floor/techfloor_grid, +/area/centcom/evac) +"Pj" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Pk" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"Pl" = ( +/obj/machinery/door/airlock/command{ + req_one_access = list(101) + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bridge) +"Pm" = ( +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/device/defib_kit/compact/combat/loaded, +/obj/item/device/defib_kit/compact/combat/loaded, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Pn" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"Po" = ( +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/tacknife/survival, +/obj/item/weapon/material/knife/machete, +/obj/item/weapon/material/knife/machete, +/obj/item/weapon/material/knife/machete, +/obj/item/clothing/accessory/holster/machete, +/obj/item/clothing/accessory/holster/machete, +/obj/item/clothing/accessory/holster/machete, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Pp" = ( +/obj/item/weapon/storage/firstaid/combat{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/combat, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Pq" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"Pr" = ( +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Ps" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Pt" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unktwo" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"Pu" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/retail_scanner/security, +/obj/item/device/retail_scanner/security, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 0; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Pv" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"Pw" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"Px" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"Pz" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/suit/armor/pcarrier/merc, +/obj/item/clothing/suit/armor/pcarrier/merc, +/obj/item/clothing/head/helmet/merc, +/obj/item/clothing/head/helmet/merc, +/obj/item/weapon/storage/box/syndie_kit/combat_armor, +/obj/item/weapon/storage/box/syndie_kit/combat_armor, +/obj/item/weapon/storage/box/syndie_kit/combat_armor, +/obj/item/weapon/storage/box/syndie_kit/combat_armor, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"PA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"PB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"PC" = ( +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/item/clothing/suit/armor/pcarrier/blue/sol, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"PD" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/resleeving) +"PE" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"PF" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm4-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm4) +"PG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"PH" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"PI" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/item/weapon/storage/box/survival/space, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"PJ" = ( +/obj/effect/floor_decal/corner_steel_grid/diagonal, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"PK" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"PL" = ( +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"PM" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"PN" = ( +/obj/structure/ladder, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"PO" = ( +/obj/machinery/cooker/oven, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) "PP" = ( /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"QB" = ( -/obj/machinery/washing_machine, +"PQ" = ( +/obj/structure/sink/kitchen, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/kitchen) +"PR" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"PS" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"PT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"PU" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"PV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-equip"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/security) +"PW" = ( +/obj/machinery/door/airlock/research, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"PX" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"PY" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 8 + }, +/turf/unsimulated/floor/shuttle_ceiling, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/specialops/centcom) +"PZ" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/surgery) +"Qa" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"Qc" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Qd" = ( +/obj/structure/closet/secure_closet/explorer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Qe" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unkone" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"Qf" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/robotics) +"Qg" = ( +/obj/machinery/button/remote/blast_door{ + id = "ship-vault"; + name = "Vault Blast Door Controls"; + pixel_y = 28; + req_one_access = list(108) + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Qh" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/breakroom) +"Qj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Qk" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"Ql" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, /turf/unsimulated/floor/steel, /area/centcom/evac) +"Qm" = ( +/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/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Qn" = ( +/obj/structure/particle_accelerator/end_cap{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Qo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Qp" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Qq" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Qs" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/security, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Qt" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Qu" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Qv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Qw" = ( +/obj/machinery/door/airlock/voidcraft/vertical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/cryotube) +"Qx" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Qy" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Qz" = ( +/obj/machinery/recharger, +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"QA" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"QB" = ( +/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{ + pixel_x = 0; + pixel_y = 0 + }, +/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 + }, +/obj/item/weapon/storage/box/body_record_disk, +/obj/item/weapon/storage/firstaid/insiderepair, +/obj/item/weapon/storage/firstaid/clotting, +/obj/item/weapon/storage/firstaid/bonemed, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"QC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"QD" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"QE" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"QF" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 0; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"QG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 4; + icon_state = "pdoor0"; + id = "ship-med-surgery"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/mothership/surgery) +"QH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"QI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"QJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"QK" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"QL" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doorext.dmi'; + icon_state = "door_locked"; + name = "Sealed Door" + }, +/area/mothership/eva) +"QN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"QO" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty/nitrogen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"QP" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) "QQ" = ( /obj/structure/table/rack, /obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, @@ -16937,6 +22626,77 @@ icon_state = "dark" }, /area/centcom/specops) +"QR" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"QS" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"QT" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"QU" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/hydroponics) +"QW" = ( +/obj/structure/closet/walllocker{ + name = "Janitor Locker"; + pixel_x = 32 + }, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/soap/deluxe, +/obj/item/weapon/soap, +/obj/item/weapon/rig/ert/janitor, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"QX" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"QY" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"QZ" = ( +/obj/effect/floor_decal/derelict/d12, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ra" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Rb" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm3) "Rc" = ( /obj/structure/table/glass, /obj/item/device/defib_kit/compact/loaded, @@ -16944,6 +22704,16 @@ icon_state = "white" }, /area/centcom/medical) +"Rd" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/armory) "Re" = ( /obj/structure/table/reinforced, /obj/item/device/binoculars, @@ -16953,12 +22723,200 @@ icon_state = "dark" }, /area/centcom/specops) -"Rx" = ( -/obj/machinery/telecomms/relay/preset/centcom/underdark, -/turf/unsimulated/floor{ - icon_state = "steel" +"Rf" = ( +/obj/structure/particle_accelerator/power_box{ + anchored = 1 }, -/area/centcom/command) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Rg" = ( +/obj/machinery/button/remote/airlock{ + id = "ship-holodeck-door"; + name = "Holodeck Lock"; + pixel_x = -26; + pixel_y = -6; + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "ship-holodeck"; + name = "Blast Door Controls"; + pixel_x = -28; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"Rh" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"Ri" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/armory) +"Rj" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Rk" = ( +/obj/machinery/vending/boozeomat{ + density = 0; + pixel_x = 0; + pixel_y = -32 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Rl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Rm" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ship-mechbay"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/button/remote/blast_door{ + id = "ship-mechbay"; + name = "Mech Bay Controls"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Rn" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ro" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/bathroom2) +"Rp" = ( +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Rq" = ( +/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, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Rr" = ( +/obj/machinery/telecomms/bus/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Rs" = ( +/obj/machinery/mech_recharger, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"Rt" = ( +/obj/machinery/light/spot, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ru" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Rv" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Rw" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"Rx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ry" = ( +/obj/machinery/door/airlock/command{ + req_one_access = list(101) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bridge) +"Rz" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/station_low, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"RA" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/plating, +/area/mothership/chemistry) +"RB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"RC" = ( +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact, +/obj/item/ammo_magazine/m9mm/compact/flash, +/obj/item/ammo_magazine/m9mm/compact/flash, +/obj/item/ammo_magazine/m9mm/compact/flash, +/obj/item/ammo_magazine/m9mm/compact/rubber, +/obj/item/ammo_magazine/m9mm/compact/rubber, +/obj/item/ammo_magazine/m9mm/compact/rubber, +/obj/item/ammo_magazine/m9mm/compact/practice, +/obj/item/ammo_magazine/m9mm/compact/practice, +/obj/item/ammo_magazine/m9mm/compact/practice, +/obj/item/weapon/gun/projectile/pistol, +/obj/item/weapon/gun/projectile/pistol, +/obj/item/weapon/gun/projectile/pistol, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "RD" = ( /obj/machinery/shield_capacitor, /turf/unsimulated/floor{ @@ -16976,6 +22934,69 @@ icon_state = "dark" }, /area/centcom/specops) +"RG" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/clothing/suit/space/void/merc/fire, +/obj/item/clothing/head/helmet/space/void/merc/fire, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/head/helmet/space/void/merc, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/head/helmet/space/void/merc, +/obj/item/clothing/suit/space/void/merc/odst, +/obj/item/clothing/head/helmet/space/void/merc/odst, +/obj/item/clothing/suit/space/void/security/fluff/hos, +/obj/item/clothing/head/helmet/space/void/security/fluff/hos, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/weapon/tank/vox, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"RH" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"RI" = ( +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) "RJ" = ( /obj/structure/table/rack, /obj/item/weapon/gun/projectile/automatic/z8, @@ -16994,22 +23015,398 @@ icon_state = "dark" }, /area/centcom/specops) +"RK" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"RL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"RM" = ( +/turf/simulated/shuttle/wall/alien, +/area/unknown/dorm3) "RN" = ( -/obj/effect/floor_decal/corner_steel_grid, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"RO" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC5"; + name = "Armoury" + }, +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC5"; + name = "Armoury Access"; + pixel_x = 0; + pixel_y = -28; + req_access = list(101) + }, +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/centcom/control) +"RP" = ( +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"RQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"RR" = ( +/turf/simulated/shuttle/wall/alien, +/area/unknown/dorm2) +"RS" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"RT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"RU" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"RV" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"RW" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"RX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) "RY" = ( /obj/structure/reagent_dispensers/fueltank, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"Sp" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/station_high, -/turf/unsimulated/floor{ - icon_state = "steel" +"RZ" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Sa" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/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/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"Sb" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Sc" = ( +/obj/machinery/atm{ + pixel_x = 0; + pixel_y = 26 }, -/area/centcom/command) +/turf/unsimulated/floor{ + icon_state = "vault"; + dir = 5 + }, +/area/centcom/specops) +"Sd" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/gun/energy/protector, +/obj/item/weapon/gun/energy/protector, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Sf" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/kitchen) +"Sg" = ( +/obj/machinery/computer/cryopod/robot{ + dir = 1; + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"Sh" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/eva) +"Si" = ( +/obj/effect/floor_decal/derelict/d14, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Sj" = ( +/obj/effect/floor_decal/derelict/d10, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Sk" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Sl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Sm" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Sn" = ( +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"So" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Sq" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Sr" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Ss" = ( +/obj/machinery/r_n_d/protolathe, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Su" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/base_high, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"Sv" = ( +/obj/effect/floor_decal/derelict/d11, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Sw" = ( +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/hallway) +"Sx" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Sz" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"SA" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm4) +"SB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-holodeck"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/mothership/holodeck) +"SC" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"SE" = ( +/obj/machinery/vending/sovietsoda, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"SF" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unkthree" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"SG" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/machinery/button/remote/blast_door{ + id = "ship-sec-equip"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"SI" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"SJ" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/empslite, +/obj/item/weapon/storage/box/empslite, +/obj/item/weapon/storage/box/smokes, +/obj/item/weapon/storage/box/smokes, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/gun/launcher/grenade, +/obj/item/weapon/gun/launcher/grenade, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"SK" = ( +/obj/machinery/door/airlock/multi_tile/metal, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"SN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"SO" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm2) "SP" = ( /obj/structure/table/rack, /obj/item/bodybag/cryobag, @@ -17023,6 +23420,253 @@ dir = 5 }, /area/centcom/specops) +"SQ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/mothership/engineering) +"SR" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"SS" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"ST" = ( +/obj/machinery/pros_fabricator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"SU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"SV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"SW" = ( +/obj/machinery/cooker/grill, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"SX" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"SY" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"SZ" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Ta" = ( +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/flash, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/structure/closet/secure_closet/guncabinet{ + req_one_access = list(103) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Tb" = ( +/obj/machinery/button/remote/blast_door{ + id = "ship-med-equip"; + name = "Blast Doors Controls"; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Td" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Te" = ( +/obj/structure/table/steel_reinforced, +/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/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Tf" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"Tg" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm2) +"Th" = ( +/obj/machinery/atmospherics/trinary/atmos_filter{ + dir = 4; + filter_type = 0; + filtered_out = list("phoron") + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ti" = ( +/obj/machinery/r_n_d/server/centcom, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Tk" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Tl" = ( +/obj/machinery/oxygen_pump/anesthetic, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/surgery) +"Tm" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"Tn" = ( +/obj/machinery/cooker/cereal, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"To" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Tp" = ( +/obj/effect/floor_decal/derelict/d3, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Tq" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/holodeck) +"Tr" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Ts" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"Tt" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Tu" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Tv" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) "Tx" = ( /obj/machinery/autolathe{ desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; @@ -17033,18 +23677,544 @@ icon_state = "dark" }, /area/centcom/specops) +"Ty" = ( +/obj/machinery/vending/cart, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Tz" = ( +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + ammo_type = /obj/item/ammo_casing/a12g/beanbag; + desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; + name = "warden's shotgun" + }, +/obj/item/weapon/book/manual/security_space_law, +/obj/structure/closet/secure_closet/nanotrasen_warden, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"TA" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm6-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm6) +"TB" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"TC" = ( +/obj/effect/floor_decal/derelict/d4, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"TD" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/unknown/dorm2) +"TE" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/tool/wrench, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"TF" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/gun/projectile/automatic/l6_saw, +/obj/item/weapon/gun/projectile/automatic/l6_saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"TH" = ( +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"TI" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"TJ" = ( +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"TK" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"TL" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"TM" = ( +/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/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"TN" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"TO" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"TP" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/chemistry) +"TQ" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"TR" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"TS" = ( +/obj/structure/dispenser/oxygen{ + oxygentanks = 40 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"TT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"TV" = ( +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) "TW" = ( /obj/machinery/shield_gen, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"Uh" = ( -/obj/effect/floor_decal/corner_steel_grid{ +"TX" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/armory) +"TY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"TZ" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Ua" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ub" = ( +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Uc" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Ud" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/space) +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Ue" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Uf" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "ship-sec-cell1"; + name = "Cell 1 Blast Doors"; + pixel_x = 28; + pixel_y = 6; + req_one_access = list(2) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "ship-sec-cell2"; + name = "Cell 2 Blast Doors"; + pixel_x = 28; + pixel_y = -6; + req_one_access = list(2) + }, +/obj/machinery/button/remote/blast_door{ + id = "ship-sec-warden"; + name = "Blast Doors Controls"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"Ug" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Uh" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"Ui" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/medical) +"Uj" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Uk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"Ul" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/power/thermoregulator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Um" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Un" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Uo" = ( +/obj/item/rig_module/grenade_launcher/smoke, +/obj/item/rig_module/grenade_launcher/cleaner, +/obj/item/rig_module/grenade_launcher, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Up" = ( +/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/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Uq" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"Ur" = ( +/obj/effect/floor_decal/derelict/d7, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Us" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + icon_state = "map"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ut" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"Uu" = ( +/obj/machinery/mecha_part_fabricator, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Uv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Uw" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Ux" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/vault) +"Uy" = ( +/obj/machinery/door/window/northleft, +/obj/machinery/door/window/southleft, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"Uz" = ( +/obj/machinery/door/blast/regular{ + id = "ship-mechbay-inner"; + name = "Mech Bay" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/button/remote/blast_door{ + id = "ship-mechbay-inner"; + name = "Mech Bay Controls"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"UA" = ( +/obj/item/device/holowarrant, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"UB" = ( +/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/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "UC" = ( /obj/structure/table/steel_reinforced, /obj/item/stack/cable_coil, @@ -17057,6 +24227,73 @@ icon_state = "dark" }, /area/centcom/specops) +"UD" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm4) +"UE" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"UF" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/mothership/telecomms2) +"UG" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"UH" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"UJ" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"UK" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"UL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/robotics) +"UM" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm2) +"UN" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) "UO" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/gun/martin, @@ -17067,6 +24304,248 @@ icon_state = "dark" }, /area/centcom/control) +"UP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"UQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"UR" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"US" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"UT" = ( +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"UU" = ( +/obj/structure/closet/crate/secure/gear{ + req_one_access = list(108) + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/stack/telecrystal{ + amount = 240 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card{ + mine_points = 50000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/weapon/card/mining_point_card/survey{ + name = "survey point card"; + survey_points = 5000 + }, +/obj/item/device/survivalcapsule/military, +/obj/item/device/survivalcapsule/military, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/item/weapon/storage/secure/briefcase/money{ + desc = "An sleek tidy briefcase."; + name = "secure briefcase" + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"UV" = ( +/obj/structure/closet/bombcloset/double, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/recharger/wallcharger{ + pixel_x = 3; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"UW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"UX" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"UY" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell1"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/mothership/sechallway) +"UZ" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Vb" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"Vc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"Vd" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/knife, +/obj/item/weapon/material/knife, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Ve" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/rnd) "Vf" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/frags, @@ -17079,6 +24558,317 @@ icon_state = "dark" }, /area/centcom/specops) +"Vg" = ( +/obj/machinery/telecomms/relay/preset/centcom, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"Vh" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Vi" = ( +/obj/effect/floor_decal/derelict/d16, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Vj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"Vk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms2) +"Vl" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Vn" = ( +/obj/item/device/holowarrant, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Vo" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"Vp" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Vq" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/centcom/bathroom) +"Vr" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"Vs" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/treatment) +"Vt" = ( +/obj/machinery/clonepod/transhuman/full, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Vu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Vv" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/unknown/dorm3) +"Vw" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm3) +"Vx" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"Vy" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"Vz" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/weapon/gun/projectile/heavysniper, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"VB" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"VC" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"VD" = ( +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"VE" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"VF" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"VG" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/device/mmi/digital/posibrain, +/obj/item/device/mmi, +/obj/item/weapon/book/manual/robotics_cyborgs, +/obj/item/device/robotanalyzer, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/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 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"VH" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 2 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"VI" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"VJ" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/breakroom) +"VK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"VL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 12; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"VM" = ( +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/adv, +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"VN" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"VO" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"VP" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"VQ" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 2; + tag_north = 1; + tag_south = 3; + tag_west = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"VR" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/bathroom1) +"VT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/cryotube) "VU" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/glass/beaker/large, @@ -17088,6 +24878,333 @@ dir = 5 }, /area/centcom/specops) +"VV" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"VX" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"VY" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"VZ" = ( +/obj/machinery/mineral/equipment_vendor/survey, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"Wa" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Wb" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = 0 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Wc" = ( +/obj/machinery/organ_printer/flesh, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"Wd" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"We" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Wf" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Wg" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/item/weapon/rig/ert, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Wh" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1; + icon_state = "freezer"; + use_power = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Wi" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"Wj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"Wk" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + icon_state = "map"; + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Wn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/surgery, +/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 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Wo" = ( +/obj/structure/closet/wardrobe/ert, +/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/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/storage/box/survival/space, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"Wp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-med-equip"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/medical) +"Wq" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Wr" = ( +/obj/machinery/suit_cycler, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Ws" = ( +/obj/item/clothing/head/helmet/solgov, +/obj/item/clothing/head/helmet/solgov, +/obj/item/clothing/head/helmet/solgov, +/obj/item/clothing/head/helmet/solgov, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Wt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Wu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + icon_state = "intact-supply"; + dir = 4 + }, +/obj/machinery/pipedispenser/disposal/orderable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Wv" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Wx" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Wy" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"Wz" = ( +/obj/machinery/telecomms/relay/preset/centcom/tether/station_mid, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms2) +"WA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"WB" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"WC" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"WD" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"WE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"WF" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"WH" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"WI" = ( +/turf/simulated/floor/wood, +/area/houseboat) "WL" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/pillbottles, @@ -17099,18 +25216,313 @@ dir = 5 }, /area/centcom/specops) +"WM" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"WN" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/bathroom2) +"WO" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"WP" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"WR" = ( +/obj/machinery/door/airlock/security, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"WT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"WU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"WW" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"WX" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/turf/simulated/floor/bluegrid, +/area/mothership/telecomms1) +"WY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"WZ" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) "Xa" = ( /obj/machinery/space_heater, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) -"Xi" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/base_mid, -/turf/unsimulated/floor{ - icon_state = "steel" +"Xb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/area/centcom/command) +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Xc" = ( +/obj/machinery/door/airlock/medical, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Xd" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/weapon/tank/oxygen/red, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/extinguisher, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Xe" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Xf" = ( +/obj/machinery/camera/network/ert{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/sechallway) +"Xg" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"Xh" = ( +/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/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Xj" = ( +/obj/item/modular_computer/console/preset/ert{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Xk" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/survival_pod{ + dir = 8; + req_one_access = list(103) + }, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Xl" = ( +/obj/item/rig_module/device/anomaly_scanner, +/obj/item/rig_module/device/anomaly_scanner, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/rcd, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Xm" = ( +/obj/structure/reagent_dispensers/acid{ + density = 0; + pixel_x = -30; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Xn" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Xo" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/obj/item/modular_computer/console/preset/mercenary, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Xp" = ( +/turf/simulated/shuttle/wall/alien, +/area/unknown/dorm4) +"Xq" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/mothership/telecomms1) +"Xr" = ( +/obj/machinery/cooker/candy, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Xs" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm1-door"; + name = "Dorm 1 Lock"; + pixel_x = 6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"Xt" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"Xu" = ( +/obj/structure/closet{ + name = "materials" + }, +/obj/fiftyspawner/diamond, +/obj/fiftyspawner/gold, +/obj/fiftyspawner/phoron, +/obj/fiftyspawner/plasteel, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/osmium, +/obj/fiftyspawner/silver, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/uranium, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/durasteel, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Xv" = ( +/obj/structure/closet/crate/medical, +/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/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Xw" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + 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 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Xx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Xy" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"Xz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) "XA" = ( /obj/structure/table/steel_reinforced, /obj/item/weapon/smes_coil, @@ -17121,24 +25533,904 @@ icon_state = "dark" }, /area/centcom/specops) +"XB" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 4; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/eva) +"XC" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"XD" = ( +/turf/simulated/floor/bluegrid, +/area/mothership/robotics) +"XF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/structure/cable/cyan, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"XG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"XH" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"XI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/engineering) +"XJ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/mothership/resleeving) +"XK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + destroy_hits = 1000; + dir = 1; + icon_state = "pdoor0"; + id = "ship-hydroponics"; + name = "Shuttle Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/mothership/hydroponics) +"XL" = ( +/obj/machinery/syndicate_beacon/virgo{ + charges = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"XM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"XN" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/kitchen) +"XO" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"XP" = ( +/obj/machinery/vending/nifsoft_shop{ + categories = 111; + emagged = 1; + name = "Hacked NIFSoft Shop"; + prices = list() + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"XQ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + destroy_hits = 100; + id = "ship-armory"; + name = "Armory" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"XR" = ( +/obj/structure/table/steel_reinforced, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"XS" = ( +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" + }, +/area/space) +"XT" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/mothership/holodeck/holo) +"XU" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/lockbox, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"XV" = ( +/obj/machinery/vending/loadout/costume, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/cryotube) +"XW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"XX" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, +/obj/item/ammo_casing/microbattery/medical/corpse_mend, +/obj/item/ammo_casing/microbattery/medical/corpse_mend, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/weapon/cell/slime{ + description_info = "This 'cell' holds a max charge of 20k and self recharges over time."; + icon = 'icons/obj/power.dmi'; + icon_state = "icell"; + maxcharge = 20000; + name = "slime core cell" + }, +/obj/item/slime_extract/pink, +/obj/item/slime_extract/pink, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/vault) +"XY" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom1) +"XZ" = ( +/obj/machinery/light/flamp/noshade, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"Ya" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Yb" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Yc" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Yd" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Ye" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Yf" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/telecomms1) +"Yg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Yh" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Yi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Yj" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + glass = 0; + id_tag = "ship-dorm1-door"; + opacity = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/dorm1) +"Yk" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm1) +"Yl" = ( +/obj/structure/closet/crate/secure/weapon{ + req_one_access = list(108) + }, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/gun/energy/xray, +/obj/item/weapon/gun/energy/xray, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/gun/energy/sniperrifle, +/obj/item/weapon/gun/energy/sniperrifle, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"Ym" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/mothership/bridge) +"Yn" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/window/brigdoor/southleft{ + dir = 4; + id = "Cell M2"; + name = "Cell 2"; + req_access = list(2) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell2"; + name = "Security Blast Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/mothership/sechallway) +"Yo" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/obj/item/device/multitool, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Yp" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"Yq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Yr" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Ys" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Yt" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"Yu" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/bathroom2) +"Yv" = ( +/obj/item/clothing/suit/space/void/engineering/salvage, +/obj/item/clothing/head/helmet/space/void/engineering/salvage, +/obj/item/weapon/tank/oxygen/red, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/machinery/light, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Yx" = ( +/turf/simulated/shuttle/wall/alien, +/area/unknown/dorm1) +"Yz" = ( +/obj/structure/closet/wardrobe/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 3; + pixel_y = -29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"YA" = ( +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm1) +"YB" = ( +/obj/machinery/door/airlock/engineeringatmos, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"YC" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/warden) +"YD" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm6) "YE" = ( /obj/machinery/shieldwallgen, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/control) -"YM" = ( -/obj/machinery/telecomms/relay/preset/centcom/tether/sci_outpost, -/turf/unsimulated/floor{ - icon_state = "steel" +"YF" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" }, -/area/centcom/command) +/area/mothership/security) +"YG" = ( +/obj/effect/floor_decal/derelict/d2, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"YH" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/morgue) +"YI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/telecomms1) +"YJ" = ( +/obj/structure/bed/chair/wood{ + icon_state = "wooden_chair"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"YK" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"YL" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"YM" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"YN" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28; + req_access = list(67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/mothership/dorm6) +"YO" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/mothership/cryotube) +"YP" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"YQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"YR" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm5) "YS" = ( /obj/machinery/vending/assist, /turf/unsimulated/floor{ icon_state = "dark" }, /area/centcom/specops) +"YT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"YU" = ( +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/bed/double/padded, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/button/remote/airlock{ + id = "ship-dorm5-door"; + name = "Dorm 5 Lock"; + pixel_x = 6; + pixel_y = -26; + specialfunctions = 4 + }, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/wood, +/area/mothership/dorm5) +"YV" = ( +/obj/item/clothing/suit/space/void/security/alt, +/obj/item/clothing/head/helmet/space/void/security/alt, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"YW" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 12; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"YX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"YY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/mothership/chemistry) +"YZ" = ( +/obj/structure/particle_accelerator/power_box{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms2) +"Zb" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/highsecurity{ + req_one_access = list(101) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"Zc" = ( +/turf/simulated/floor/tiled/white, +/area/mothership/kitchen) +"Zd" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"Ze" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hydroponics) +"Zf" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/morgue) +"Zg" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Zh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/processing) +"Zi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"Zj" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/eva) +"Zl" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/vault) +"Zm" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"Zn" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"Zo" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"Zp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"Zq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 1; + icon_state = "pdoor0"; + id = "ship-sec-cell2"; + name = "Security Blast Doors"; + opacity = 0 + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/mothership/sechallway) +"Zr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/cryotube) +"Zs" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/eva) +"Zt" = ( +/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/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/mothership/surgery) +"Zu" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/evidence, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/security) +"Zv" = ( +/obj/structure/closet/radiation, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) "Zw" = ( /obj/structure/table/rack, /obj/item/weapon/gun/projectile/heavysniper, @@ -17148,6733 +26440,6945 @@ icon_state = "dark" }, /area/centcom/specops) -"ZC" = ( -/obj/effect/floor_decal/corner_steel_grid{ - dir = 6 +"Zx" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/rnd) +"Zy" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"Zz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Mothership"; + tele_network = "centcom" + }, +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/teleporter) +"ZA" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"ZB" = ( +/obj/machinery/status_display{ + pixel_y = -29 + }, +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/hallway) +"ZC" = ( +/obj/machinery/power/emitter/gyrotron/anchored{ + desc = "It is a heavy duty pulse laser emitter."; + dir = 8; + icon_state = "emitter-off"; + name = "pulse laser" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/mothership/eva) +"ZD" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/telecomms1) +"ZE" = ( +/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, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) +"ZF" = ( +/obj/item/modular_computer/console/preset/mercenary{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/engineering) +"ZG" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/dorm1) +"ZH" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/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, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/armory) +"ZI" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + d1 = 0; + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/mothership/treatment) +"ZJ" = ( +/obj/effect/floor_decal/derelict/d8, +/turf/unsimulated/floor/steel, +/area/centcom/evac) +"ZK" = ( +/obj/structure/closet/secure_closet/CMO, +/turf/simulated/floor/tiled/white, +/area/mothership/medical) +"ZL" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/reinforced/airless{ + name = "outer hull" }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/space) +"ZM" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/processing) +"ZN" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "CentCom"; + tele_network = "centcom" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"ZP" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/mothership/breakroom) +"ZQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/unsimulated/floor/steel, +/area/centcom/living) +"ZR" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/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/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"ZS" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"ZT" = ( +/obj/structure/cable/cyan{ + 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/techmaint, +/area/mothership/telecomms2) +"ZU" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/mothership/engineering) +"ZW" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + hard_corner = 1; + icon_state = "void-hc"; + name = "small craft wall hc"; + stripe_color = "#45b3d8" + }, +/area/mothership/holodeck) +"ZX" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/mothership/breakroom) +"ZY" = ( +/turf/simulated/shuttle/wall/voidcraft/blue{ + name = "small craft wall"; + stripe_color = "#45b3d8" + }, +/area/mothership/chemistry) +"ZZ" = ( +/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/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/mothership/hallway) (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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (2,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (3,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (4,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (5,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (6,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (7,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +UE +cJ +UE +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (8,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +XS +MJ +PZ +MJ +XS +ZL +XS +XS +XS +XS +XS +ZL +XS +PD +Ln +PD +XS +ZL +XS +XS +XS +XS +XS +ZL +XS +Ve +Jc +Ve +XS +ZL +MV +Qf +Qf +Qf +UE +NJ +UE +ZL +UE +Yf +UE +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (9,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +MJ +MJ +MJ +MJ +MJ +MJ +MJ +MJ +MJ +Lw +Ix +Ix +Ix +Ix +Lw +Lw +PD +PD +PD +PD +Lp +Lp +Wp +Wp +Wp +Lp +Lp +Ve +Ve +Ve +Ve +Ve +Ve +Ve +FT +EW +UL +Kl +Wq +Kn +UE +UE +UE +UE +Kn +ZL +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (10,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +MJ +Xv +VG +MJ +Tl +Sq +YK +Wn +MJ +OS +Qy +KG +HE +Nj +Ls +Lw +oN +Nr +Os +Wc +Lp +Ed +jt +ZK +Dy +Eu +Lp +Jo +Xm +Lg +Eh +Hb +Gr +Ve +Jm +Ic +lE +WU +Ug +Qu +Rr +Qn +Oi +Ou +Xq +iJ +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (11,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +MJ +Wt +GO +MJ +Ey +OV +XG +iR +FU +Gt +PT +LT +LT +LZ +Ek +MG +SI +WA +EM +QB +Lp +Xt +NI +Xt +Ns +Tb +Lp +NK +YX +Ss +Ty +Vu +gz +Ve +Jm +Ic +lE +WU +WX +NL +Ti +Qn +Oi +Ou +Xq +iJ +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (12,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +Sh +QL +Sh +OF +OF +OF +QG +Rj +WB +Xc +Yq +PR +VL +Zt +Wd +gw +Fv +MD +MD +Yg +MD +If +TT +RL +Np +TT +LI +iK +Rx +iK +MA +iK +PW +Xx +Rl +Xx +Xx +Oh +HT +NA +DM +Gy +Sg +WU +DR +NL +Nu +Qn +Oi +Ou +Xq +iJ +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (13,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +XS +QU +XK +XK +gX +ZC +Sh +Gw +Sh +ZL +VR +nW +MJ +MJ +MJ +ZY +ZY +ZY +ZY +ZY +TP +Yr +WY +Yh +LT +NW +LT +MG +IF +WT +Gc +Gi +Lp +VM +Xt +IB +NQ +JR +Lp +ST +Hb +DP +MC +Dv +Oa +OM +Dq +XD +Ko +WU +TQ +NL +Oq +Qn +Oi +Ou +Xq +iJ +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (14,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +Qh +Jq +Jq +Jq +Qh +gX +Sf +Ge +Nw +Sf +Sh +Zs +Nv +Zs +Sh +VR +Er +Fe +Ml +Xs +ZY +OP +DK +MW +JN +ZY +ZI +WY +Sm +LT +MB +LT +Lw +Nb +Fm +Gc +Vt +Lp +Fq +Xt +Ly +NQ +Ec +Lp +LQ +Hb +MI +WW +Dv +Oa +Rm +VC +XD +Jy +WU +QP +QC +Vg +Qn +Oi +Ou +Xq +iJ +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (15,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +IT +IT +Qh +OR +OR +OR +RZ +gX +KP +Ga +Um +Dn +Sh +PL +WE +YV +Sh +XY +Qa +Fe +lm +Mv +ZY +MO +YY +SX +UX +RA +Qc +WY +LT +LT +LT +Hv +MG +Md +Fb +Gc +En +Lp +Pp +Xt +Rp +NQ +Pm +Lp +Uu +Hb +Hb +Hb +Dv +UR +Ve +OC +XD +Rs +WU +ZD +No +KR +XI +XI +XI +XI +XI +XI +XI +Vj +HC +HC +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (16,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +FH +Lu +EJ +OR +OR +OR +GX +gX +Vd +Jv +CC +LE +Sh +Kh +iM +Yv +Sh +PE +DW +Fe +DQ +YA +ZY +NY +Gh +Ms +FX +JA +Ff +hP +Sk +HB +Yt +QS +WD +XJ +bN +Pj +XJ +KS +Wf +HZ +TZ +Ks +To +Op +LY +Hb +Xu +Ke +Dv +Zx +Ve +TJ +Jx +MN +WU +ln +Kp +UP +ll +ll +ll +QO +QX +Xd +Ua +VI +LA +OU +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (17,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +Qh +IT +Qh +Xg +OR +OR +Ni +gX +XH +TN +CC +Uw +Sh +nO +Kf +Nk +Sh +JH +nW +ZG +Fe +Yj +TP +ZY +ZY +Eg +ZY +TP +Vs +Ph +Lw +Xe +Li +YW +MG +GN +Oz +WP +Uj +Lp +SR +Do +Lp +Ld +Ui +Lp +Ve +NE +Ve +MV +Mk +MV +MV +Uz +CD +fP +LG +Zb +YI +SV +Ul +Mm +VV +cT +Sl +Yd +GP +Hz +HC +Hz +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (18,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +HQ +IT +OR +OR +OR +OR +Lo +gX +Uw +TN +CC +Uw +Sh +Zs +GS +Zs +Sh +Sw +OQ +Yb +QE +Sw +QE +RS +QE +QE +QE +Nf +TR +NF +Lw +Lw +Lw +Lw +Lw +Jg +Hr +Jg +Zf +Zf +Lp +Lp +Lp +Sw +QE +Nf +QE +QE +QE +RS +Xz +Yb +QE +QK +QK +nk +Qo +Sw +UG +HC +XW +GW +OG +Jh +HI +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (19,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +Qh +Qh +Lh +OR +OR +OR +SE +gX +Lj +TN +CC +Uw +Sh +Wr +HJ +TS +Sh +Hg +ZE +ZE +ZE +Xw +Hm +Wx +ZE +Un +ZE +Nm +ph +Et +Fc +Lv +Mn +Zf +Ol +YH +Vx +ro +Uq +Zf +VE +YU +YR +Pb +ZE +Nm +ZE +ZE +IP +Im +Ob +ZE +ZE +ZE +On +Lk +US +ZZ +UH +KD +Rn +Hw +Jr +VQ +DG +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (20,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +ZL +LR +OR +RB +OR +SU +Lz +gX +Uw +TN +CC +Uw +Sh +Yo +HJ +FM +Sh +NB +Yc +Fx +Hi +Hi +Hi +Zl +Zl +OA +Zl +Ux +QE +Sw +Fc +Gd +gi +Zf +Fk +HF +HF +HF +My +Zf +Hc +by +YR +Sw +QE +Da +KH +KH +Da +Ry +Da +KH +KH +Da +NB +Yc +Zr +jq +NP +jq +jq +jq +DH +La +Uv +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (21,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -RN -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -ZC -Hs -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +IT +IT +Qh +Pc +Zp +Mu +Gn +Ho +QU +OX +GD +GT +QU +Zs +XR +HJ +Zj +Sh +Sw +QE +Hi +Qg +Oo +MX +Zl +UU +Tt +XX +Zl +QE +Sw +Fc +jo +Vw +Zf +QA +QA +QA +QA +QA +Zf +Wo +TH +YR +Sw +QE +KH +Xo +Fg +Dr +XM +Kj +Fg +Ym +KH +Sw +FE +VT +Vo +Ut +Jd +Fr +jq +KN +Th +Ot +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (22,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +LR +HO +NG +Mu +Oy +ZX +CG +HD +JO +Od +Fs +CC +Ze +Zs +YM +HJ +Lb +Zs +Sw +HW +Hi +ae +QY +SY +Zl +XL +Tt +Oe +Zl +Sr +Sw +DI +IW +Fc +Zf +Zf +Zf +Zf +Zf +Zf +Zf +YR +Ij +FZ +Sw +HW +KH +Jk +GI +Xb +Mf +Mf +Mf +KF +KH +Sw +Fi +VT +RP +LO +Wy +XF +jq +Wu +Dz +Gk +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (23,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ +OF +OF +OF +OF +OF +OF +OF +LR +HO +HP +Mu +XC gx -gX -gX -gX -hY -gX -iE +XC +Rk +QU +YQ jk -gX -gX -gX -gX -gX -li -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +Ds +NM +jp +ag +KA +Ps +jp +ME +DE +SK +Lr +Ma +FN +Zl +SZ +Tt +VZ +Zl +PN +Id +Nm +Ox +ZE +ZE +ZE +ZE +TY +ZE +ZE +ZE +ZE +Uc +Nm +Zo +PN +KH +Eb +Kj +Kc +Xj +Fu +Ft +Xj +KH +Sw +Ng +VT +Na +Sn +hY +Mb +jq +KT +Gv +JT +OB +Lc +HC +XS +ZL +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (24,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gY -gY -iF -jl -jv -jx -jx -jx -jx -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +LR +HO +HP +Mu +XC +XC +XC +Mh +QU +Yi +Qq +XO +VN +FC +YP +Wv +JP +FC +UB +FD +NT +PA +MK +SC +Zl +FR +HR +Jz +Zl +PN +Sw +Yc +Sw +iL +Wa +QE +QE +QW +QE +QE +Wa +iL +Sw +Yc +Sw +PN +KH +Eb +Kj +Kc +iA +DV +EG +iA +KH +Sw +UZ +VT +FB +LC +hY +YO +jq +Qj +NS +Wk +DF +LP +Px +IM +ZL +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (25,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gY -gY -iG -jm -jw -jx -jy -jy -jx -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +LR +HO +Mi +Mu +Gf +YJ +JW +QN +Mc +JS +CZ +iS +Ha +Zs +Qp +HJ +PH +Zs +Sw +HW +Hi +Ep +QY +Zz +Zl +Fa +Tt +EU +Zl +Sr +Sw +SA +PF +Ex +Hd +Hd +Hd +Hd +Hd +Hd +Hd +Kk +TA +YD +Sw +HW +KH +Jk +GI +EA +GY +GY +GY +Qx +KH +Sw +JU +VT +XV +IN +HV +GM +jq +Qj +JE +Wh +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (26,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gZ -gY -gY +OF +OF +OF +OF +OF +OF +OF +IT +IT +Qh +Pc +Zp +Mu +Gn +Rv +Sf +PQ +NX +VH +XN +Zs +Te +HJ +Zj +Sh +Sw +ED +Hi +Tv iH -jn -jx -jJ -jx -jx -jx -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +Uk +Zl +RG +EB +Lx +Zl +QE +Sw +Ex +lF +UD +Hd +Nq +DX +Hd +Vl +DX +Hd +MM +YN +Kk +Sw +QE +KH +Xo +Em +WM +TK +Kj +Em +KI +KH +Sw +FE +VT +Vo +PB +HH +GR +jq +Iw +Us +Oj +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (27,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gZ -gY -gY -iI -jo -jx -jx -jx -jx -jM +OF +OF +OF +OF +OF +OF +OF +OF +ZL +LR +OR +UW +OR +RQ +ML +Ki +Gp +Ib +gA +Gl +Sh +Yo +HJ +FM +Sh +Sw +QE +Fx +Hi +Hi +Hi +Zl +Zl +OA +Zl +Ux +Yc +NB +Ex +Hk +HN +Hd +IQ +Xf +Hd +Hy +Xf +Hd +Go +Wj +Kk +NB +Yc +Da +KH +KH +Da +Pl +Da +KH +KH +Da +Sw +Fi +Zr +jq +Qw +jq +jq +jq +KB +EO lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -rn -rs -rs -rs -rs -rs -tA -rs -rs -rs -rs -rs -rs -tA -rs -rs -rs -rs -rs -rn -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (28,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -gz -gZ -gY -gY -gY -gY -iJ -jp -jx -jy -jx -jx -jx -lk -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rC -rC -rC -sV -rC -rC -rC -rC -rC -rC -rC -rC -rC -rC -sV -rC -rC -rC -ro -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +Qh +Qh +So +OR +OR +WI +Fh +Ki +Hp +Ib +no +Tn +Sh +Wr +HJ +TS +Sh +Hg +ZE +Nm +ZE +LL +ZE +TY +Ya +Xh +ZE +ZE +ZE +Zo +Ex +Fd +Ej +Hd +DN +DX +Hd +Is +DX +Hd +VX +MU +Kk +Tu +Je +ZE +ZE +ZE +ZE +TM +ZE +OY +ZE +Nm +HL +Ne +Kq +OY +KX +YB +QH +Zi +OJ +Gb +IR +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (29,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gY -gY -iK -jq -jx -jx -jx -jx -jx -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -rD -si -sj -sj -tB -si -sj -uP -uP -sj -si -tB -wf -wf -si -rD -rD -ro -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +HQ +IT +Sx +OR +OR +OR +OR +Uy +Zc +Ib +no +OW +Sh +Zs +GS +Zs +Sh +Sw +ON +Ew +QE +Sw +QE +Wa +QE +QE +QE +iL +QE +ZB +Hd +Hd +Hd +Hz +UY +OK +Hd +Zq +Yn +Hz +Hd +Hd +Hd +TR +Xz +iL +QE +QE +QE +Wa +iL +Sw +QE +Yc +QE +Sw +Qo +Sw +UG +HC +Ye +IS +nn +Ua +Zv +GU +cL +Rf +ZU +Mj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (30,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gY -gY -iL -jr -jy -jx -jx -jx -jx -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rE -si -sB -sW -tl -sD -ua -sX -tl -sE -vb -vk -sD -tl -wC -sB -si -rE -ro -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +Qh +IT +Qh +Xg +OR +OR +PS +Ki +Wb +Ib +no +PO +Sh +nO +Qv +Nk +Sh +GC +Ro +UM +UM +Or +Dt +YF +YF +YF +YF +YF +Jf +EY +NC +DX +DX +Pe +PU +DX +FF +PU +DX +DX +DX +DX +Ri +XQ +Jb +Ri +TX +TX +TX +TX +Ri +EP +ZW +Ia +ZW +JX +Vk +DA +Vc +Vj +Kr +SQ +iN +Ua +Ua +VD +TB +Hz +HC +Hz +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (31,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gY -gY +OF +OF +OF +OF +OF +OF +OF +OF +FH +VJ +EJ +OR +OR +OR +Mr +Ki +MT +Ib +no +SW +Sh +Kh iM -js -jx -jx -jM -jx -jy -ll -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -sj -sC -sX -tl -sD -sE -um -tl -sE -sX -tl -sD -sD -sD -wZ -sj -rD -ro -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +Yv +Sh +Uh +VY +UM +SO +Pa +YF +XU +JG +Zu +Qd +cR +Sb +Ov +OL +Rq +El +IK +FP +EF +bj +Qm +Rq +DY +El +Rq +Of +ZH +Lm +ID +RI +Ta +Fl +NO +Du +Up +TX +Tq +Rg +PM +Om +ZT +Rz +UP +Vh +li +ZF +KC +Ra +Tk +Ua +KW +Xn +OU +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (32,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ +OF +OF +OF +OF +OF +OF +OF +OF +IT +IT +Qh +OR +OR +OR +ZP +Ki +MZ +PG +cK +Xr +Sh +PL +We +YV +Sh +VO +Yu +UM +Nz +Kz +YF +TV +FO +Ji +Qd gy -gY -gZ -gY -hZ -gY -iN -jt -jx -jx -jx -jx -jx -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -sj -sD -sD -sD -sD -sD -sD -sD -sD -sD -sD -sD -sE -sE -tl -sj -rD -ro -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +Sb +GZ +OH +ZM +ZM +Kx +ZM +ZM +Il +Ow +Ow +NV +Ow +Ow +Ri +Gs +SN +Ii +Ii +Ii +Ii +Ii +Ii +JZ +TX +gj +Nh +PI +Om +FA +EK +RX +XI +XI +XI +XI +XI +XI +XI +SV +HC +HC +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (33,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +Qh +gB +gB +gB +Qh +Ki +Sf +TO +NU +Sf +Sh +Zs +Nv +Zs +Sh +WN +aV +UM +Tg +Iy +YF +Gx +FO +Sb +Sb gy -gY -gY -gY -gY -gY -iO -ju -jx -jy -jx -jx -jx -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -sj -sD -sD -sD -sD -sD -sD -sD -sD -sD -sD -sD -sE -sE -xa -sj -rD -ro -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +Sb +UV +ZM +ES +GB +Dw +Jt +Zh +Ow +FS +Jl +WF +Tz +Hh +TX +RC +UQ +Po +IX +JV +Pr +Ub +Jp +EV +TX +XT +XT +XT +Om +Tr +YT +Wz +Ig +Qt +YZ +IO +UF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (34,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -gy -gY -gY -gY -gZ -gY -iF -ju -jx -jx -jx -jx -jM -lj -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -sj -sE -sX -tl -sD -sE -sX -tl -sE -sX -tl -sD -sD -sD -sD -sj -rD -ro -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +XS +Sf +OE +OE +Ki +XB +Sh +Di +Sh +ZL +WN +Ro +YF +YF +YF +YF +Ys +Ue +Vp +Sb +Qz +Sb +Yz +OH +LN +UT +EE +UT +PK +Il +FV +Mp +LJ +Mp +Fz +Ri +Iv +UQ +SJ +Pz +TF +Sd +Vz +Yl +IY +TX +XT +XT +XT +Om +IG +Gg +GV +Ig +Qt +YZ +IO +UF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (35,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -gA -ha -gY -gY -gZ -iz -iP -hb -ha -jx -jx -jx -iz -lm -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rE -si -sB -sY -tl -sD -ub -un -tl -sE -vc -vl -sD -wg -wD -sB -si -rE -ro -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +Sh +QL +Sh +OF +OF +OF +YF +lk +KV +YF +JM +Td +Vp +Sb +Dm +Sb +Fn +MQ +VK +KO +lG +cS +KO +WR +RT +DZ +FW +GF +Mp +Gu +Ii +Ud +Uo +Hl +Ik +Xl +OT +IV +Lf +TX +XT +XT +XT +Om +Dp +Gg +Eo +Ig +Qt +YZ +IO +UF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (36,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -gB -hb -hu -hO -hu -iA -nm -nm -jz -hu -jN -hu -iP -ln -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rD -rD -si -sj -sj -tC -si -sj -uP -uP -sj -si -tC -wf -wf -si -rD -rD -ro -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +YF +Zg +QI +Qs +Gz +QJ +Gz +Gz +iE +Gz +Pu +OH +NR +UT +Nn +RU +UK +Il +JL +Mp +EC +TE +YC +Ri +XP +Ii +Ii +Ii +Ii +Ii +Ii +Ii +QF +TX +XT +XT +XT +Om +Pf +Gg +Su +Ig +Qt +YZ +IO +UF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (37,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -DR -mQ -mQ -mQ -mQ -mQ -mQ -mQ -nm -nm -mQ -mQ -mQ -mQ -mQ -mQ -mQ -Ei -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ro -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -rF -ro -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +YF +Ws +PC +YF +FK +Vn +UA +MP +Ll +Sb +SG +ZM +HG +Hu +LM +IA +EQ +Ow +Uf +Mp +HA +Mp +kP +TX +It +bi +NN +Wg +TL +Xk +KE +DT +IE +TX +XT +XT +XT +Om +IJ +Ky +KU +Ig +Qt +YZ +IO +UF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (38,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Uh -Lg -Lg -Lg -mQ -nm -nm -nO -nm -nm -mQ -NI -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -ph -ph -ph -mQ -rp -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rG -rp -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +YF +YF +YF +YF +YF +YF +Dt +PV +PV +PV +YF +ZM +ZM +ZM +ZM +ZM +ZM +Ow +Il +JD +JD +JD +Ow +TX +TX +TX +TX +TX +TX +TX +TX +TX +TX +TX +XT +XT +XT +MF +JJ +KZ +Hj +Hj +Hj +Hj +KZ +ZL +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (39,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -mR -Lh -Lh -mR -nm -nm -mQ -mQ -mQ -nm -nm -iR -nm -nm -nm -mQ -nk -nm -nO -nm -nm -nm -nm -oN -rq -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rs -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +ZL +XS +YF +Jw +YF +XS +ZL +XS +XS +XS +XS +XS +ZL +XS +ZM +LV +Ow +XS +ZL +XS +XS +XS +XS +XS +ZL +XS +TX +Rd +TX +XS +ZL +Ri +SB +SB +SB +Hj +OZ +Hj +ZL +Hj +Ja +Hj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (40,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -mR -Lh -Lh -mR -iR -nm -nm -nm -iR -nm -nm -nm -nm -nm -nm -mR -nl -nl -mR -nl -nl -nl -nl -nl -rr -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rH -rs -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +Hj +II +Hj +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (41,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -mQ -nm -nm -nO -iS -iQ -nm -nm -nm -nm -kP -nm -nm -nm -nm -mR -nl -nl -mR -nl -nl -nl -nl -nl -rr -rH -rH -rH -rH -rH -rH -uc -cP -dk -uZ -cP -uc -rH -rH -rH -rH -rH -rH -rs -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (42,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -mQ -nn -nn -mQ -mQ -mQ -mQ -mQ -mQ -nm -nm -iQ -nm -iR -nm -mQ -nm -nm -nO -nm -nm -nm -nm -nm -rs -rI -sk -sF -sF -sF -rI -ud -uo -uQ -uQ -uo -ud -rI -sF -sF -sF -sk -rI -rs -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (43,1,1) = {" -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -mQ -no -no -mQ -ab -ab -ab -ab -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -nn -nn -mQ -nm -nm -mQ -nn -nn -rs -rJ -rJ -rJ -rJ -rJ -rJ -ud -dk -dk -dk -dk -ud -rJ -rJ -rJ -rJ -rJ -rJ -rs -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (44,1,1) = {" -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 -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 -mQ -mQ -mQ -mQ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -mQ -no -no -mQ -QB -QB -mQ -no -no -rs -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (45,1,1) = {" -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 -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -mQ -rs -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -ab -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 -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (46,1,1) = {" -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 -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 -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 -ab -ab -ab -ud -dk -dk -dk -dk -ud -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 -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -aa +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF +OF "} (47,1,1) = {" 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 -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 -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 -ud -dk -dk -dk -dk -ud -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 -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa aa "} (48,1,1) = {" 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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab ac ac ac @@ -23886,14 +33390,6 @@ ac ac ac ac -ei -ei -ei -ei -ei -ei -ei -ei ac ac ac @@ -23904,49 +33400,101 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -23973,69 +33521,6 @@ aa "} (49,1,1) = {" 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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ei -ei -ei -ei -ei -ei -ei -ei -gk -gk -gk -gk -gk -ia -ei ac ac ac @@ -24047,47 +33532,110 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24117,69 +33665,6 @@ aa aa 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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ei -eq -eq -fa -fa -ei -ei -ei -gl -gl -gl -gl -gl -gl -ei -ei -ei ac ac ac @@ -24190,42 +33675,105 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ud -dk -dk -dk -dk -ud -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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24266,62 +33814,6 @@ 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 -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ei -er -er -er -ft -ei -fN -fU -gm -gm -gm -gm -gm -gm -iB -iT -ei ac ac ac @@ -24336,36 +33828,92 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ud -do -dk -dk -dk -ud -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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24414,56 +33962,6 @@ 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 -ab -ac -ac -ac -ac -ac -ei -er -er -er -fu -ei -fN -fU -gm -gD -gm -gm -gD -gm -iB -iT -ei ac ac ac @@ -24483,31 +33981,81 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ud -up -dk -dk -uS -ud -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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24559,29 +34107,6 @@ 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 ac ac ac @@ -24589,64 +34114,87 @@ ac ac ac ac -ei -er -er -er -fu -ei -fN -fU -gm -gm -hc -gm -gm -gm -iB -iT -ei -ac -jK -jK -jK -jK -jK -jK -jK -ac -ac -ac -jK -jK -jK -jK -jK -jK -jK ac ac ac ac ac -ab -ab -ud -uq -dk -dk -uS -ud -ab -ab -ab -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 +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24689,6 +34237,1007 @@ ac ac ac ac +Hq +Xp +Hq +Xp +Xp +Xp +Xp +Xp +Xp +Hq +Xp +Xp +Hq +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ac +ac +ac +ac +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +TD +RR +TD +RR +RR +RR +RR +RR +RR +TD +RR +RR +TD +ac +ac +ac +ac +ac +ac +aa +"} +(55,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +Xp +Ts +Hq +UJ +mR +DU +Zn +WC +WC +Hq +DL +Es +Xp +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +ei +ei +ei +ei +ei +ei +ei +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ry +vK +wq +wq +xp +xN +vM +yn +ry +ac +ac +ac +ac +ry +yn +vM +xN +vK +wq +wq +xp +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +RR +LW +TD +JQ +Km +DJ +Zd +Kb +Kb +TD +GJ +iG +RR +ac +ac +ac +ac +ac +ac +aa +"} +(56,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +Xp +Mg +Nt +DL +Mg +JF +Mg +Mg +DL +Nt +DL +ZS +Xp +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +ei +ei +ei +ei +ei +ei +ei +gk +gk +gk +gk +gk +ia +ei +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ry +vL +vM +vM +vM +vM +vM +yo +ry +cP +cP +cP +cP +ry +vL +vM +vM +vM +vM +vM +yo +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +RR +VF +Vy +GJ +VF +Pt +VF +VF +GJ +Vy +GJ +MS +RR +ac +ac +ac +ac +ac +ac +aa +"} +(57,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +Xp +Wi +Hq +Qk +Mg +Mg +Mg +Mg +LX +Hq +DL +RV +Xp +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +eq +eq +fa +fa +ei +ei +ei +gl +gl +gl +gl +gl +gl +ei +ei +ei +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ry +vM +vM +vM +vM +vM +vM +vM +vu +dk +dk +dk +dk +vu +vM +vM +vM +vM +vM +vM +vM +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +RR +WZ +TD +Kv +VF +VF +VF +VF +Vb +TD +GJ +Pv +RR +ac +ac +ac +ac +ac +ac +aa +"} +(58,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +Xp +Pw +Xp +ZR +DL +GK +Nl +EN +Ok +Xp +DL +JY +Xp +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +er +er +er +ft +ei +fN +fU +gm +gm +gm +gm +gm +gm +iB +iT +ei +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ry +vM +wr +vM +wr +vM +wr +vM +ry +do +dk +dk +dk +ry +vM +wr +vM +wr +vM +wr +vM +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +RR +Pq +RR +KL +GJ +Tf +ZA +DS +Bx +RR +GJ +Xy +RR +ac +ac +ac +ac +ac +ac +aa +"} +(59,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +Hq +Xp +Hq +Xp +Xp +Xp +Xp +Xp +Xp +Hq +Xp +Xp +Hq +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +er +er +er +fu +ei +fN +fU +gm +gD +gm +gm +gD +gm +iB +iT +ei +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ry +vN +ry +wM +ry +xO +ry +yp +ry +up +dk +dk +uS +ry +vN +ry +wM +ry +xO +ry +yp +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +TD +RR +TD +RR +RR +RR +RR +RR +RR +TD +RR +RR +TD +ac +ac +ac +ac +ac +ac +aa +"} +(60,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ei +er +er +er +fu +ei +fN +fU +gm +gm +hc +gm +gm +gm +iB +iT +ei +ac +jK +jK +jK +jK +jK +jK +jK +ac +ac +ac +jK +jK +jK +jK +jK +jK +jK +yq +ry +vO +ry +vO +ry +vO +ry +uq +dk +dk +uS +ry +vO +ry +vO +ry +vO +ry +yq +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +"} +(61,1,1) = {" +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24702,28 +35251,10 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab ac ac ac ac -ab ac ac ac @@ -24766,25 +35297,36 @@ pi pO qr jK -ac -ac -ac -ac -ac -ab -ab -ud +ry +ry +ry +ry +ry +ry +ry +ry ur dk dk uS -ud -ab -ab -ab -ab -ab -ab +ry +ry +ry +ry +ry +ry +ry +ry +ry +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -24823,7 +35365,7 @@ ac ac aa "} -(55,1,1) = {" +(62,1,1) = {" aa ac ac @@ -24844,23 +35386,12 @@ ac ac ac 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 @@ -24963,9 +35494,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(56,1,1) = {" +(63,1,1) = {" aa ac ac @@ -24992,17 +35534,6 @@ ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac ac ac ac @@ -25105,9 +35636,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(57,1,1) = {" +(64,1,1) = {" aa ac ac @@ -25134,17 +35676,6 @@ ac ac ac ac -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac ac ac ac @@ -25247,9 +35778,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(58,1,1) = {" +(65,1,1) = {" aa ac ac @@ -25289,17 +35831,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ei eG fc @@ -25389,9 +35920,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(59,1,1) = {" +(66,1,1) = {" aa ac ac @@ -25399,30 +35941,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +Vv +RM +Vv +RM +RM +RM +RM +RM +RM +Vv +RM +RM +Vv ac ac ac @@ -25523,8 +36054,19 @@ ac ac ac ac -ac -ac +KK +Yx +KK +Yx +Yx +Yx +Yx +Yx +Yx +KK +Yx +Yx +KK ac ac ac @@ -25533,7 +36075,7 @@ ac ac aa "} -(60,1,1) = {" +(67,1,1) = {" aa ac ac @@ -25541,30 +36083,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +RM +RW +Vv +Sz +Yp +gh +WH +Zm +Zm +Vv +Zy +Rb +RM ac ac ac @@ -25665,8 +36196,19 @@ ac ac ac ac -ac -ac +Yx +Kt +KK +Pk +Vr +WO +RK +uc +uc +KK +QR +Yk +Yx ac ac ac @@ -25675,7 +36217,7 @@ ac ac aa "} -(61,1,1) = {" +(68,1,1) = {" aa ac ac @@ -25683,30 +36225,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +RM +Rh +QT +Zy +Rh +SF +Rh +Rh +Zy +QT +Zy +ND +RM ac ac ac @@ -25807,8 +36338,19 @@ ac ac ac ac -ac -ac +Yx +Tm +DD +QR +Tm +Qe +Tm +Tm +QR +DD +QR +OO +Yx ac ac ac @@ -25817,7 +36359,7 @@ ac ac aa "} -(62,1,1) = {" +(69,1,1) = {" aa ac ac @@ -25825,30 +36367,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +RM +Pn +Vv +iI +Rh +Rh +Rh +Rh +jn +Vv +Zy +Fy +RM ac ac ac @@ -25896,7 +36427,7 @@ mx mS np jK -nW +Iu kv pp kv @@ -25949,8 +36480,19 @@ ac ac ac ac -ac -ac +Yx +RH +KK +SS +Tm +Tm +Tm +Tm +HS +KK +QR +Io +Yx ac ac ac @@ -25959,7 +36501,7 @@ ac ac aa "} -(63,1,1) = {" +(70,1,1) = {" aa ac ac @@ -25967,30 +36509,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +RM +Ee +RM +Sa +Zy +Js +JK +Rw +RN +RM +Zy +VP +RM ac ac ac @@ -26091,8 +36622,19 @@ ac ac ac ac -ac -ac +Yx +PX +Yx +Jj +QR +VB +Ei +QD +TI +Yx +QR +EL +Yx ac ac ac @@ -26101,7 +36643,7 @@ ac ac aa "} -(64,1,1) = {" +(71,1,1) = {" aa ac ac @@ -26109,30 +36651,19 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +Vv +RM +Vv +RM +RM +RM +RM +RM +RM +Vv +RM +RM +Vv ac ac ac @@ -26233,8 +36764,19 @@ ac ac ac ac -ac -ac +KK +Yx +KK +Yx +Yx +Yx +Yx +Yx +Yx +KK +Yx +Yx +KK ac ac ac @@ -26243,7 +36785,7 @@ ac ac aa "} -(65,1,1) = {" +(72,1,1) = {" aa ac ac @@ -26279,17 +36821,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -26383,9 +36914,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(66,1,1) = {" +(73,1,1) = {" aa ac ac @@ -26421,17 +36963,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -26525,9 +37056,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(67,1,1) = {" +(74,1,1) = {" aa ac ac @@ -26563,17 +37105,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP do dk @@ -26667,9 +37198,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(68,1,1) = {" +(75,1,1) = {" aa ac ac @@ -26705,17 +37247,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -26809,9 +37340,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(69,1,1) = {" +(76,1,1) = {" aa ac ac @@ -26847,17 +37389,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -26951,9 +37482,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(70,1,1) = {" +(77,1,1) = {" aa ac ac @@ -26989,17 +37531,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27093,9 +37624,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(71,1,1) = {" +(78,1,1) = {" aa ac ac @@ -27131,17 +37673,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27223,21 +37754,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +rn +rs +rs +rs +rs +rs +tA +rs +rs +rs +rs +rs +rs +tA +rs +rs +rs +rs +rs +rn ac ac ac aa "} -(72,1,1) = {" +(79,1,1) = {" aa ac ac @@ -27273,17 +37815,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27365,21 +37896,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rC +rC +rC +sV +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +sV +rC +rC +rC +He ac ac ac aa "} -(73,1,1) = {" +(80,1,1) = {" aa ac ac @@ -27415,17 +37957,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27507,21 +38038,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +rD +si +sj +sj +tB +si +sj +uP +uP +sj +si +tB +wf +wf +si +rD +rD +He ac ac ac aa "} -(74,1,1) = {" +(81,1,1) = {" aa ac ac @@ -27557,17 +38099,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27649,21 +38180,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rE +si +sB +sW +tl +sD +ua +sX +tl +sE +vb +vk +sD +tl +wC +sB +si +rE +He ac ac ac aa "} -(75,1,1) = {" +(82,1,1) = {" aa ac ac @@ -27699,17 +38241,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27791,21 +38322,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +sj +sC +sX +tl +sD +sE +um +tl +sE +sX +tl +sD +sD +sD +wZ +sj +rD +He ac ac ac aa "} -(76,1,1) = {" +(83,1,1) = {" aa ac ac @@ -27841,17 +38383,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -27933,21 +38464,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +sj +sD +sD +sD +sD +sD +sD +sD +sD +sD +sD +sD +sE +sE +tl +sj +rD +He ac ac ac aa "} -(77,1,1) = {" +(84,1,1) = {" aa ac ac @@ -27983,17 +38525,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -28075,21 +38606,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +sj +sD +sD +sD +sD +sD +sD +sD +sD +sD +sD +sD +sE +sE +xa +sj +rD +He ac ac ac aa "} -(78,1,1) = {" +(85,1,1) = {" aa ac ac @@ -28125,17 +38667,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP do dk @@ -28217,21 +38748,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +sj +sE +sX +tl +sD +sE +sX +tl +sE +sX +tl +sD +sD +sD +sD +sj +rD +He ac ac ac aa "} -(79,1,1) = {" +(86,1,1) = {" aa ac ac @@ -28267,17 +38809,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP dk dk @@ -28359,21 +38890,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rE +si +sB +sY +tl +sD +ub +un +tl +sE +vc +vl +sD +wg +wD +sB +si +rE +He ac ac ac aa "} -(80,1,1) = {" +(87,1,1) = {" aa ac ac @@ -28408,17 +38950,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac cP cP dk @@ -28501,21 +39032,32 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +He +rD +rD +si +sj +sj +tC +si +sj +uP +uP +sj +si +tC +wf +wf +si +rD +rD +He ac ac ac aa "} -(81,1,1) = {" +(88,1,1) = {" aa ac ac @@ -28535,17 +39077,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -28640,24 +39171,35 @@ ac ac ac ac -ry -ry -ry -ry -ry -DA -ac -ac -ac ac ac ac +He +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +rF +He ac ac ac aa "} -(82,1,1) = {" +(89,1,1) = {" aa ac ac @@ -28677,17 +39219,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah HU bP @@ -28782,24 +39313,35 @@ ac ac ac ac -ry -Da -Dn -Ds -Dx -DA -ac -ac -ac ac ac ac +rp +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rG +rp ac ac ac aa "} -(83,1,1) = {" +(90,1,1) = {" aa ac ac @@ -28819,17 +39361,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah Hf bP @@ -28924,24 +39455,35 @@ ac ac ac ac -ry -ry -ry -Dt -Ds -DA -ac -ac -ac ac ac ac +rs +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rs ac ac ac aa "} -(84,1,1) = {" +(91,1,1) = {" aa ac ac @@ -28961,17 +39503,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -29066,24 +39597,35 @@ ac ac ac ac -ry -Da -Do -Ds -Ds -DA -ac -ac -ac ac ac ac +rq +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rH +rs ac ac ac aa "} -(85,1,1) = {" +(92,1,1) = {" aa ac ac @@ -29103,17 +39645,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah Zw bP @@ -29197,35 +39728,46 @@ vG vG As vq +uJ +uJ +uJ +uJ +uJ +uJ +uJ +uJ +uJ +AD ac ac ac ac -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -Dy -DA -ac -ac -ac -ac -ac -ac +rs +rH +rH +rH +rH +rH +rH +rs +rs +rH +uZ +rs +rs +rH +rH +rH +rH +rH +rH +rs ac ac ac aa "} -(86,1,1) = {" +(93,1,1) = {" aa ac ac @@ -29245,17 +39787,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah RJ bP @@ -29339,35 +39870,46 @@ vG vG At vq +Cl +uJ +Cl +uJ +Cl +uJ +Cl +uJ +Cl AD AD AD AD -uJ -Cl -uJ -Cl -uJ -Cl -uJ -Cl -uJ -Cl -uJ -Ds -DA -ac -ac -ac -ac -ac -ac +AD +AD +rI +sk +sF +sF +sF +rI +rJ +uo +uQ +uQ +uo +rJ +rI +sF +sF +sF +sk +rI +rs ac ac ac aa "} -(87,1,1) = {" +(94,1,1) = {" aa ac ac @@ -29387,17 +39929,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -29481,35 +40012,46 @@ vt vq vq vq +Cm +uJ +Cm +uJ +Cm +uJ +Cm +uJ +Cm +AD AM Bh AN AM -uJ -Cm -uJ -Cm -uJ -Cm -uJ -Cm -uJ -Cm -uJ -Ds -DA -ac -ac -ac -ac -ac -ac +AD +rJ +rJ +rJ +rJ +rJ +rJ +rs +dk +dk +dk +dk +rs +rs +rs +rs +rs +rs +rs +rs ac ac ac aa "} -(88,1,1) = {" +(95,1,1) = {" aa ac ac @@ -29529,17 +40071,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah Og bP @@ -29622,24 +40153,35 @@ dk dk dk dk -AC -AN -Bi -Bi -AN +dk +Cn +Cn +Cn +KM +Cn +Cn +Cn +Cn +ZQ Cb -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Dp -Du -Ds -DA +AN +Bi +Bi +AN +AC +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +cP +ac ac ac ac @@ -29651,7 +40193,7 @@ ac ac aa "} -(89,1,1) = {" +(96,1,1) = {" aa ac ac @@ -29671,17 +40213,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah EI bP @@ -29764,24 +40295,35 @@ dk dk dk dk -AC -AN -Bi -Bi -AN +dk +uF +uF +uF +uF +uF +uF +uF +uF +uF Cb -uF -uF -uF -uF -uF -uF -uF -uF -Dq -uJ -ry -DA +AN +Bi +Bi +AN +AC +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +cP +ac ac ac ac @@ -29793,7 +40335,7 @@ ac ac aa "} -(90,1,1) = {" +(97,1,1) = {" aa ac ac @@ -29813,17 +40355,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -29906,24 +40437,35 @@ dk dk dk dk -AC -AN -Bi -Bi -AN +dk +Co +Co +Co +Co +Co +Co +Co +Co +GQ Cb -Co -Co -Co -Co -Co -Co -Co -Co -Dr -Dv -Ds -DA +AN +Bi +Bi +AN +AC +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +dk +cP +ac ac ac ac @@ -29935,7 +40477,7 @@ ac ac aa "} -(91,1,1) = {" +(98,1,1) = {" aa ac ac @@ -29955,17 +40497,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah bz bP @@ -30048,24 +40579,35 @@ vt vt vq vq +vq +Cm +uJ +Cm +uJ +Cm +uJ +Cm +uJ +Cm AD AO AO AO AO AD -Cm -uJ -Cm -uJ -Cm -uJ -Cm -uJ -Cm -uJ -Ds -DA +cP +cP +cP +cP +cP +cP +cP +mQ +nm +HX +mQ +cP +ac ac ac ac @@ -30077,7 +40619,7 @@ ac ac aa "} -(92,1,1) = {" +(99,1,1) = {" aa ac ac @@ -30097,17 +40639,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah HY bP @@ -30190,24 +40721,35 @@ vG vG vG vI +vq +Cl +uJ +Cl +uJ +Cl +uJ +Cl +uJ +Cl AD AM Bi Bi AM AD -Cl -uJ -Cl -uJ -Cl -uJ -Cl -uJ -Cl -uJ -Ds -DA +ac +ac +ac +ac +ac +ac +ac +mQ +nm +nm +mQ +ac +ac ac ac ac @@ -30219,7 +40761,7 @@ ac ac aa "} -(93,1,1) = {" +(100,1,1) = {" aa ac ac @@ -30239,17 +40781,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -30332,24 +40863,35 @@ wL zM zM xY +vq +uJ +uJ +uJ +uJ +uJ +uJ +uJ +uJ +uJ AD AP Bj Bt AP AD -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -uJ -Dy -DA +ac +ac +ac +ac +ac +ac +ac +mQ +nm +nm +mQ +ac +ac ac ac ac @@ -30361,7 +40903,7 @@ ac ac aa "} -(94,1,1) = {" +(101,1,1) = {" aa ac ac @@ -30381,17 +40923,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aH aX @@ -30474,6 +41005,16 @@ wL zM zM xY +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AQ Bk @@ -30486,12 +41027,13 @@ ac ac ac ac -ry -Da -Do -Ds -Ds -DA +ac +mQ +nm +nm +mQ +ac +ac ac ac ac @@ -30503,7 +41045,7 @@ ac ac aa "} -(95,1,1) = {" +(102,1,1) = {" aa ac ac @@ -30523,17 +41065,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aI aX @@ -30616,6 +41147,16 @@ vG vG vG vG +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AR AX @@ -30628,12 +41169,13 @@ ac ac ac ac -ry -ry -ry -Dw -Ds -DA +ac +mQ +nm +Rt +mQ +ac +ac ac ac ac @@ -30645,7 +41187,7 @@ ac ac aa "} -(96,1,1) = {" +(103,1,1) = {" aa ac ac @@ -30665,17 +41207,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aJ aX @@ -30758,6 +41289,16 @@ vG vG vG vG +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AS Bl @@ -30770,12 +41311,13 @@ ac ac ac ac -ry -Da -Dn -Ds -Dz -DA +ac +mQ +nm +nm +mQ +ac +ac ac ac ac @@ -30787,7 +41329,7 @@ ac ac aa "} -(97,1,1) = {" +(104,1,1) = {" aa ac ac @@ -30807,17 +41349,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah Ea aX @@ -30900,6 +41431,16 @@ wL zM zM xY +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AT AD @@ -30912,12 +41453,13 @@ ac ac ac ac -ry -ry -ry -ry -ry -DA +ac +mQ +nm +nm +mQ +ac +ac ac ac ac @@ -30929,7 +41471,7 @@ ac ac aa "} -(98,1,1) = {" +(105,1,1) = {" aa ac ac @@ -30949,17 +41491,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah VU aX @@ -31042,6 +41573,16 @@ wL zM zM xY +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AU Bm @@ -31055,9 +41596,10 @@ ac ac ac ac -ac -ac -ac +mQ +nm +nm +mQ ac ac ac @@ -31071,7 +41613,7 @@ ac ac aa "} -(99,1,1) = {" +(106,1,1) = {" aa ac ac @@ -31091,17 +41633,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aM aX @@ -31184,6 +41715,16 @@ vG vG vG vG +vq +ac +ac +ac +ac +ac +ac +ac +ac +ac AD AV AX @@ -31197,9 +41738,10 @@ ac ac ac ac -ac -ac -ac +mQ +nm +nm +mQ ac ac ac @@ -31213,7 +41755,7 @@ ac ac aa "} -(100,1,1) = {" +(107,1,1) = {" aa ac ac @@ -31233,17 +41775,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aN aX @@ -31326,36 +41857,47 @@ vG vG vG vD +vq +ac +ac +ac +ac +AD +AD +AD +AD +AD AD AW AX AX BP -AD -AD -AD -AD -AD -AD -AD -AD -AD -AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +mQ +mQ +Pi +Pi +Pi +Pi +Pi +mQ +nm +Ql +mQ +Pi +Pi +Pi +Pi +Pi +mQ +mQ +mQ ac ac ac aa "} -(101,1,1) = {" +(108,1,1) = {" aa ac ac @@ -31375,17 +41917,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah bl aX @@ -31468,36 +41999,47 @@ vG vG vG Aq -AD -AX -Bl -Bx -BQ +vq +ac +ac +ac +ac AD Cp AX AX AX +AT AX -AX -AX -AX -AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +gC +Kd +BQ +mQ +XZ +Fw +UN +UN +UN +Ju +UN +PJ +nm +nm +Nd +UN +UN +UN +UN +UN +IZ +XZ +mQ ac ac ac aa "} -(102,1,1) = {" +(109,1,1) = {" aa ac ac @@ -31517,17 +42059,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah Oc aX @@ -31558,7 +42089,7 @@ em gs gO gO -gO +RO hU ho ho @@ -31610,11 +42141,11 @@ vq vt vt vt -AD -AT -AD -AD -AD +vq +cP +cP +cP +cP AD AT AD @@ -31625,21 +42156,32 @@ AD AD AT AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iF +nm +nm +jl +jv +jx +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(103,1,1) = {" +(110,1,1) = {" aa ac ac @@ -31659,17 +42201,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -31700,7 +42231,7 @@ em dm gP gP -hx +gP ho id iD @@ -31767,21 +42298,32 @@ CH CU AX AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iF +OI +Ku +ju +jw +jx +jy +jy +jx +iF +nm +mQ ac ac ac aa "} -(104,1,1) = {" +(111,1,1) = {" aa ac ac @@ -31802,17 +42344,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ap aG @@ -31820,7 +42351,7 @@ aZ aG bH ah -aX +Sc aX aX ah @@ -31909,21 +42440,32 @@ CI AX Db AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gZ +gY +gY +iF +Sj +YG +ju +jx +jJ +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(105,1,1) = {" +(112,1,1) = {" aa ac ac @@ -31944,17 +42486,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aq aG @@ -32051,21 +42582,32 @@ CJ CV AX AD -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gZ +gY +gY +iF +Sv +Tp +ju +jx +jx +jx +jx +jM +iF +nm +mQ ac ac ac aa "} -(106,1,1) = {" +(113,1,1) = {" aa ac ac @@ -32086,17 +42628,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ar aG @@ -32193,21 +42724,32 @@ nK nK Dc nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +Ru +gZ +gY +gY +gY +gY +iF +QZ +TC +ju +jx +jy +jx +jx +jx +YL +nm +mQ ac ac ac aa "} -(107,1,1) = {" +(114,1,1) = {" aa ac ac @@ -32228,17 +42770,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah as aG @@ -32335,21 +42866,32 @@ CK CW oX nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iF +Ht +Ev +ju +jx +jx +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(108,1,1) = {" +(115,1,1) = {" aa ac ac @@ -32370,17 +42912,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah au aG @@ -32477,21 +43008,32 @@ CL oX Dd nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iF +Si +Fp +ju +jy +jx +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(109,1,1) = {" +(116,1,1) = {" aa ac ac @@ -32512,17 +43054,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah at aG @@ -32619,21 +43150,32 @@ CM CX De nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iF +KY +Ur +ju +jx +jx +jM +jx +jy +iO +nm +mQ ac ac ac aa "} -(110,1,1) = {" +(117,1,1) = {" aa ac ac @@ -32648,17 +43190,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -32761,21 +43292,32 @@ CN CY De nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gZ +gY +hZ +gY +iF +Vi +ZJ +ju +jx +jx +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(111,1,1) = {" +(118,1,1) = {" aa ac ac @@ -32790,23 +43332,12 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah -ae -ag -ag -ag -aV +Iq +PY +PY +PY +Dx ah av aG @@ -32903,21 +43434,32 @@ CO CX De nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gY +gY +iO +nm +nm +ju +jx +jy +jx +jx +jx +iF +nm +mQ ac ac ac aa "} -(112,1,1) = {" +(119,1,1) = {" aa ac ac @@ -32932,17 +43474,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af ai @@ -33045,21 +43576,32 @@ CP oX De nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +ju +gY +gY +gY +gZ +gY +iF +nm +nm +ju +jx +jx +jx +jx +jM +iF +nm +mQ ac ac ac aa "} -(113,1,1) = {" +(120,1,1) = {" aa ac ac @@ -33074,17 +43616,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af aj @@ -33187,21 +43718,32 @@ CQ oX Df nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +nm +hb +ha +gY +gY +gZ +iz +iP +nm +nm +hb +ha +jx +jx +jx +iz +iP +nm +mQ ac ac ac aa "} -(114,1,1) = {" +(121,1,1) = {" aa ac ac @@ -33216,17 +43758,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af ak @@ -33329,21 +43860,32 @@ CR oX Dg nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +XZ +nm +hb +hu +hO +hu +iP +XZ +nm +nm +XZ +hb +hu +jN +hu +iP +nm +XZ +mQ ac ac ac aa "} -(115,1,1) = {" +(122,1,1) = {" aa ac ac @@ -33358,17 +43900,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af al @@ -33471,21 +44002,32 @@ CS oX Dg nK -ac -ac -ac -ac -ac -ac -ac -ac -ac +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ +mQ ac ac ac aa "} -(116,1,1) = {" +(123,1,1) = {" aa ac ac @@ -33500,17 +44042,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af al @@ -33625,9 +44156,20 @@ ac ac ac ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} -(117,1,1) = {" +(124,1,1) = {" aa ac ac @@ -33642,17 +44184,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af al @@ -33752,9 +44283,20 @@ uJ uJ nK nK -CZ nK nK +nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -33769,7 +44311,7 @@ ac ac aa "} -(118,1,1) = {" +(125,1,1) = {" aa ac ac @@ -33784,17 +44326,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af al @@ -33891,12 +44422,23 @@ ho BU ho ac -nK -CC -CE -CE -Di -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -33911,7 +44453,7 @@ ac ac aa "} -(119,1,1) = {" +(126,1,1) = {" aa ac ac @@ -33926,17 +44468,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af am @@ -34033,12 +44564,23 @@ ho Cq ho ac -nK -CD -CE -CE -Dj -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34053,7 +44595,7 @@ ac ac aa "} -(120,1,1) = {" +(127,1,1) = {" aa ac ac @@ -34068,17 +44610,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af an @@ -34175,12 +44706,23 @@ BW BW ho ac -nK -CE -CE -CE -Dk -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34195,7 +44737,7 @@ ac ac aa "} -(121,1,1) = {" +(128,1,1) = {" aa ac ac @@ -34210,17 +44752,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah af ao @@ -34317,12 +44848,23 @@ BW Cr ho ac -nK -CF -CE -CE -Dl -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34337,7 +44879,7 @@ ac ac aa "} -(122,1,1) = {" +(129,1,1) = {" aa ac ac @@ -34352,17 +44894,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah af @@ -34459,12 +44990,23 @@ BW BW ho ac -nK -CG -CE -CE -Dm -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34479,7 +45021,7 @@ ac ac aa "} -(123,1,1) = {" +(130,1,1) = {" aa ac ac @@ -34494,17 +45036,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aX aX @@ -34601,12 +45132,23 @@ BW Cs ho ac -nK -nK -nK -CZ -nK -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34621,7 +45163,7 @@ ac ac aa "} -(124,1,1) = {" +(131,1,1) = {" aa ac ac @@ -34636,17 +45178,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aX aX @@ -34743,12 +45274,23 @@ Cg ho ho ac -nK -JW -CE -CE -JB -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34763,7 +45305,7 @@ ac ac aa "} -(125,1,1) = {" +(132,1,1) = {" aa ac ac @@ -34778,17 +45320,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah aX aX @@ -34885,12 +45416,23 @@ Ch Ct ho ac -nK -Xi -CE -CE -Hv -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -34905,7 +45447,7 @@ ac ac aa "} -(126,1,1) = {" +(133,1,1) = {" aa ac ac @@ -34920,17 +45462,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah ah ah @@ -35027,12 +45558,23 @@ Ch BW ho ac -nK -Lb -CE -CE -Sp -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -35047,7 +45589,7 @@ ac ac aa "} -(127,1,1) = {" +(134,1,1) = {" aa ac ac @@ -35073,17 +45615,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah bU bS @@ -35169,12 +45700,23 @@ Ch Ct ho ac -nK -CE -CE -CE -YM -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -35189,7 +45731,7 @@ ac ac aa "} -(128,1,1) = {" +(135,1,1) = {" aa ac ac @@ -35215,17 +45757,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah bV bS @@ -35311,12 +45842,23 @@ Ch BW ho ac -nK -HL -CE -CE -Rx -nK +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac ac ac ac @@ -35331,7 +45873,7 @@ ac ac aa "} -(129,1,1) = {" +(136,1,1) = {" aa ac ac @@ -35357,17 +45899,6 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ah bW cb @@ -35377,7 +45908,7 @@ co ah cF aG -aG +ZN dm dU eh @@ -35453,989 +45984,6 @@ Ch Ct ho ac -nK -nK -nK -nK -nK -nK -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(130,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -dn -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -uO -uO -uO -uO -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(131,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(132,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(133,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(134,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(135,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -"} -(136,1,1) = {" -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac ac ac ac @@ -36493,90 +46041,90 @@ ac ac ac ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +dn +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +uO +uO +uO +uO +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX ac ac ac diff --git a/maps/tether/tether_areas.dm b/maps/tether/tether_areas.dm index 842fccffdb..648f11d584 100644 --- a/maps/tether/tether_areas.dm +++ b/maps/tether/tether_areas.dm @@ -46,19 +46,19 @@ /area/turbolift/t_surface/level2 name = "surface (level 2)" lift_floor_label = "Surface 2" - lift_floor_name = "Atmos, Maintenance" + lift_floor_name = "Atmos, Chapel, Maintenance" lift_announce_str = "Arriving at Base Level 2." /area/turbolift/t_surface/level3 name = "surface (level 3)" lift_floor_label = "Surface 3" - lift_floor_name = "Science, Bar, Pool" + lift_floor_name = "Bridge, Science, Bar, Pool" lift_announce_str = "Arriving at Base Level 3." /area/turbolift/t_station/level1 name = "asteroid (level 1)" lift_floor_label = "Asteroid 1" - lift_floor_name = "Eng, Bridge, Chapel, Park, Cryo" + lift_floor_name = "Eng, Secondary Bridge, Park, Cryo, Visitor Offices" lift_announce_str = "Arriving at Station Level 1." /area/turbolift/t_station/level2 diff --git a/maps/tether/tether_areas2.dm b/maps/tether/tether_areas2.dm index 36ba0a6428..abb51ee803 100644 --- a/maps/tether/tether_areas2.dm +++ b/maps/tether/tether_areas2.dm @@ -37,14 +37,14 @@ name = "\improper Tram Station" icon_state = "dk_yellow" -/area/tether/surfacebase/atrium_one - name = "\improper Atrium First Floor" +/area/tether/surfacebase/surface_one_hall + name = "\improper First Floor Hallway" icon_state = "dk_yellow" -/area/tether/surfacebase/atrium_two - name = "\improper Atrium Second Floor" +/area/tether/surfacebase/surface_two_hall + name = "\improper Second Floor Hallway" icon_state = "dk_yellow" -/area/tether/surfacebase/atrium_three - name = "\improper Atrium Third Floor" +/area/tether/surfacebase/surface_three_hall + name = "\improper Third Floor Hallway" icon_state = "dk_yellow" /area/tether/surfacebase/north_stairs_one @@ -175,7 +175,8 @@ name = "\improper Exploration Substation" /area/maintenance/tether_midpoint name = "\improper Tether Midpoint Maint" - +/area/maintenance/commandmaint + name = "\improper Command Maintenance" /area/tether/surfacebase/medical icon_state = "medical" @@ -283,7 +284,8 @@ name = "Atmospherics Gas Storage" icon_state = "atmos" -/area/engineering/atmos/intake +//TFF 11/12/19 - Minor refactor, makes mice spawn only in Atmos. +/area/engineering/atmos_intake name = "\improper Atmospherics Intake" icon_state = "atmos" sound_env = MOUNTAINS @@ -667,6 +669,27 @@ icon_state = "dk_yellow" flags = RAD_SHIELDED | BLUE_SHIELDED +/area/crew_quarters/sleep/spacedorm1 + name = "\improper Visitor Lodging 1" + icon_state = "dk_yellow" + lightswitch = 0 + flags = RAD_SHIELDED | BLUE_SHIELDED +/area/crew_quarters/sleep/spacedorm2 + name = "\improper Visitor Lodging 2" + icon_state = "dk_yellow" + lightswitch = 0 + flags = RAD_SHIELDED | BLUE_SHIELDED +/area/crew_quarters/sleep/spacedorm3 + name = "\improper Visitor Lodging 3" + icon_state = "dk_yellow" + lightswitch = 0 + flags = RAD_SHIELDED | BLUE_SHIELDED +/area/crew_quarters/sleep/spacedorm4 + name = "\improper Visitor Lodging 4" + icon_state = "dk_yellow" + lightswitch = 0 + flags = RAD_SHIELDED | BLUE_SHIELDED + /area/holodeck/holodorm/source_basic name = "\improper Holodeck Source" flags = RAD_SHIELDED | BLUE_SHIELDED @@ -762,8 +785,30 @@ /area/bridge/secondary name = "\improper Secondary Command Office" +/area/bridge/secondary/hallway + name = "\improper Secondary Command Hallway" /area/bridge/secondary/meeting_room name = "\improper Secondary Command Meeting Room" + lightswitch = 0 +/area/bridge/secondary/teleporter + name = "\improper Secondary Teleporter" + lightswitch = 0 + +/area/tether/station/visitorhallway + name = "\improper Visitor Hallway" + icon_state = "dk_yellow" +/area/tether/station/visitorhallway/office + name = "\improper Visitor Office" + icon_state = "dk_yellow" + lightswitch = 0 +/area/tether/station/visitorhallway/laundry + name = "\improper Space Laundry" + icon_state = "dk_yellow" + lightswitch = 0 +/area/tether/station/visitorhallway/lounge + name = "\improper Visitor Lounge" + icon_state = "dk_yellow" + lightswitch = 0 /area/maintenance/station icon_state = "fsmaint" @@ -798,6 +843,13 @@ /area/maintenance/abandonedlibraryconference name = "\improper Abandoned Library Conference" icon_state = "library" +/area/maintenance/station/spacecommandmaint + name = "\improper Space Command Maintenance" + icon_state = "bridge" + sound_env = SEWER_PIPE +/area/maintenance/substation/spacecommand + name = "\improper Space Command Substation" + icon_state = "substation" /area/shuttle/tether/crash1 name = "\improper Crash Site 1" @@ -985,6 +1037,138 @@ /area/bigship/teleporter name = "Bigship Teleporter Room" +//////// Mothership areas //////// +/area/mothership + requires_power = 1 + flags = RAD_SHIELDED + base_turf = /turf/space + icon_state = "blue-red2" + +/area/mothership/breakroom + name = "Warship - Breakroom" + +/area/mothership/hydroponics + name = "Warship - Hydroponics" + +/area/mothership/kitchen + name = "Warship - Kitchen" + +/area/mothership/eva + name = "Warship - EVA" + +/area/mothership/bathroom1 + name = "Warship - Bathroom 1" + +/area/mothership/bathroom2 + name = "Warship - Bathroom 2" + +/area/mothership/dorm1 + name = "Warship - Dorm 1" + +/area/mothership/dorm2 + name = "Warship - Dorm 2" + +/area/mothership/dorm3 + name = "Warship - Dorm 3" + +/area/mothership/dorm4 + name = "Warship - Dorm 4" + +/area/mothership/dorm5 + name = "Warship - Dorm 5" + +/area/mothership/dorm6 + name = "Warship - Dorm 6" + +/area/mothership/chemistry + name = "Warship - Chemistry" + +/area/mothership/surgery + name = "Warship - Surgery" + +/area/mothership/vault + name = "Warship - Vault" + flags = RAD_SHIELDED | BLUE_SHIELDED + +/area/mothership/teleporter + name = "Warship - Teleporter Room" + +/area/mothership/security + name = "Warship - Security Equipment" + +/area/mothership/treatment + name = "Warship - Treatment Center" + +/area/mothership/medical + name = "Warship - Medical Equipment" + +/area/mothership/resleeving + name = "Warship - Resleeving" + +/area/mothership/morgue + name = "Warship - Morgue" + +/area/mothership/rnd + name = "Warship - Research" + +/area/mothership/robotics + name = "Warship - Robotics" + +/area/mothership/sechallway + name = "Warship - Security Hallway" + +/area/mothership/processing + name = "Warship - Processing" + +/area/mothership/warden + name = "Warship - Warden" + +/area/mothership/armory + name = "Warship - Armory" + flags = RAD_SHIELDED | BLUE_SHIELDED + +/area/mothership/bridge + name = "Warship - Bridge" + +/area/mothership/holodeck + name = "Warship - Holodeck Controls" +/area/mothership/holodeck/holo + name = "Warship - Holodeck" + icon_state = "dk_yellow" + +/area/mothership/cryotube + name = "Warship - Cryo chamber" + +/area/mothership/engineering + name = "Warship - Engineering" + +/area/mothership/hallway + name = "Warship - Main Hallway" + +/area/mothership/telecomms1 + name = "Warship - Telecommunications Main" + +/area/mothership/telecomms2 + name = "Warship - Telecommunications Relay" + +//////// Abductor Areas //////// +/area/unknown + requires_power = 0 + flags = RAD_SHIELDED + icon_state = "red2" + +/area/unknown/dorm1 + name = "Unknown Dorm 1" + +/area/unknown/dorm2 + name = "Unknown Dorm 2" + +/area/unknown/dorm3 + name = "Unknown Dorm 3" + +/area/unknown/dorm4 + name = "Unknown Dorm 4" + //////// Small Cruiser Areas //////// /area/houseboat name = "Small Cruiser" @@ -1037,7 +1221,7 @@ name = "Small Cruiser Shuttle - Station" icon_state = "blue2" - +// ERT/Deathsquad Shuttle /area/shuttle/specialops/centcom name = "Special Operations Shuttle - Centcom" icon_state = "shuttlered" @@ -1047,6 +1231,11 @@ name = "Special Operations Shuttle - Tether" icon_state = "shuttlered" +/area/shuttle/specialops/transit + name = "transit" + icon_state = "shuttlered" + base_turf = /turf/space/transit/east + // Tether Map has this shuttle /area/shuttle/tether/surface name = "Tether Shuttle Landed" @@ -1061,13 +1250,66 @@ name = "Tether Shuttle Transit" icon_state = "shuttle2" +//Skipjack + +/area/skipjack_station + name = "Raider Outpost" + icon_state = "yellow" + requires_power = 0 + dynamic_lighting = 0 + flags = RAD_SHIELDED + ambience = AMBIENCE_HIGHSEC + +/area/skipjack_station/transit + name = "transit" + icon_state = "shuttlered" + base_turf = /turf/space/transit/north + +/area/skipjack_station/orbit + name = "near the Tether" + icon_state = "northwest" + +/area/skipjack_station/arrivals_dock + name = "\improper docked with Tether" + icon_state = "shuttle" + +// Ninja areas +/area/ninja_dojo + name = "\improper Ninja Base" + icon_state = "green" + requires_power = 0 + flags = RAD_SHIELDED + ambience = AMBIENCE_HIGHSEC + +/area/ninja_dojo/dojo + name = "\improper Clan Dojo" + dynamic_lighting = 0 + +/area/ninja_dojo/start + name = "\improper Clan Dojo" + icon_state = "shuttlered" + base_turf = /turf/simulated/floor/plating + +/area/ninja_dojo/orbit + name = "near the Tether" + icon_state = "south" + +/area/ninja_dojo/transit + name = "transit" + icon_state = "shuttlered" + base_turf = /turf/space/transit/north + +/area/ninja_dojo/arrivals_dock + name = "\improper docked with Tether" + icon_state = "shuttle" + dynamic_lighting = 0 // Exclude some more areas from the atmos leak event so people don't get trapped when spawning. /datum/event/atmos_leak/setup() excluded |= /area/tether/surfacebase/tram - excluded |= /area/tether/surfacebase/atrium_one - excluded |= /area/tether/surfacebase/atrium_two - excluded |= /area/tether/surfacebase/atrium_three + excluded |= /area/tether/surfacebase/surface_one_hall + excluded |= /area/tether/surfacebase/surface_two_hall + excluded |= /area/tether/surfacebase/surface_three_hall excluded |= /area/teleporter/departing excluded |= /area/hallway/station/upper ..() \ No newline at end of file diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm index 557f2fab7b..029798c96d 100644 --- a/maps/tether/tether_defines.dm +++ b/maps/tether/tether_defines.dm @@ -19,6 +19,7 @@ #define Z_LEVEL_AEROSTAT 18 #define Z_LEVEL_AEROSTAT_SURFACE 19 #define Z_LEVEL_DEBRISFIELD 20 +#define Z_LEVEL_GATEWAY 21 //Camera networks #define NETWORK_TETHER "Tether" @@ -112,8 +113,9 @@ /area/crew_quarters/sleep/Dorm_5/holo, /area/crew_quarters/sleep/Dorm_7/holo, /area/rnd/miscellaneous_lab) //TFF 31/8/19 - exempt new construction site from unit tests + //TFF 11/12/19 - Minor refactor, makes mice spawn only in Atmos. unit_test_exempt_from_atmos = list( - /area/engineering/atmos/intake, // Outside, + /area/engineering/atmos_intake, // Outside, /area/rnd/external, // Outside, /area/tether/surfacebase/mining_main/external, // Outside, /area/tether/surfacebase/mining_main/airlock, // Its an airlock, @@ -128,6 +130,14 @@ list("Debris Field - Z1 Space") ) + lateload_single_pick = list( + //list("Snow Outpost"), // Unplayable mapgen, + //list("Zoo"), // Too big. way, way too big + list("Carp Farm"), + list("Snow Field"), + list("Listening Post") + ) + ai_shell_restricted = TRUE ai_shell_allowed_levels = list( Z_LEVEL_SURFACE_LOW, diff --git a/maps/tether/tether_shuttle_defs.dm b/maps/tether/tether_shuttle_defs.dm index 925b7f8a0d..ed42f80e39 100644 --- a/maps/tether/tether_shuttle_defs.dm +++ b/maps/tether/tether_shuttle_defs.dm @@ -197,6 +197,7 @@ ////////////////////////////////////////////////////////////// // CC Lewdship shuttle +/* /datum/shuttle/ferry/cruiser_shuttle name = "Cruiser Shuttle" location = 1 @@ -205,4 +206,5 @@ area_station = /area/shuttle/cruiser/station docking_controller_tag = "cruiser_shuttle" dock_target_station = "d1a1_dock" - dock_target_offsite = "cruiser_shuttle_bay" \ No newline at end of file + dock_target_offsite = "cruiser_shuttle_bay" +*/ \ No newline at end of file diff --git a/maps/tether/tether_shuttles.dm b/maps/tether/tether_shuttles.dm index de4368e73e..3f0afeb1a9 100644 --- a/maps/tether/tether_shuttles.dm +++ b/maps/tether/tether_shuttles.dm @@ -282,6 +282,129 @@ my_area = /area/shuttle/excursion/bluespace preferred_interim_area = /area/shuttle/excursion/space_moving +// Heist +/obj/machinery/computer/shuttle_control/web/heist + name = "skipjack control console" + req_access = list(access_syndicate) + shuttle_tag = "Skipjack" + +/datum/shuttle/web_shuttle/heist + name = "Skipjack" + warmup_time = 0 + can_cloak = TRUE + cloaked = TRUE + current_area = /area/skipjack_station/start +// docking_controller_tag = "skipjack_shuttle" + web_master_type = /datum/shuttle_web_master/heist + +/datum/shuttle_web_master/heist + destination_class = /datum/shuttle_destination/heist + starting_destination = /datum/shuttle_destination/heist/root + +/datum/shuttle_destination/heist/root + name = "Raider Outpost" + my_area = /area/skipjack_station/start + preferred_interim_area = /area/skipjack_station/transit + +// dock_target = "skipjack_base" + + routes_to_make = list( + /datum/shuttle_destination/heist/outside_Tether = 1 MINUTE, + // /datum/shuttle_destination/heist/docked_Tether = 1 MINUTE + ) + +/datum/shuttle_destination/heist/outside_Tether + name = "NSB Adephagia - Nearby" + my_area = /area/skipjack_station/orbit + preferred_interim_area = /area/skipjack_station/transit + + routes_to_make = list( + /datum/shuttle_destination/heist/root = 1 MINUTE, + // /datum/shuttle_destination/heist/docked_Tether = 0 + ) + +/* +/datum/shuttle_destination/heist/docked_Tether + name = "NSB Adephagia - Arrivals Docking Port" + my_area = /area/skipjack_station/arrivals_dock + preferred_interim_area = /area/skipjack_station/transit + +// dock_target = "skipjack_shuttle_dock_airlock" + announcer = "NSB Adephagia Docking Computer" + + routes_to_make = list( + /datum/shuttle_destination/heist/root = 1 MINUTE, + /datum/shuttle_destination/heist/outside_Tether = 0 + ) + +/datum/shuttle_destination/heist/docked_SC/get_arrival_message() + return "Attention, [master.my_shuttle.visible_name] has arrived to the Arrivals Dock." + +/datum/shuttle_destination/heist/docked_SC/get_departure_message() + return "Attention, [master.my_shuttle.visible_name] has departed the Arrivals Dock." +*/ + +// Ninja +/obj/machinery/computer/shuttle_control/web/ninja + name = "stealth shuttle control console" + req_access = list(access_syndicate) + shuttle_tag = "Ninja" + +/datum/shuttle/web_shuttle/ninja + name = "Ninja" + visible_name = "Unknown Vessel" + warmup_time = 0 + can_cloak = TRUE + cloaked = TRUE + current_area = /area/ninja_dojo/start + docking_controller_tag = "ninja_shuttle" + web_master_type = /datum/shuttle_web_master/ninja + +/datum/shuttle_web_master/ninja + destination_class = /datum/shuttle_destination/ninja + starting_destination = /datum/shuttle_destination/ninja/root + +/datum/shuttle_destination/ninja/root + name = "Dojo Outpost" + my_area = /area/ninja_dojo/start + preferred_interim_area = /area/ninja_dojo/transit + + dock_target = "ninja_base" + + routes_to_make = list( + /datum/shuttle_destination/ninja/outside_Tether = 30 SECONDS, + // /datum/shuttle_destination/ninja/docked_Tether = 30 SECONDS + ) + +/datum/shuttle_destination/ninja/outside_Tether + name = "NSB Adephagia - Nearby" + my_area = /area/ninja_dojo/orbit + preferred_interim_area = /area/ninja_dojo/transit + + routes_to_make = list( + /datum/shuttle_destination/ninja/root = 30 SECONDS, + // /datum/shuttle_destination/ninja/docked_Tether = 0 + ) +/* +/datum/shuttle_destination/ninja/docked_Tether + name = "NSB Adephagia - Arrivals Docking Port" + my_area = /area/ninja_dojo/arrivals_dock + preferred_interim_area = /area/ninja_dojo/transit + + dock_target = "ninja_shuttle_dock_airlock" + announcer = "NSB Adephagia Docking Computer" + + routes_to_make = list( + /datum/shuttle_destination/ninja/root = 30 SECONDS, + /datum/shuttle_destination/ninja/outside_Tether = 0 + ) + +/datum/shuttle_destination/syndie/docked_SC/get_arrival_message() + return "Attention, [master.my_shuttle.visible_name] has arrived to the Arrivals Dock." + +/datum/shuttle_destination/syndie/docked_SC/get_departure_message() + return "Attention, [master.my_shuttle.visible_name] has departed the Arrivals Dock." +*/ //////////////////////////////////// //////// Specops Shuttle /////////// @@ -294,8 +417,8 @@ req_one_access = list(access_cent_specops) /datum/shuttle/web_shuttle/specialops - name = "Special Operations Shuttle" - visible_name = "Special Operations Shuttle" + name = "NDV Phantom" + visible_name = "NDV Phantom" current_area = /area/shuttle/specialops/centcom docking_controller_tag = "specops_shuttle_hatch" web_master_type = /datum/shuttle_web_master/specialops @@ -310,13 +433,14 @@ /datum/shuttle_destination/specialops/tether name = "NSB Adephagia Docking Arm 2" my_area = /area/shuttle/specialops/tether + preferred_interim_area = /area/shuttle/specialops/transit dock_target = "specops_dock" radio_announce = 1 announcer = "A.L.I.C.E." routes_to_make = list( - /datum/shuttle_destination/specialops/centcom = 0, + /datum/shuttle_destination/specialops/centcom = 15, ) /datum/shuttle_destination/specialops/tether/get_arrival_message() @@ -329,7 +453,8 @@ /datum/shuttle_destination/specialops/centcom name = "Central Command" my_area = /area/shuttle/specialops/centcom + preferred_interim_area = /area/shuttle/specialops/transit routes_to_make = list( - /datum/shuttle_destination/specialops/tether = 0 + /datum/shuttle_destination/specialops/tether = 15 ) \ No newline at end of file diff --git a/maps/tether/tether_things.dm b/maps/tether/tether_things.dm index b0e05bdf68..fbe0a8d343 100644 --- a/maps/tether/tether_things.dm +++ b/maps/tether/tether_things.dm @@ -317,6 +317,10 @@ var/global/list/latejoin_tram = list() name = "dorm seven holodeck control" projection_area = /area/crew_quarters/sleep/Dorm_7/holo +/obj/machinery/computer/HolodeckControl/holodorm/warship + name = "warship holodeck control" + projection_area = /area/mothership/holodeck/holo + // Small Ship Holodeck /obj/machinery/computer/HolodeckControl/houseboat projection_area = /area/houseboat/holodeck_area diff --git a/nano/images/nanomap_z2.png b/nano/images/nanomap_z2.png index 1f076cad9f..5ccd461808 100644 Binary files a/nano/images/nanomap_z2.png and b/nano/images/nanomap_z2.png differ diff --git a/nano/images/nanomap_z3.png b/nano/images/nanomap_z3.png index ec916ed1bb..0761eed916 100644 Binary files a/nano/images/nanomap_z3.png and b/nano/images/nanomap_z3.png differ diff --git a/nano/images/nanomap_z5.png b/nano/images/nanomap_z5.png index 73f01b53b8..d8aece303d 100644 Binary files a/nano/images/nanomap_z5.png and b/nano/images/nanomap_z5.png differ diff --git a/sound/voice/awoo.ogg b/sound/voice/awoo.ogg new file mode 100644 index 0000000000..1cbdbc01df Binary files /dev/null and b/sound/voice/awoo.ogg differ diff --git a/sound/voice/bark2.ogg b/sound/voice/bark2.ogg new file mode 100644 index 0000000000..dab73c4743 Binary files /dev/null and b/sound/voice/bark2.ogg differ diff --git a/sound/voice/hiss.ogg b/sound/voice/hiss.ogg new file mode 100644 index 0000000000..cd9fa22c37 Binary files /dev/null and b/sound/voice/hiss.ogg differ diff --git a/sound/voice/merp.ogg b/sound/voice/merp.ogg new file mode 100644 index 0000000000..b40b7a365b Binary files /dev/null and b/sound/voice/merp.ogg differ diff --git a/sound/voice/nya.ogg b/sound/voice/nya.ogg new file mode 100644 index 0000000000..1ca8cc08ea Binary files /dev/null and b/sound/voice/nya.ogg differ diff --git a/sound/voice/peep.ogg b/sound/voice/peep.ogg new file mode 100644 index 0000000000..b687300677 Binary files /dev/null and b/sound/voice/peep.ogg differ diff --git a/sound/voice/weh.ogg b/sound/voice/weh.ogg new file mode 100644 index 0000000000..9867651bc2 Binary files /dev/null and b/sound/voice/weh.ogg differ diff --git a/tools/Redirector/textprocs.dm b/tools/Redirector/textprocs.dm index b8d49ade72..950aa14df7 100644 --- a/tools/Redirector/textprocs.dm +++ b/tools/Redirector/textprocs.dm @@ -40,12 +40,12 @@ proc ///////////////////// dd_hasprefix(text, prefix) var/start = 1 - var/end = lentext(prefix) + 1 + var/end = length(prefix) + 1 return findtext(text, prefix, start, end) dd_hasPrefix(text, prefix) var/start = 1 - var/end = lentext(prefix) + 1 + var/end = length(prefix) + 1 return findtextEx(text, prefix, start, end) @@ -64,8 +64,8 @@ proc // Turning text into lists // ///////////////////////////// dd_text2list(text, separator) - var/textlength = lentext(text) - var/separatorlength = lentext(separator) + var/textlength = length(text) + var/separatorlength = length(separator) var/list/textList = new /list() var/searchPosition = 1 var/findPosition = 1 @@ -84,8 +84,8 @@ proc return textList dd_text2List(text, separator) - var/textlength = lentext(text) - var/separatorlength = lentext(separator) + var/textlength = length(text) + var/separatorlength = length(separator) var/list/textList = new /list() var/searchPosition = 1 var/findPosition = 1 diff --git a/vorestation.dme b/vorestation.dme index 60344ac39e..697b9207ac 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -23,6 +23,7 @@ #include "code\stylesheet.dm" #include "code\world.dm" #include "code\__datastructures\globals.dm" +#include "code\__defines\__513_compatibility.dm" #include "code\__defines\_compile_options.dm" #include "code\__defines\_lists.dm" #include "code\__defines\_planes+layers.dm" @@ -90,7 +91,9 @@ #include "code\_global_vars\mobs.dm" #include "code\_global_vars\sensitive.dm" #include "code\_global_vars\lists\mapping.dm" +#include "code\_global_vars\lists\misc.dm" #include "code\_helpers\_global_objects.dm" +#include "code\_helpers\_global_objects_vr.dm" #include "code\_helpers\_lists.dm" #include "code\_helpers\atmospherics.dm" #include "code\_helpers\atom_movables.dm" @@ -133,6 +136,7 @@ #include "code\_onclick\rig.dm" #include "code\_onclick\telekinesis.dm" #include "code\_onclick\hud\_defines.dm" +#include "code\_onclick\hud\_defines_vr.dm" #include "code\_onclick\hud\ability_screen_objects.dm" #include "code\_onclick\hud\action.dm" #include "code\_onclick\hud\ai.dm" @@ -482,6 +486,7 @@ #include "code\game\antagonist\station\renegade.dm" #include "code\game\antagonist\station\revolutionary.dm" #include "code\game\antagonist\station\rogue_ai.dm" +#include "code\game\antagonist\station\stowaway.dm" #include "code\game\antagonist\station\thug.dm" #include "code\game\antagonist\station\traitor.dm" #include "code\game\area\ai_monitored.dm" @@ -918,6 +923,7 @@ #include "code\game\objects\effects\overlays.dm" #include "code\game\objects\effects\portals.dm" #include "code\game\objects\effects\spiders.dm" +#include "code\game\objects\effects\spiders_vr.dm" #include "code\game\objects\effects\step_triggers.dm" #include "code\game\objects\effects\zone_divider.dm" #include "code\game\objects\effects\alien\aliens.dm" @@ -1009,6 +1015,7 @@ #include "code\game\objects\items\devices\traitordevices.dm" #include "code\game\objects\items\devices\transfer_valve.dm" #include "code\game\objects\items\devices\translator.dm" +#include "code\game\objects\items\devices\translocator_vr.dm" #include "code\game\objects\items\devices\tvcamera.dm" #include "code\game\objects\items\devices\uplink.dm" #include "code\game\objects\items\devices\uplink_random_lists.dm" @@ -1175,6 +1182,7 @@ #include "code\game\objects\items\weapons\storage\backpack.dm" #include "code\game\objects\items\weapons\storage\backpack_vr.dm" #include "code\game\objects\items\weapons\storage\bags.dm" +#include "code\game\objects\items\weapons\storage\bags_vr.dm" #include "code\game\objects\items\weapons\storage\belt.dm" #include "code\game\objects\items\weapons\storage\belt_vr.dm" #include "code\game\objects\items\weapons\storage\bible.dm" @@ -1305,6 +1313,7 @@ #include "code\game\objects\structures\flora\grass.dm" #include "code\game\objects\structures\flora\trees.dm" #include "code\game\objects\structures\ghost_pods\ghost_pods.dm" +#include "code\game\objects\structures\ghost_pods\human.dm" #include "code\game\objects\structures\ghost_pods\mysterious.dm" #include "code\game\objects\structures\ghost_pods\silicon.dm" #include "code\game\objects\structures\ghost_pods\silicon_vr.dm" @@ -1316,6 +1325,7 @@ #include "code\game\objects\structures\props\projectile_lock.dm" #include "code\game\objects\structures\props\prop.dm" #include "code\game\objects\structures\props\puzzledoor.dm" +#include "code\game\objects\structures\props\swarm.dm" #include "code\game\objects\structures\props\transmitter.dm" #include "code\game\objects\structures\stool_bed_chair_nest\alien_nests.dm" #include "code\game\objects\structures\stool_bed_chair_nest\bed.dm" @@ -1586,6 +1596,7 @@ #include "code\modules\client\preference_setup\global\05_media.dm" #include "code\modules\client\preference_setup\global\setting_datums.dm" #include "code\modules\client\preference_setup\loadout\gear_tweaks.dm" +#include "code\modules\client\preference_setup\loadout\gear_tweaks_vr.dm" #include "code\modules\client\preference_setup\loadout\loadout.dm" #include "code\modules\client\preference_setup\loadout\loadout_accessories.dm" #include "code\modules\client\preference_setup\loadout\loadout_accessories_vr.dm" @@ -1657,6 +1668,7 @@ #include "code\modules\clothing\head\solgov_vr.dm" #include "code\modules\clothing\masks\boxing.dm" #include "code\modules\clothing\masks\breath.dm" +#include "code\modules\clothing\masks\breath_vr.dm" #include "code\modules\clothing\masks\gasmask.dm" #include "code\modules\clothing\masks\gasmask_vr.dm" #include "code\modules\clothing\masks\miscellaneous.dm" @@ -1766,6 +1778,7 @@ #include "code\modules\detectivework\tools\luminol.dm" #include "code\modules\detectivework\tools\rag.dm" #include "code\modules\detectivework\tools\sample_kits.dm" +#include "code\modules\detectivework\tools\scanner.dm" #include "code\modules\detectivework\tools\storage.dm" #include "code\modules\detectivework\tools\swabs.dm" #include "code\modules\detectivework\tools\uvlight.dm" @@ -1807,6 +1820,7 @@ #include "code\modules\events\gravity.dm" #include "code\modules\events\grid_check.dm" #include "code\modules\events\grubinfestation_vr.dm" +#include "code\modules\events\ian_storm_vr.dm" #include "code\modules\events\infestation.dm" #include "code\modules\events\ion_storm.dm" #include "code\modules\events\meteor_strike_vr.dm" @@ -1908,12 +1922,15 @@ #include "code\modules\gamemaster\actions\carp_migration.dm" #include "code\modules\gamemaster\actions\carp_migration_vr.dm" #include "code\modules\gamemaster\actions\comms_blackout.dm" +#include "code\modules\gamemaster\actions\drill_announcement.dm" #include "code\modules\gamemaster\actions\dust.dm" #include "code\modules\gamemaster\actions\electrical_storm.dm" #include "code\modules\gamemaster\actions\electrified_door.dm" #include "code\modules\gamemaster\actions\gravity.dm" #include "code\modules\gamemaster\actions\grid_check.dm" +#include "code\modules\gamemaster\actions\infestation.dm" #include "code\modules\gamemaster\actions\ion_storm.dm" +#include "code\modules\gamemaster\actions\manifest_malfunction.dm" #include "code\modules\gamemaster\actions\meteor_defense.dm" #include "code\modules\gamemaster\actions\money_hacker.dm" #include "code\modules\gamemaster\actions\money_lotto.dm" @@ -1923,13 +1940,19 @@ #include "code\modules\gamemaster\actions\radiation_storm.dm" #include "code\modules\gamemaster\actions\random_antagonist.dm" #include "code\modules\gamemaster\actions\rogue_drones.dm" +#include "code\modules\gamemaster\actions\security_advisement.dm" #include "code\modules\gamemaster\actions\shipping_error.dm" #include "code\modules\gamemaster\actions\solar_storm.dm" #include "code\modules\gamemaster\actions\spacevine.dm" #include "code\modules\gamemaster\actions\spider_infestation.dm" #include "code\modules\gamemaster\actions\spontaneous_appendicitis.dm" +#include "code\modules\gamemaster\actions\station_fundraise.dm" +#include "code\modules\gamemaster\actions\stowaway.dm" +#include "code\modules\gamemaster\actions\supply_conversion.dm" +#include "code\modules\gamemaster\actions\supplyrequest.dm" #include "code\modules\gamemaster\actions\surprise_carp_attack.dm" #include "code\modules\gamemaster\actions\surprise_meteor.dm" +#include "code\modules\gamemaster\actions\swarmboarder.dm" #include "code\modules\gamemaster\actions\viral_infection.dm" #include "code\modules\gamemaster\actions\viral_outbreak.dm" #include "code\modules\gamemaster\actions\wallrot.dm" @@ -2021,6 +2044,7 @@ #include "code\modules\library\lib_items.dm" #include "code\modules\library\lib_machines.dm" #include "code\modules\library\lib_readme.dm" +#include "code\modules\library\hardcode_library\_library.dm" #include "code\modules\lighting\lighting_area.dm" #include "code\modules\lighting\lighting_atom.dm" #include "code\modules\lighting\lighting_corner.dm" @@ -2125,6 +2149,8 @@ #include "code\modules\mob\_modifiers\traits.dm" #include "code\modules\mob\_modifiers\traits_phobias.dm" #include "code\modules\mob\_modifiers\unholy.dm" +#include "code\modules\mob\dead\corpse.dm" +#include "code\modules\mob\dead\corpse_vr.dm" #include "code\modules\mob\dead\death.dm" #include "code\modules\mob\dead\observer\free_vr.dm" #include "code\modules\mob\dead\observer\login.dm" @@ -2235,6 +2261,7 @@ #include "code\modules\mob\living\carbon\human\human_movement.dm" #include "code\modules\mob\living\carbon\human\human_organs.dm" #include "code\modules\mob\living\carbon\human\human_powers.dm" +#include "code\modules\mob\living\carbon\human\human_powers_vr.dm" #include "code\modules\mob\living\carbon\human\human_resist.dm" #include "code\modules\mob\living\carbon\human\human_species.dm" #include "code\modules\mob\living\carbon\human\human_species_vr.dm" @@ -2271,6 +2298,10 @@ #include "code\modules\mob\living\carbon\human\species\outsider\shadow.dm" #include "code\modules\mob\living\carbon\human\species\outsider\skeleton.dm" #include "code\modules\mob\living\carbon\human\species\outsider\vox.dm" +#include "code\modules\mob\living\carbon\human\species\shadekin\_defines.dm" +#include "code\modules\mob\living\carbon\human\species\shadekin\shadekin.dm" +#include "code\modules\mob\living\carbon\human\species\shadekin\shadekin_abilities.dm" +#include "code\modules\mob\living\carbon\human\species\shadekin\shadekin_hud.dm" #include "code\modules\mob\living\carbon\human\species\station\alraune.dm" #include "code\modules\mob\living\carbon\human\species\station\blank_vr.dm" #include "code\modules\mob\living\carbon\human\species\station\golem.dm" @@ -2370,17 +2401,19 @@ #include "code\modules\mob\living\silicon\robot\drone\drone_manufacturer.dm" #include "code\modules\mob\living\silicon\robot\drone\drone_say.dm" #include "code\modules\mob\living\silicon\robot\drone\drone_vr.dm" +#include "code\modules\mob\living\silicon\robot\drone\swarm.dm" +#include "code\modules\mob\living\silicon\robot\drone\swarm_abilities.dm" +#include "code\modules\mob\living\silicon\robot\drone\swarm_items.dm" #include "code\modules\mob\living\silicon\robot\robot_modules\event.dm" #include "code\modules\mob\living\silicon\robot\robot_modules\event_vr.dm" #include "code\modules\mob\living\silicon\robot\robot_modules\station.dm" #include "code\modules\mob\living\silicon\robot\robot_modules\station_vr.dm" +#include "code\modules\mob\living\silicon\robot\robot_modules\swarm.dm" #include "code\modules\mob\living\silicon\robot\robot_modules\syndicate.dm" #include "code\modules\mob\living\silicon\robot\subtypes\gravekeeper.dm" #include "code\modules\mob\living\silicon\robot\subtypes\lost_drone.dm" #include "code\modules\mob\living\silicon\robot\subtypes\lost_drone_vr.dm" #include "code\modules\mob\living\silicon\robot\subtypes\syndicate.dm" -#include "code\modules\mob\living\simple_animal\corpse.dm" -#include "code\modules\mob\living\simple_animal\corpse_vr.dm" #include "code\modules\mob\living\simple_mob\appearance.dm" #include "code\modules\mob\living\simple_mob\combat.dm" #include "code\modules\mob\living\simple_mob\defense.dm" @@ -2555,7 +2588,6 @@ #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\ability_procs.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\shadekin.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\types.dm" -#include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\~defines.dm" #include "code\modules\mob\living\voice\voice.dm" #include "code\modules\mob\new_player\login.dm" #include "code\modules\mob\new_player\login_vr.dm" @@ -2706,6 +2738,8 @@ #include "code\modules\organs\subtypes\nano.dm" #include "code\modules\organs\subtypes\replicant.dm" #include "code\modules\organs\subtypes\seromi.dm" +#include "code\modules\organs\subtypes\shadekin.dm" +#include "code\modules\organs\subtypes\shadekin_vr.dm" #include "code\modules\organs\subtypes\slime.dm" #include "code\modules\organs\subtypes\standard.dm" #include "code\modules\organs\subtypes\standard_vr.dm" @@ -3301,10 +3335,6 @@ #include "interface\interface.dm" #include "interface\skin.dmf" #include "maps\RandomZLevels\blackmarketpackers.dm" -#include "maps\RandomZLevels\carpfarm.dm" -#include "maps\RandomZLevels\listeningpost.dm" -#include "maps\RandomZLevels\snowfield.dm" -#include "maps\RandomZLevels\zoo.dm" #include "maps\southern_cross\southern_cross_jobs_vr.dm" #include "maps\southern_cross\items\encryptionkey_sc.dm" #include "maps\southern_cross\items\encryptionkey_vr.dm"